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
122
123
124
125
|
[
{
"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": "4660 ml"
},
{
"id": "jeans_red",
"copy-from": "jeans_red",
"type": "ARMOR",
"name": { "str_sp": "red jeans" },
"description": "A pair of tight-fitting candy-apple-red jeans with four deep pockets.",
"encumbrance": 7,
"max_encumbrance": 11,
"storage": "4660 ml"
},
{
"id": "pants",
"copy-from": "pants",
"type": "ARMOR",
"name": { "str_sp": "pants" },
"encumbrance": 7,
"max_encumbrance": 11,
"storage": "4660 ml"
},
{
"id": "pants_army",
"copy-from": "pants_army",
"type": "ARMOR",
"name": { "str_sp": "army pants" },
"encumbrance": 3,
"max_encumbrance": 7,
"storage": "7160 ml"
},
{
"id": "pants_cargo",
"copy-from": "pants_cargo",
"type": "ARMOR",
"name": { "str_sp": "cargo pants" },
"encumbrance": 2,
"max_encumbrance": 6,
"storage": "7160 ml",
"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": "pants_ski",
"copy-from": "pants_ski",
"type": "ARMOR",
"name": { "str_sp": "ski pants" },
"encumbrance": 6,
"max_encumbrance": 10,
"storage": "4660 ml"
},
{
"id": "shorts",
"copy-from": "shorts",
"type": "ARMOR",
"name": { "str_sp": "shorts" },
"encumbrance": 2,
"max_encumbrance": 5,
"coverage": 35,
"storage": "4660 ml"
},
{
"id": "shorts_cargo",
"copy-from": "shorts_cargo",
"type": "ARMOR",
"name": { "str_sp": "cargo shorts" },
"encumbrance": 2,
"max_encumbrance": 7,
"coverage": 35,
"storage": "7160 ml"
},
{
"id": "shorts_denim",
"copy-from": "shorts_denim",
"type": "ARMOR",
"name": { "str_sp": "denim shorts" },
"encumbrance": 1,
"max_encumbrance": 3,
"coverage": 35,
"storage": "2160 ml"
},
{
"id": "skirt",
"copy-from": "skirt",
"type": "ARMOR",
"name": { "str": "skirt" },
"max_encumbrance": 0,
"coverage": 40,
"storage": "250 ml"
},
{
"id": "skirt_leather",
"copy-from": "skirt_leather",
"type": "ARMOR",
"name": { "str": "leather skirt" },
"coverage": 25
},
{
"id": "winter_pants_army",
"copy-from": "winter_pants_army",
"type": "ARMOR",
"name": { "str_sp": "army winter pants" },
"encumbrance": 11,
"max_encumbrance": 22,
"storage": "7160 ml",
"extend": { "flags": [ "WATERPROOF" ] },
"//": "Add the missing WATERPROOF flag."
}
]
|