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
|
[
{
"id": "grenade_pouch",
"copy-from": "grenade_pouch",
"type": "ARMOR",
"name": { "str": "grenade cartridge pouch", "str_pl": "grenade cartridge pouches" },
"rigid": true,
"encumbrance": 0,
"max_encumbrance": 2,
"use_action": { "type": "bandolier", "capacity": 4, "ammo": [ "40x46mm", "40x53mm" ], "draw_cost": 20 },
"//": "Rename to grenade cartridge pouch",
"//2": "Reduce the storage capacity back down to 4.",
"//3": "Reduce the encumbrance."
},
{
"id": "grenadebandolier",
"type": "ARMOR",
"name": { "str": "hand grenade pouch", "str_pl": "hand grenade pouches" },
"description": "A pouch for holding up to four full-sized grenades of various types.",
"weight": "600 g",
"volume": "1250 ml",
"price": "30 USD",
"price_postapoc": "1250 cent",
"rigid": false,
"material": [ "cotton" ],
"symbol": "[",
"looks_like": "leather_belt",
"color": "dark_gray",
"covers": [ "torso" ],
"coverage": 15,
"material_thickness": 2,
"encumbrance": 1,
"max_encumbrance": 4,
"use_action": {
"type": "holster",
"holster_prompt": "Stash grenades",
"holster_msg": "You stash your %s.",
"multi": 4,
"min_volume": "0 ml",
"max_volume": "1 L",
"draw_cost": 30,
"flags": [ "GRENADE" ]
},
"valid_mods": [ "resized_large" ],
"flags": [ "WATER_FRIENDLY", "BELTED", "COMPACT" ],
"//": "I don't agree with making this a leg pouch. Revert to torso. And overwrite to prevent it sometimes being sided.",
"//2": "Also reduce the minimum stored item volume to facilitate items with less lazily rounded volumes.",
"//3": "Add encumbrance values to prevent it falling back to the engine default of 0-8."
}
]
|