Refactor mcl_stairs into multiple files
This commit is contained in:
parent
8daac96e58
commit
a7f5413e9d
4 changed files with 500 additions and 497 deletions
53
mods/ITEMS/mcl_stairs/crafting.lua
Normal file
53
mods/ITEMS/mcl_stairs/crafting.lua
Normal file
|
@ -0,0 +1,53 @@
|
|||
minetest.register_craft({
|
||||
output = 'mcl_core:sandstonecarved',
|
||||
recipe = {
|
||||
{'mcl_stairs:slab_sandstone'},
|
||||
{'mcl_stairs:slab_sandstone'}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:redsandstonecarved',
|
||||
recipe = {
|
||||
{'mcl_stairs:slab_redsandstone'},
|
||||
{'mcl_stairs:slab_redsandstone'}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:stonebrickcarved',
|
||||
recipe = {
|
||||
{'mcl_stairs:slab_stonebrick'},
|
||||
{'mcl_stairs:slab_stonebrick'}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_end:purpur_pillar',
|
||||
recipe = {
|
||||
{'mcl_stairs:slab_purpur_block'},
|
||||
{'mcl_stairs:slab_purpur_block'}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_nether:quartz_chiseled 2',
|
||||
recipe = {
|
||||
{'mcl_stairs:slab_quartzblock'},
|
||||
{'mcl_stairs:slab_quartzblock'},
|
||||
}
|
||||
})
|
||||
|
||||
-- Fuel
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:wood_stairs",
|
||||
burntime = 15,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "group:wood_slab",
|
||||
-- Original burn time: 7.5 (PC edition)
|
||||
burntime = 8,
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue