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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
[
{
"type": "item_group",
"id": "bloodrunedrop",
"items": [ [ "bloodrune", 10 ] ]
},
{
"type": "item_group",
"id": "deadhole_lair",
"items": [ [ "bigbloodrune", 10 ] ]
},
{
"id": "bloodammo",
"type": "item_group",
"subtype": "collection",
"entries": [ { "item": "bloodypressure", "count": [ 50, 100 ] } ]
},
{
"type": "item_group",
"id": "vampmeleeweapon",
"items": [ [ "sword_sip", 10 ], [ "sword_dive", 10 ], [ "hammerius", 10 ], [ "punchie_bitie", 10 ], [ "falc_crimsword", 10 ] ]
},
{
"type": "item_group",
"id": "bloodset",
"items": [
[ "blood_suit", 3 ],
[ "blood_hood", 3 ],
[ "blood_gloves", 3 ],
[ "blood_boots", 3 ],
[ "blood_duster", 3 ],
[ "blood_pants", 3 ],
[ "bloodpack", 2 ]
]
},
{
"type": "item_group",
"id": "medical",
"items": [
[ "aspirin", 35 ],
[ "bandages", 35 ],
[ "disinfectant", 25 ],
[ "flu_shot", 15 ],
[ "1st_aid", 15 ],
[ "scalpel", 5 ]
]
},
{
"id": "elderbooks",
"type": "item_group",
"items": [
[ "child_book", 30 ],
[ "holybook_bible1", 30 ],
[ "holybook_bible2", 30 ],
[ "holybook_bible3", 30 ],
[ "holybook_sutras", 30 ],
[ "holybook_talmud", 30 ],
[ "holybook_tanakh", 30 ],
[ "holybook_tripitaka", 30 ],
[ "holybook_upanishads", 30 ],
[ "holybook_vedas", 30 ],
[ "philosophy_book", 30 ],
[ "story_book", 30 ]
]
},
{
"id": "coffin_bones",
"type": "item_group",
"subtype": "collection",
"//": "Corpse disintegrates from aging too much.",
"entries": [
{ "item": "bone_human", "count": [ 2, 6 ], "prob": 60 },
{ "group": "clothing_outdoor_set", "damage": [ 2, 3 ], "prob": 10 },
{ "group": "underwear", "damage": [ 2, 3 ], "prob": 80 }
]
},
{
"id": "elder_blacksmithing",
"type": "item_group",
"subtype": "collection",
"entries": [ { "item": "hammer", "damage": [ 2, 3 ], "prob": 75 }, { "item": "tongs", "damage": [ 2, 3 ], "prob": 40 } ]
},
{
"id": "elder_blacksmithing_spares",
"type": "item_group",
"subtype": "collection",
"entries": [
{ "item": "scrap", "prob": 75 },
{ "item": "coal_lump", "prob": 40 },
{ "item": "sheet_metal_small", "prob": 25 },
{ "item": "steel_chunk", "prob": 10 },
{ "item": "steel_lump", "prob": 5 }
]
}
]
|