write something there
This commit is contained in:
commit
b4b6c08f4f
8546 changed files with 309825 additions and 0 deletions
20
mods/soup/init.lua
Normal file
20
mods/soup/init.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
-- Soup items
|
||||
minetest.register_alias("soup:tomato_soup","farming:tomato_soup")
|
||||
|
||||
minetest.register_alias("soup:mushroom_soup","ethereal:mushroom_soup")
|
||||
|
||||
minetest.register_craftitem("soup:chicken_noodle_soup", {
|
||||
description = "Chicken Noodle Soup",
|
||||
inventory_image = "chicken_noodle_soup.png",
|
||||
on_use = minetest.item_eat(8,"ethereal:bowl"),
|
||||
})
|
||||
|
||||
-- Soup recipes
|
||||
minetest.register_craft({
|
||||
output = "soup:chicken_noodle_soup",
|
||||
recipe = {
|
||||
{"","animalia:poultry_cooked", ""},
|
||||
{"","bottles:bottle_of_water", ""},
|
||||
{"","group:food_bowl", ""}
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue