Move helper recipes into new mod

This commit is contained in:
Wuzzy 2017-02-07 05:11:23 +01:00
parent cb2a65a25a
commit c7ca25e003
7 changed files with 92 additions and 84 deletions

View file

@ -326,40 +326,4 @@ minetest.register_craft({
burntime = 120,
})
-- Temporary helper recipes
-- TODO: Remove them
minetest.register_craft({
output = "mcl_mobitems:string",
recipe = {
{ "mcl_core:reeds"},
{ "mcl_core:reeds"}
},
})
minetest.register_craft({
type = "shapeless",
output = "mcl_mobitems:leather",
recipe = { "mcl_core:paper", "mcl_core:paper" },
})
minetest.register_craft({
output = "mcl_mobitems:feather 3",
recipe = {
{ "mcl_flowers:oxeye_daisy" },
{ "mcl_flowers:oxeye_daisy" },
}
})
minetest.register_craft({
output = "mcl_mobitems:blaze_rod",
recipe = {
{ "", "mcl_fire:flint_and_steel", ""},
{ "mcl_fire:flint_and_steel", "mcl_core:stick", "mcl_fire:flint_and_steel" },
{ "", "mcl_fire:flint_and_steel", ""},
}
})
minetest.register_craft({
output = "mcl_mobitems:shulker_shell",
recipe = {
{ "mcl_end:purpur_block", "mcl_end:purpur_block", "mcl_end:purpur_block", },
{ "mcl_end:purpur_block", "", "mcl_end:purpur_block", },
{ "mcl_end:purpur_block", "", "mcl_end:purpur_block", },
}
})