forked from mtcontrib/witchcraft
La dent s'obtient aléatoirement en ramassant du sable
This commit is contained in:
parent
8bf04f444e
commit
c515b58ca1
24
init.lua
24
init.lua
@ -397,14 +397,26 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
--teeth from sand, maybe fossilised?
|
--teeth from sand, maybe fossilised?
|
||||||
minetest.register_craft({
|
minetest.override_item("default:sand", {
|
||||||
output = 'witchcraft:tooth 1',
|
drop = {
|
||||||
recipe = {
|
max_items = 1,
|
||||||
{'default:desert_sand'},
|
items = {
|
||||||
},
|
{
|
||||||
|
items = {"witchcraft:tooth"},
|
||||||
|
rarity = 30,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items = {"default:sand"},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "default:sand",
|
||||||
|
recipe = {"witchcraft:tooth"},
|
||||||
|
})
|
||||||
|
|
||||||
--splash potions crafting
|
--splash potions crafting
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user