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
|
[
{
"id": "knee_pads",
"copy-from": "knee_pads",
"type": "ARMOR",
"name": { "str": "pair of knee pads", "str_pl": "pairs of knee pads" },
"extend": { "flags": [ "COMPACT", "ONLY_ONE" ] },
"//": "Add the ONLY_ONE flag to prevent stacking this 0 encumbrance item."
},
{
"id": "legguard_hard",
"copy-from": "legguard_hard",
"type": "ARMOR",
"name": { "str": "pair of hard leg guards", "str_pl": "pairs of hard leg guards" },
"coverage": 90,
"encumbrance": 4,
"extend": { "flags": [ "STURDY" ] }
},
{
"id": "lsurvivor_pants",
"copy-from": "lsurvivor_pants",
"type": "ARMOR",
"name": { "str_sp": "light survivor cargo pants" },
"coverage": 100,
"material_thickness": 4,
"storage": "4600 ml",
"encumbrance": 8,
"max_encumbrance": 16
},
{
"id": "pants_survivor",
"copy-from": "pants_survivor",
"type": "ARMOR",
"name": { "str_sp": "survivor cargo pants" },
"material_thickness": 5,
"storage": "7100 ml",
"encumbrance": 10,
"max_encumbrance": 20,
"extend": { "flags": [ "RAINPROOF" ] }
}
]
|