summaryrefslogtreecommitdiff
path: root/json/items/armor/belts.json
blob: b9779104bdeaa1f26349cf01c74582b6b00d10ec (plain)
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
[
  {
    "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."
  }
]