mirror of
https://github.com/rubenwardy/food.git
synced 2024-11-14 14:20:35 +01:00
fixed Soups
This commit is contained in:
parent
ad571992c3
commit
2f6042c189
4
init.lua
4
init.lua
|
@ -454,13 +454,13 @@ local soups = {"tomato","chicken"}
|
||||||
for i=1, #soups do
|
for i=1, #soups do
|
||||||
local flav = soups[i]
|
local flav = soups[i]
|
||||||
minetest.register_craftitem("food:soup_"..flav,{
|
minetest.register_craftitem("food:soup_"..flav,{
|
||||||
description = flav.." Soup",
|
description = S(flav.." Soup"),
|
||||||
inventory_image = "food_soup_"..flav..".png",
|
inventory_image = "food_soup_"..flav..".png",
|
||||||
on_use = food.item_eat(4),
|
on_use = food.item_eat(4),
|
||||||
groups = {food=3}
|
groups = {food=3}
|
||||||
})
|
})
|
||||||
minetest.register_craftitem("food:soup_"..flav.."_raw",{
|
minetest.register_craftitem("food:soup_"..flav.."_raw",{
|
||||||
description = "Uncooked ".. flav.." Soup",
|
description = S("Uncooked ".. flav.." Soup"),
|
||||||
inventory_image = "food_soup_"..flav.."_raw.png",
|
inventory_image = "food_soup_"..flav.."_raw.png",
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -39,3 +39,7 @@ Cake Mix = Backmischung
|
||||||
Chocolate Cake Mix = Backmischung fuer Schokoladenkuchen
|
Chocolate Cake Mix = Backmischung fuer Schokoladenkuchen
|
||||||
Carrot Cake Mix = Backmischung fuer Karottenkuchen
|
Carrot Cake Mix = Backmischung fuer Karottenkuchen
|
||||||
Cheese Cake Mix = Backmischung fuer Kaesekuchen
|
Cheese Cake Mix = Backmischung fuer Kaesekuchen
|
||||||
|
chicken Soup = Huehnersuppe
|
||||||
|
tomato Soup = Tomatensuppe
|
||||||
|
Uncooked tomato Soup = Ungekochte Huehnersuppe
|
||||||
|
Uncooked chicken Soup = Ungekochte Tomatensuppe
|
Loading…
Reference in New Issue
Block a user