-
Notifications
You must be signed in to change notification settings - Fork 0
/
herbalism.json
50 lines (48 loc) · 1017 Bytes
/
herbalism.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
[
{
"type" : "item_group",
"id" : "forage_winter",
"override": true,
"subtype": "distribution",
"entries" : [
{ "item": "withered", "prob": 100, "count-min": 1, "count-max": 2 }
]
},{
"type": "COMESTIBLE",
"copy-from": "seed",
"id": "seed_dry_beans",
"name": "sprouted beans",
"name_plural": "sprouted beans",
"description": "Some beans, hydrated and happily sprouting. You could probably plant these.",
"spoils_in": 60,
"symbol": ".",
"color": "red",
"material": "veggy",
"charges": 2,
"seed_data": {
"plant_name": "bean",
"fruit": "raw_beans",
"byproducts": [ "withered" ],
"grow": 91
}
},{
"type" : "recipe",
"result": "seed_dry_beans",
"category": "CC_FOOD",
"subcategory": "CSC_FOOD_OTHER",
"skill_used": "cooking",
"skills_required": [ "survival", 1 ],
"difficulty": 0,
"time": 5000,
"reversible": false,
"autolearn": true,
"qualities" : [
{"id":"CUT","level":1,"amount":1}
],
"components": [
[
[ "dry_beans", 8 ]
]
]
}
]