-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfood.json
67 lines (67 loc) · 1.67 KB
/
food.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[
{
"id": "raisin",
"type": "COMESTIBLE",
"name": "raisins",
"name_plural": "raisins",
"comestible_type": "FOOD",
"weight": 28,
"color": "purple",
"spoils_in": 1080,
"symbol": "%",
"quench": -1,
"healthy": 1,
"calories": 51,
"description": "Tasty raisins, made from dehydrating grapes.",
"price": 90,
"material": "fruit",
"volume": 1,
"flags": [ "EDIBLE_FROZEN" ],
"charges": 4,
"fun": 2
},
{
"id": "oats_wild",
"type": "COMESTIBLE",
"copy-from": "oats",
"comestible_type": "FOOD",
"name": "wild oat",
"name_plural": "wild oats",
"weight": "54 g",
"quench": -1,
"healthy": 1,
"calories": 164,
"description": "Oats that are picked from the wild. Their grains are smaller in comparision, but are still edible.",
"price": 90,
"volume": "125 ml",
"flags": [ "EDIBLE_FROZEN", "MILLABLE" ]
},
{
"id": "wheat_wild",
"type": "COMESTIBLE",
"copy-from": "wheat",
"comestible_type": "FOOD",
"name": "wild wheat",
"name_plural": "wild wheat",
"weight": "128 g",
"calories": 468,
"healthy": 2,
"description": "Wild wheat, picked from nature. Not nearly as nutritious as domesticated wheat, yet tasty and healthy to boot.",
"price": 90,
"volume": "200 ml",
"flags": [ "EDIBLE_FROZEN", "MILLABLE" ]
},
{
"id": "corn_wild",
"type": "COMESTIBLE",
"copy-from": "corn",
"comestible_type": "FOOD",
"name": "wild corn",
"name_plural": "wild corn",
"weight": "100 g",
"calories": 98,
"description": "A wild cob of corn picked from the fields.",
"price": 90,
"volume": "500 ml"
}
]