mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-13 14:00:32 +01:00
Add craft recipe for bones:bones with 9 bonemeal:bone
Override craft recipe of witchcraft:shelf
This commit is contained in:
parent
c62560b8ff
commit
6b4cc9c12a
|
@ -1,3 +1,5 @@
|
|||
default
|
||||
witchcraft?
|
||||
|
||||
bones?
|
||||
bonemeal?
|
||||
vessels?
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
-- Change craft recipe of Witchcraft:tooth
|
||||
-- Change some craft recipe of Witchcraft
|
||||
if minetest.get_modpath("witchcraft") then
|
||||
|
||||
-- clear crafts with this particular recipe
|
||||
|
@ -24,5 +24,41 @@ if minetest.get_modpath("witchcraft") then
|
|||
{"default:sand", "", "default:sand"},
|
||||
{"", "default:sand", ""},
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
-- Register craft recipe of bones:bones with bonemeal:bone
|
||||
if minetest.get_modpath("bones")
|
||||
and minetest.get_modpath("bonemeal") and bonemeal
|
||||
then
|
||||
minetest.register_craft(
|
||||
{
|
||||
output = "bones:bones",
|
||||
recipe = {
|
||||
{"bonemeal:bone", "bonemeal:bone", "bonemeal:bone"},
|
||||
{"bonemeal:bone", "bonemeal:bone", "bonemeal:bone"},
|
||||
{"bonemeal:bone", "bonemeal:bone", "bonemeal:bone"},
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
-- Override craft recipe of witchcraft:shelf
|
||||
if minetest.get_modpath("vessels") then
|
||||
minetest.clear_craft(
|
||||
{
|
||||
recipe = {
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
{"group:potion", "group:potion", "group:potion"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
output = "witchcraft:shelf",
|
||||
recipe = {
|
||||
{"", "group:potion", ""},
|
||||
{"group:potion", "vessels:shelf", "group:potion"},
|
||||
}
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user