mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-03 16:40:42 +02:00
almost done, mostly documentation left
This commit is contained in:
@ -7,6 +7,12 @@ register_craft_schema({
|
||||
recipe = {"stair", "stair"},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
type = "shapeless",
|
||||
output = "node 3",
|
||||
recipe = {"stair", "stair", "stair", "stair"},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair 8",
|
||||
recipe = {
|
||||
@ -79,7 +85,55 @@ register_craft_schema({
|
||||
recipe = {"panel_8", "micro_8"},
|
||||
})
|
||||
|
||||
register_craft_schema({ -- See mirrored variation of the recipe below.
|
||||
register_craft_schema({
|
||||
output = "stair_alt_1",
|
||||
recipe = {
|
||||
{"panel_1", ""},
|
||||
{"", "panel_1"},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_1",
|
||||
recipe = {
|
||||
{"", "panel_1"},
|
||||
{"panel_1", ""},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_2",
|
||||
recipe = {
|
||||
{"panel_2", ""},
|
||||
{"", "panel_2"},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_2",
|
||||
recipe = {
|
||||
{"", "panel_2"},
|
||||
{"panel_2", ""},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_4",
|
||||
recipe = {
|
||||
{"panel_4", ""},
|
||||
{"", "panel_4"},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_4",
|
||||
recipe = {
|
||||
{"", "panel_4"},
|
||||
{"panel_4", ""},
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({
|
||||
output = "stair_alt_8",
|
||||
recipe = {
|
||||
{"panel_8", ""},
|
||||
@ -87,7 +141,7 @@ register_craft_schema({ -- See mirrored variation of the recipe below.
|
||||
},
|
||||
})
|
||||
|
||||
register_craft_schema({ -- Mirrored variation of the recipe above.
|
||||
register_craft_schema({
|
||||
output = "stair_alt_8",
|
||||
recipe = {
|
||||
{"", "panel_8"},
|
||||
|
Reference in New Issue
Block a user