1 mcl_stairs
.register_stair_and_slab_simple("end_bricks", "mcl_end:end_bricks", "End Stone Brick Stairs", "End Stone Brick Slab", "Double End Stone Brick Slab")
2 mcstair
.add("mcl_stairs:stair_end_bricks")
4 mcl_stairs
.register_stair_and_slab_simple("red_nether_brick", "mcl_nether:red_nether_brick", "Red Nether Brick Stairs", "Red Nether Brick Slab", "Double Red Nether Brick Slab")
5 mcstair
.add("mcl_stairs:stair_red_nether_brick")
7 mcl_stairs
.register_stair_and_slab_simple("prismarine", "mcl_ocean:prismarine", "Prismarine Stairs", "Prismarine Slab", "Double Prismarine Slab")
8 mcstair
.add("mcl_stairs:stair_prismarine")
10 mcl_stairs
.register_stair_and_slab_simple("prismarine_dark", "mcl_ocean:prismarine_dark", "Dark Prismarine Stairs", "Dark Prismarine Slab", "Double Dark Prismarine Slab")
11 mcstair
.add("mcl_stairs:stair_prismarine_dark")
13 mcl_stairs
.register_stair_and_slab_simple("mossycobble", "mcl_core:mossycobble", "Moss Stone Stairs", "Moss Stone Slab", "Double Moss Stone Slab")
14 mcstair
.add("mcl_stairs:stair_mossycobble")
16 mcl_stairs
.register_stair_and_slab_simple("lapisblock", "mcl_core:lapisblock", "Lapis Lazuli Stairs", "Lapis Lazuli Slab", "Double Lapis Lazuli Slab")
17 mcstair
.add("mcl_stairs:stair_lapisblock")
19 mcl_stairs
.register_stair_and_slab_simple("goldblock", "mcl_core:goldblock", "Stairs of Gold", "Slab of Gold", "Double Slab of Gold")
20 mcstair
.add("mcl_stairs:stair_goldblock")
22 mcl_stairs
.register_stair_and_slab_simple("ironblock", "mcl_core:ironblock", "Stairs of Iron", "Slab of Iron", "Double Slab of Iron")
23 mcstair
.add("mcl_stairs:stair_ironblock")
25 mcl_stairs
.register_stair_and_slab_simple("andesite_smooth", "mcl_core:andesite_smooth", "Polished Andesite Stairs", "Polished Andesite Slab", "Double Polished Andesite Slab")
26 mcstair
.add("mcl_stairs:stair_andesite_smooth")
28 mcl_stairs
.register_stair_and_slab_simple("diorite_smooth", "mcl_core:diorite_smooth", "Polished Diorite Stairs", "Polished Diorite Slab", "Double Polished Diorite Slab")
29 mcstair
.add("mcl_stairs:stair_diorite_smooth")
31 mcl_stairs
.register_stair_and_slab_simple("granite_smooth", "mcl_core:granite_smooth", "Polished Granite Stairs", "Polished Granite Slab", "Double Polished Granite Slab")
32 mcstair
.add("mcl_stairs:stair_granite_smooth")
34 mcl_stairs
.register_stair("stonebrickmossy", "mcl_core:stonebrickmossy",
36 {"mcl_core_stonebrick_mossy.png"},
37 "Mossy Stone Brick Stairs",
38 mcl_sounds
.node_sound_stone_defaults(), 1.5, nil, "mcl_core:stonebrickmossy")
39 mcstair
.add("mcl_stairs:stair_stonebrickmossy")
41 mcl_stairs
.register_slab("stonebrickmossy", "mcl_core:stonebrickmossy",
43 {"mcl_core_stonebrick_mossy.png"},
44 "Mossy Stone Brick Slab",
45 mcl_sounds
.node_sound_stone_defaults(), 2, "Double Mossy Stone Brick Slab", "mcl_core:stonebrickmossy")
47 mcl_stairs
.register_stair("stonebrickcracked", "mcl_core:stonebrickcracked",
49 {"mcl_core_stonebrick_cracked.png"},
50 "Cracked Stone Brick Stairs",
51 mcl_sounds
.node_sound_stone_defaults(), 1.5, nil, "mcl_core:stonebrickcracked")
52 mcstair
.add("mcl_stairs:stair_stonebrickcracked")
54 mcl_stairs
.register_slab("stonebrickcracked", "mcl_core:stonebrickcracked",
56 {"mcl_core_stonebrick_cracked.png"},
57 "Cracked Stone Brick Slab",
58 mcl_sounds
.node_sound_stone_defaults(), 2, "Double Cracked Stone Brick Slab", "mcl_core:stonebrickcracked")
61 mcl_stairs
.register_slab("stonebrickcarved", "mcl_core:stonebrickcarved",
63 {"mcl_core_stonebrick_carved.png", "mcl_core_stonebrick_carved.png", "mcl_supplemental_stonebrick_carved_slab.png"},
64 "Chiseled Stone Brick Slab",
65 mcl_sounds
.node_sound_stone_defaults(),
66 minetest
.registered_nodes
["mcl_core:granite_smooth"]._mcl_hardness
,
67 "Double Chiseled Stone Brick Slab")
69 -- TODO: Chiseled stone brick stairs
73 {"white", "White", "white"},
74 {"grey", "Grey", "dark_grey"},
75 {"silver", "Light Grey", "grey"},
76 {"black", "Black", "black"},
77 {"red", "Red", "red"},
78 {"yellow", "Yellow", "yellow"},
79 {"green", "Green", "dark_green"},
80 {"cyan", "Cyan", "cyan"},
81 {"blue", "Blue", "blue"},
82 {"magenta", "Magenta", "magenta"},
83 {"orange", "Orange", "orange"},
84 {"purple", "Purple", "violet"},
85 {"brown", "Brown", "brown"},
86 {"pink", "Pink", "pink"},
87 {"lime", "Lime", "green"},
88 {"light_blue", "Light Blue", "lightblue"},
91 for i
=1, #block
.dyes
do
92 local c
= block
.dyes
[i
][1]
93 mcl_stairs
.register_stair_and_slab_simple("concrete_"..c
, "mcl_colorblocks:concrete_"..c
,
94 block
.dyes
[i
][2].." Concrete Stairs",
95 block
.dyes
[i
][2].." Concrete Slab",
96 "Double "..block
.dyes
[i
][2].." Concrete Slab")
97 mcstair
.add("mcl_stairs:stair_concrete_"..c
)