Food items

This commit is contained in:
JoseDouglas26 2024-06-12 12:51:07 -03:00
parent fbe43fcb8e
commit fe574eac99
4 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,15 @@
local items = {
["cooked_beef"] = {
description = "Steak"
},
["cooked_chicken"] = {},
["cooked_cod"] = {},
["cooked_mutton"] = {},
["cooked_porkchop"] = {},
["cooked_rabbit"] = {},
["cooked_salmon"] = {}
}
for identifier, definitions in pairs(items) do
voxelibre.register_item(identifier, definitions)
end

View File

@ -0,0 +1,11 @@
local items = {
["beetroot_soup"] = {},
["bread"] = {},
["cookie"] = {},
["dried_kelp"] = {},
["honey_bottle"] = {},
["mushroom_stew"] = {},
["rabbit_stew"] = {},
["suspicious_stew"] = {},
["pumpkin_pie"] = {}
}

View File

@ -0,0 +1,30 @@
local items = {
["cod"] = {
description = "Raw Cod"
},
["pufferfish"] = {},
["beef"] = {
description = "Raw Beef"
},
["chicken"] = {
description = "Raw Chicken"
},
["mutton"] = {
description = "Raw Mutton"
},
["porkchop"] = {
description = "Raw Porkchop"
},
["rabbit"] = {
description = "Raw Rabbit"
},
["rotten_flesh"] = {},
["salmon"] = {
description = "Salmon"
},
["tropical_fish"] = {}
}
for identifier, definitions in pairs(items) do
voxelibre.register_item(identifier, definitions)
end

View File

@ -0,0 +1,9 @@
local items = {
["enchanted_golden_apple"] = {},
["golden_apple"] = {},
["golden_carrot"] = {}
}
for identifier, definitions in pairs(items) do
voxelibre.register_item(identifier, definitions)
end