Replace textures and fix bug, add meta details
3 years too late :) Also, we have kept our proprietary bowl formula(tm).
2
description.txt
Normal file
@ -0,0 +1,2 @@
|
||||
A mod that brings somewhat decorative and somewhat useful soups to your world!
|
||||
See forum page or otherwise for recipes.
|
6
init.lua
@ -1,13 +1,15 @@
|
||||
s = {"interesting", "chicken", "pepper", "pork", "spag_os", "epic", "liver",}
|
||||
h = {6, 7, 8, 9, 7, 20, 1}
|
||||
e = {}
|
||||
d = {"Interesting", "Chicken", "Pepper", "Pork", "Spaghezti O", "EPIC", "Nasty Liver"}
|
||||
for i = 1, 7 do
|
||||
e["soupsplus:soup_"..s[i]] = h[i]
|
||||
minetest.register_craftitem("soupsplus:soup_"..s[i], {
|
||||
description = d[i].." Soup",
|
||||
stack_max = 3,
|
||||
inventory_image = "soupsplus_soup_"..s[i]..".png",
|
||||
inventory_image = "soupsplus_soup_"..s[i]..".png",
|
||||
on_use = function(itemstack, user, pointed_thing)
|
||||
minetest.item_eat(h)
|
||||
minetest.item_eat(e[pointed_thing])
|
||||
itemstack:take_item()
|
||||
return itemstack
|
||||
end,
|
||||
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 430 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 916 B |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 929 B |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 935 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 930 B |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 940 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 919 B |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 929 B |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 934 B |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 924 B |
BIN
textures/template.png
Normal file
After Width: | Height: | Size: 916 B |