forked from VoxeLibre/VoxeLibre
Add more helper recipes to make more items accessible
This commit is contained in:
parent
070ef3e003
commit
cb2a65a25a
|
@ -245,3 +245,25 @@ minetest.register_craft({
|
||||||
output = "mcl_dye:white 3",
|
output = "mcl_dye:white 3",
|
||||||
recipe = {{"mcl_mobitems:bone"}},
|
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"},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
|
@ -171,3 +171,13 @@ minetest.register_craft({
|
||||||
recipe = "mcl_end:chorus_fruit",
|
recipe = "mcl_end:chorus_fruit",
|
||||||
cooktime = 10,
|
cooktime = 10,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Temporary helper recipes
|
||||||
|
-- TODO: Remove them
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_end:chorus_fruit",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_flowers:allium", "mcl_flowers:allium" },
|
||||||
|
{ "mcl_flowers:allium", "mcl_flowers:allium" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
|
@ -328,6 +328,13 @@ minetest.register_craft({
|
||||||
|
|
||||||
-- Temporary helper recipes
|
-- Temporary helper recipes
|
||||||
-- TODO: Remove them
|
-- TODO: Remove them
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_mobitems:string",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_core:reeds"},
|
||||||
|
{ "mcl_core:reeds"}
|
||||||
|
},
|
||||||
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "mcl_mobitems:leather",
|
output = "mcl_mobitems:leather",
|
||||||
|
@ -340,5 +347,19 @@ minetest.register_craft({
|
||||||
{ "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", },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue