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
|
[
{
"id": "jeans",
"copy-from": "jeans",
"type": "ARMOR",
"name": { "str_sp": "jeans" },
"description": "A pair of blue jeans with four deep pockets.",
"encumbrance": 7,
"max_encumbrance": 11,
"storage": "4500 ml"
},
{
"id": "pants",
"copy-from": "pants",
"type": "ARMOR",
"name": { "str_sp": "pants" },
"encumbrance": 7,
"max_encumbrance": 11,
"storage": "4500 ml"
},
{
"id": "pants_army",
"copy-from": "pants_army",
"type": "ARMOR",
"name": { "str_sp": "army pants" },
"encumbrance": 3,
"max_encumbrance": 7,
"storage": "7 L"
},
{
"id": "pants_cargo",
"copy-from": "pants_cargo",
"type": "ARMOR",
"name": { "str_sp": "cargo pants" },
"encumbrance": 2,
"max_encumbrance": 6,
"storage": "7 L",
"coverage": 100
},
{
"id": "pants_leather",
"copy-from": "pants_leather",
"type": "ARMOR",
"name": { "str_sp": "leather pants" },
"encumbrance": 15,
"max_encumbrance": 17,
"storage": "1600 ml"
},
{
"id": "winter_pants_army",
"copy-from": "winter_pants_army",
"type": "ARMOR",
"name": { "str_sp": "army winter pants" },
"encumbrance": 11,
"max_encumbrance": 22,
"storage": "7 L"
}
]
|