write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
56
mods/biomes/dorwinion/stairs.lua
Normal file
56
mods/biomes/dorwinion/stairs.lua
Normal file
|
@ -0,0 +1,56 @@
|
|||
if minetest.get_modpath("stairs") then
|
||||
stairs.register_stair_and_slab(
|
||||
"dorwinion",
|
||||
"dorwinion:dorwinion",
|
||||
{cracky = 3},
|
||||
{"dorwinion.png"},
|
||||
"Dorwinion Stair",
|
||||
"Dorwinion Slab",
|
||||
default.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
||||
stairs.register_stair_and_slab(
|
||||
"dorwinion_brick",
|
||||
"dorwinion:dorwinion_brick",
|
||||
{cracky = 3},
|
||||
{"dorwinion_brick.png"},
|
||||
"Dorwinion Brick Stair",
|
||||
"Dorwinion Brick Slab",
|
||||
default.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
||||
stairs.register_stair_and_slab(
|
||||
"dorwinion_brick_with_flowers",
|
||||
"dorwinion:dorwinion_brick_with_flowers",
|
||||
{cracky = 3},
|
||||
{"dorwinion_brick_with_flowers.png"},
|
||||
"Dorwinion Brick With Flowers Stair",
|
||||
"Dorwinion Brick With Flowers Slab",
|
||||
default.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
||||
stairs.register_stair_and_slab(
|
||||
"dorwinion_brick_with_moss",
|
||||
"dorwinion:dorwinion_brick_with_moss",
|
||||
{cracky = 3},
|
||||
{"dorwinion_brick_with_moss.png"},
|
||||
"Dorwinion Brick With Moss Stair",
|
||||
"Dorwinion Brick With Moss Slab",
|
||||
default.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
||||
stairs.register_stair_and_slab(
|
||||
"dorwinion_carved",
|
||||
"dorwinion:dorwinion_carved",
|
||||
{cracky = 3},
|
||||
{"dorwinion_carved.png"},
|
||||
"Dorwinion Carved Stair",
|
||||
"Dorwinion Carved Slab",
|
||||
default.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue