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
|
[
{
"id": "ammo_pouch",
"copy-from": "ammo_pouch",
"type": "ARMOR",
"name": { "str": "ammo satchel" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 5
},
{
"id": "legpouch_large",
"copy-from": "legpouch_large",
"type": "ARMOR",
"name": { "str": "leg magazine pouch", "str_pl": "leg magazine pouch" },
"extend": { "flags": [ "COMPACT" ] }
},
{
"id": "ammo_satchel",
"copy-from": "ammo_satchel",
"type": "ARMOR",
"name": { "str": "magazine satchel" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 2
},
{
"id": "tacvest",
"copy-from": "tacvest",
"type": "ARMOR",
"name": { "str": "tac vest" },
"encumbrance": 2,
"max_encumbrance": 5,
"use_action": {
"type": "holster",
"holster_prompt": "Stash ammo",
"holster_msg": "You stash your %s.",
"multi": 5,
"min_volume": "250 ml",
"max_volume": "1 L",
"draw_cost": 60,
"flags": [ "MAG_COMPACT", "MAG_BULKY" ]
},
"//": "Increase the magazine capacity to five."
}
]
|