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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
[
{
"id": "mbag",
"copy-from": "mbag",
"type": "ARMOR",
"name": { "str": "messenger bag" },
"encumbrance": 4,
"max_encumbrance": 8,
"storage": "15 L",
"flags": [ "BELTED", "WATER_FRIENDLY" ]
},
{
"id": "backpack",
"copy-from": "backpack",
"type": "ARMOR",
"name": { "str": "backpack" },
"encumbrance": 4,
"max_encumbrance": 19,
"storage": "35500 ml"
},
{
"id": "backpack_leather",
"copy-from": "backpack_leather",
"type": "ARMOR",
"name": { "str": "leather backpack" },
"encumbrance": 2,
"max_encumbrance": 25,
"storage": "35500 ml"
},
{
"id": "duffelbag",
"copy-from": "duffelbag",
"type": "ARMOR",
"name": { "str": "duffel bag" },
"encumbrance": 5,
"max_encumbrance": 15,
"storage": "39 L"
},
{
"id": "molle_pack",
"copy-from": "molle_pack",
"type": "ARMOR",
"name": { "str": "MOLLE pack" },
"weight": "1450 g",
"volume": "6 L",
"encumbrance": 5,
"max_encumbrance": 11,
"storage": "38 L"
},
{
"id": "backpack_tactical_large",
"copy-from": "backpack_tactical_large",
"type": "ARMOR",
"name": { "str": "large tactical backpack" },
"encumbrance": 10,
"max_encumbrance": 55,
"storage": "81 L"
},
{
"id": "legrig",
"copy-from": "legrig",
"type": "ARMOR",
"name": { "str": "pair of drop leg pouches", "str_pl": "pairs of drop leg pouches" },
"storage": "5 L",
"encumbrance": 2,
"max_encumbrance": 3,
"flags": [ "WATER_FRIENDLY", "BELTED" ],
"//": "Changed to strapped layer since knee pads no longer hard conflict."
},
{
"id": "daypack",
"copy-from": "daypack",
"type": "ARMOR",
"name": { "str": "daypack" },
"storage": "39 L",
"encumbrance": 2,
"max_encumbrance": 18
},
{
"id": "runner_bag",
"copy-from": "runner_bag",
"type": "ARMOR",
"name": { "str": "runner pack" },
"weight": "360 g",
"storage": "7 L",
"encumbrance": 1,
"max_encumbrance": 2
},
{
"id": "armrig",
"type": "ARMOR",
"name": { "str": "armband pouch", "str_pl": "armband pouches" },
"description": "A small pouch that can be worn on the upper arm using buckled straps. This is a favoured item among sports & camping enthusiasts.",
"weight": "205 g",
"volume": "550 ml",
"price": "30 USD",
"price_postapoc": "250 cent",
"material": [ "cotton", "plastic" ],
"symbol": "[",
"looks_like": "armguard_soft",
"color": "dark_gray",
"storage": "500 ml",
"covers": [ "arm_either" ],
"coverage": 15,
"encumbrance": 0,
"max_encumbrance": 1,
"material_thickness": 1,
"flags": [ "VARSIZE", "WATER_FRIENDLY", "BELTED" ],
"//": "Psuedo-ported from dda."
},
{
"id": "vest",
"copy-from": "vest",
"type": "ARMOR",
"name": { "str": "utility vest" },
"encumbrance": 2,
"max_encumbrance": 5,
"extend": { "flags": [ "BELTED" ] },
"//": "Changed to strapped layer because this is not a shirt."
}
]
|