forked from VoxeLibre/VoxeLibre
Move helper recipes into new mod
This commit is contained in:
parent
cb2a65a25a
commit
c7ca25e003
|
@ -608,16 +608,6 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- TODO: Remove recipe when mobs are working
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "shapeless",
|
|
||||||
output = "mcl_core:gunpowder",
|
|
||||||
recipe = {
|
|
||||||
'mcl_core:sand',
|
|
||||||
'mcl_core:gravel',
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'mcl_core:lapisblock',
|
output = 'mcl_core:lapisblock',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
|
@ -246,24 +246,4 @@ minetest.register_craft({
|
||||||
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"},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
|
@ -172,12 +172,3 @@ minetest.register_craft({
|
||||||
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" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
|
@ -326,40 +326,4 @@ minetest.register_craft({
|
||||||
burntime = 120,
|
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", },
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
mcl_core
|
||||||
|
mcl_mobitems
|
||||||
|
mcl_dye
|
||||||
|
mcl_end
|
||||||
|
mesecons_materials
|
|
@ -0,0 +1,85 @@
|
||||||
|
-- Temporary helper recipes.
|
||||||
|
-- These recipes are NOT part of Minecraft. They are added to make some currently unobtainable items accessible.
|
||||||
|
-- TODO: Remove recipes when they become accessible by regular means
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "mcl_core:gunpowder",
|
||||||
|
recipe = {
|
||||||
|
'mcl_core:sand',
|
||||||
|
'mcl_core:gravel',
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
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"},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_end:chorus_fruit",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" },
|
||||||
|
{ "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" },
|
||||||
|
{ "mcl_flowers:allium", "mcl_flowers:allium", "mcl_flowers:allium" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
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", },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'mesecons_materials:slimeball',
|
||||||
|
type = "cooking",
|
||||||
|
recipe = "mcl_core:sapling",
|
||||||
|
cooktime = 10,
|
||||||
|
})
|
||||||
|
|
|
@ -5,13 +5,6 @@ minetest.register_craftitem("mesecons_materials:slimeball", {
|
||||||
groups = { craftitem = 1 },
|
groups = { craftitem = 1 },
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'mesecons_materials:slimeball',
|
|
||||||
type = "cooking",
|
|
||||||
recipe = "mcl_core:sapling",
|
|
||||||
cooktime = 10,
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'mesecons_materials:slimeball 9',
|
output = 'mesecons_materials:slimeball 9',
|
||||||
recipe = {{"mcl_core:slimeblock"}},
|
recipe = {{"mcl_core:slimeblock"}},
|
||||||
|
|
Loading…
Reference in New Issue