aboutsummaryrefslogtreecommitdiff
path: root/weapon_categories.json
blob: 4bfef373d9114e5585ca4dea0b26569b94491156 (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
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
[
  {
    "type": "weapon_category",
    "id": "KITCHEN_IMPLEMENTS",
    "name": "Kitchen Utensils",
    "//": "Tools used to eat or cook food."
  },
  {
    "type": "weapon_category",
    "id": "CLEANING_IMPLEMENTS",
    "name": "Cleaning Implements",
    "//": "Tools used for cleaning, such as brooms and mops."
  },
  {
    "type": "weapon_category",
    "id": "UMBRELLAS",
    "name": "Umbrellas",
    "//": "Just umbrellas."
  },
  {
    "type": "weapon_category",
    "id": "CLAWS",
    "name": "Claws",
    "//": "Melee weapons that act as claws."
  },
  {
    "type": "weapon_category",
    "id": "JAPANESE_GLAIVES",
    "name": "Japanese Glaives",
    "//": "More or less just naginatas."
  },
  {
    "id": "base_utensil",
    "copy-from": "base_utensil",
    "type": "GENERIC",
    "name": { "str": "generic utensil" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "base_silverware",
    "copy-from": "base_silverware",
    "type": "GENERIC",
    "name": { "str": "generic silverware" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "base_kitchen_knife",
    "copy-from": "base_kitchen_knife",
    "type": "TOOL",
    "category": "tools",
    "name": { "str": "generic kitchen knife", "str_pl": "generic kitchen knives" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "pan",
    "copy-from": "pan",
    "type": "GENERIC",
    "name": { "str": "cast-iron frying pan" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "steel_pan",
    "copy-from": "steel_pan",
    "type": "GENERIC",
    "name": { "str": "steel frying pan" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "copper_pan",
    "copy-from": "copper_pan",
    "type": "GENERIC",
    "name": { "str": "copper frying pan" },
    "extend": { "weapon_category": [ "KITCHEN_IMPLEMENTS" ] }
  },
  {
    "id": "broom",
    "copy-from": "broom",
    "type": "GENERIC",
    "name": { "str": "broom" },
    "extend": { "weapon_category": [ "CLEANING_IMPLEMENTS" ] }
  },
  {
    "id": "mop",
    "copy-from": "mop",
    "type": "GENERIC",
    "name": { "str": "mop" },
    "extend": { "weapon_category": [ "CLEANING_IMPLEMENTS" ] }
  },
  {
    "id": "umbrella",
    "copy-from": "umbrella",
    "type": "GENERIC",
    "name": { "str": "umbrella" },
    "extend": { "weapon_category": [ "UMBRELLAS" ] }
  },
  {
    "id": "bagh_nakha",
    "copy-from": "bagh_nakha",
    "type": "GENERIC",
    "category": "weapons",
    "name": { "str_sp": "tiger claws" },
    "extend": { "weapon_category": [ "CLAWS" ] }
  },
  {
    "id": "knuckle_katar",
    "copy-from": "knuckle_katar",
    "type": "GENERIC",
    "category": "weapons",
    "name": { "str": "razorbar katar" },
    "extend": { "weapon_category": [ "CLAWS" ] }
  },
  {
    "id": "naginata",
    "copy-from": "naginata",
    "type": "GENERIC",
    "category": "weapons",
    "name": { "str_sp": "naginata" },
    "extend": { "weapon_category": [ "JAPANESE_GLAIVES" ] }
  }
]