added food table to items database

This commit is contained in:
0ceanSlim 2023-09-08 17:14:19 -04:00
parent bfcff32a2c
commit 886b48242d
4 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,6 @@
id,type,name,rarity,weight,height,width,stack,value,energy,hydration
NULL,food,MRE,2,1.64555,2,1,1,50000,50,-10
NULL,drink,Water Bottle,1,1.43301,2,1,1,10000,50,0
NULL,food,Mint,1,0.06614,1,1,5,5000,5,-1
NULL,food,Candy Bar,1,0.066139,1,1,2,10000,15,-5
NULL,food,Lunch Box,2,1.64555,1,2,1,50000,60,-10
1 id type name rarity weight height width stack value energy hydration
2 NULL food MRE 2 1.64555 2 1 1 50000 50 -10
3 NULL drink Water Bottle 1 1.43301 2 1 1 10000 50 0
4 NULL food Mint 1 0.06614 1 1 5 5000 5 -1
5 NULL food Candy Bar 1 0.066139 1 1 2 10000 15 -5
6 NULL food Lunch Box 2 1.64555 1 2 1 50000 60 -10

Binary file not shown.

View File

@ -1,4 +1,5 @@
# starting_ids.py # starting_ids.py
# items database
starting_ids = { starting_ids = {
"reload": 20000, "reload": 20000,
@ -7,4 +8,5 @@ starting_ids = {
"gear": 30000, "gear": 30000,
"part": 40000, "part": 40000,
"med": 50000, "med": 50000,
"food": 8000,
} }