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
126
127
|
[
{
"id": "ammo_pouch",
"copy-from": "ammo_pouch",
"type": "ARMOR",
"name": { "str": "ammo satchel" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 5
},
{
"id": "ammo_satchel",
"copy-from": "ammo_satchel",
"type": "ARMOR",
"name": { "str": "magazine satchel" },
"description": "A fabric ammo pouch that can be strapped to your chest which is capable of holding a one large magazine or speedloader close at hand.",
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 4,
"//": "Add explicit encumbrance.",
"//2": "Fix the description to note it now supports a large magazine."
},
{
"id": "chestpouch",
"copy-from": "chestpouch",
"type": "ARMOR",
"name": { "str": "chest magazine pouch" },
"description": "A fabric ammo pouch that can be strapped to your chest which is capable of holding a two magazines or speedloaders close at hand.",
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 4,
"//": "Add explicit encumbrance.",
"//2": "Fix the description to note it now supports two magazines."
},
{
"id": "chestrig",
"copy-from": "chestrig",
"type": "ARMOR",
"name": { "str": "chest rig" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 8,
"//": "Add explicit encumbrance.",
"//2": "Fix the incorrect vanilla use of str_sp."
},
{
"id": "legpouch",
"copy-from": "legpouch",
"type": "ARMOR",
"name": { "str": "ankle magazine pouch", "str_pl": "ankle magazine pouches" },
"extend": { "flags": [ "COMPACT" ] }
},
{
"id": "legpouch_large",
"copy-from": "legpouch_large",
"type": "ARMOR",
"name": { "str": "leg magazine pouch", "str_pl": "leg magazine pouches" },
"extend": { "flags": [ "COMPACT" ] }
},
{
"id": "modularvest",
"copy-from": "modularvest",
"type": "ARMOR",
"name": { "str": "MBR vest (empty)", "str_pl": "MBR vests (empty)" },
"encumbrance": 8
},
{
"id": "modularvestceramic",
"copy-from": "modularvestceramic",
"type": "ARMOR",
"name": { "str": "MBR vest (ceramic plates)", "str_pl": "MBR vests (ceramic plates)" },
"weight": "4308 g",
"encumbrance": 10
},
{
"id": "modularvesthard",
"type": "ARMOR",
"copy-from": "modularvesthard",
"name": { "str": "MBR vest (hard plates)", "str_pl": "MBR vests (hard plates)" },
"weight": "14860 g",
"encumbrance": 20
},
{
"id": "modularveststeel",
"copy-from": "modularveststeel",
"type": "ARMOR",
"name": { "str": "MBR vest (steel plating)", "str_pl": "MBR vests (steel plating)" },
"weight": "10860 g",
"price": "399 USD",
"encumbrance": 20
},
{
"id": "modularvestsuper",
"copy-from": "modularvestsuper",
"type": "ARMOR",
"name": { "str": "MBR vest (superalloy)", "str_pl": "MBR vests (superalloy)" },
"encumbrance": 15
},
{
"id": "tacvest",
"copy-from": "tacvest",
"type": "ARMOR",
"name": { "str": "tac vest" },
"encumbrance": 2,
"max_encumbrance": 10,
"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."
},
{
"id": "ammo_satchel_leg",
"copy-from": "ammo_satchel_leg",
"type": "ARMOR",
"name": { "str": "leg ammo satchel" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 3
}
]
|