move sashimi to sealife.lua for "fishing only"

master
Xanthin 2014-09-15 12:33:25 +02:00
parent 4793d5b52b
commit 744e70f64f
1 changed files with 14 additions and 0 deletions

View File

@ -141,3 +141,17 @@ minetest.register_abm({
end
end,
})
-- Sashimi (Thanks to Natalia Grosner for letting me use the sashimi image)
minetest.register_craftitem("fishing:sashimi", {
description = "Sashimi",
inventory_image = "sashimi.png",
on_use = minetest.item_eat(4),
})
minetest.register_craft({
output = "fishing:sashimi 2",
recipe = {
{'fishing:seaweed','fishing:fish_raw','fishing:seaweed'},
}
})