Add more helper recipes to make more items accessible

This commit is contained in:
Wuzzy 2017-02-07 05:02:35 +01:00
parent 070ef3e003
commit cb2a65a25a
3 changed files with 55 additions and 2 deletions

View file

@ -245,3 +245,25 @@ minetest.register_craft({
output = "mcl_dye:white 3",
recipe = {{"mcl_mobitems:bone"}},
})
-- Temporary helper recipes
-- TODO: Remove them
minetest.register_craft({
output = "mcl_dye:black 2",
recipe = {{"mcl_core:coal_lump"}},
})
minetest.register_craft({
output = "mcl_dye:brown",
recipe = {
{"mcl_core:jungletree"},
{"mcl_core:jungletree"}
},
})
minetest.register_craft({
output = "mcl_dye:white",
recipe = {
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
{"mcl_core:dirt", "mcl_core:dirt", "mcl_core:dirt"},
},
})