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
|
[
{
"id": "fireman_belt",
"copy-from": "fireman_belt",
"type": "ARMOR",
"name": { "str": "firefighter belt" },
"rigid": false,
"encumbrance": 2,
"max_encumbrance": 5
},
{
"id": "leather_belt",
"copy-from": "leather_belt",
"type": "ARMOR",
"name": { "str": "leather belt" },
"description": "A leather belt. Designed to look good and hold up a pair of pants, but you should be able to attach a small tool or weapon to one of the belt loops.",
"rigid": false,
"encumbrance": 0,
"max_encumbrance": 1
},
{
"id": "tool_belt",
"copy-from": "tool_belt",
"type": "ARMOR",
"name": { "str": "tool belt" },
"rigid": false,
"storage": "0 L",
"encumbrance": 2,
"max_encumbrance": 12,
"use_action": {
"type": "holster",
"holster_prompt": "Store tool or blade",
"holster_msg": "You put your %1$s in your %2$s",
"multi": 5,
"min_volume": "40 ml",
"max_volume": "1500 ml",
"max_weight": "1500 g",
"flags": [ "BELT_CLIP", "SHEATH_KNIFE" ]
},
"//": "Reduce to 5 item slots."
},
{
"id": "police_belt",
"copy-from": "police_belt",
"type": "ARMOR",
"name": { "str": "police duty belt" },
"rigid": false,
"storage": "2 L",
"encumbrance": 0,
"max_encumbrance": 4
},
{
"id": "webbing_belt",
"copy-from": "webbing_belt",
"type": "ARMOR",
"name": { "str": "webbing belt" },
"rigid": false,
"encumbrance": 1,
"max_encumbrance": 4,
"use_action": {
"type": "holster",
"holster_prompt": "Stick what into your belt",
"holster_msg": "You tuck your %s into your %s",
"max_volume": "1500 ml",
"max_weight": "1000 g",
"flags": [ "BELT_CLIP" ]
},
"//": "Set a fixed encumbrance of 1.",
"//2": "Increase stored item max volume to 1500 ml, but reduce its weight to 1 kg."
},
{
"id": "survivor_belt_notools",
"copy-from": "survivor_belt_notools",
"type": "ARMOR",
"category": "armor",
"name": { "str": "survivor belt" },
"weight": "838 g",
"coverage": 5,
"encumbrance": 0,
"max_encumbrance": 4,
"use_action": {
"type": "holster",
"holster_prompt": "Sheath blade",
"holster_msg": "You sheath your %s",
"min_volume": "250 ml",
"max_volume": "750 ml",
"flags": [ "SHEATH_KNIFE" ]
},
"//": "Reduce the max_volume on the sheath and remove the sword option. This is just a regular sheath integrated onto a belt.",
"//2": "Use variable encumbrance.",
"//3": "Reduce the coverage.",
"//4": "Reduce the weight to that of a police belt, tactical dump pouch, sheath, and another 100g for the extra fabric to keep it together.",
"//5": "This is essentially a tactical dump pouch with integrated sheath. Albeit slighty slower to draw the sheath."
}
]
|