osrs-tools 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/dist/index.js +12 -0
  3. package/dist/jest.config.dev.js +7 -0
  4. package/dist/model/Requirement.d.ts +65 -0
  5. package/dist/model/Requirement.js +130 -0
  6. package/dist/model/account/OsrsAccount.d.ts +31 -0
  7. package/dist/model/account/OsrsAccount.js +64 -0
  8. package/dist/model/quest/Quest.d.ts +41 -0
  9. package/dist/model/quest/Quest.js +2 -0
  10. package/dist/model/quest/QuestTool.d.ts +51 -0
  11. package/{src/model/quest/QuestTool.ts → dist/model/quest/QuestTool.js} +78 -96
  12. package/dist/model/slayer/Assignment.d.ts +17 -0
  13. package/dist/model/slayer/Assignment.js +28 -0
  14. package/dist/model/slayer/SlayerMaster.d.ts +67 -0
  15. package/dist/model/slayer/SlayerMaster.js +112 -0
  16. package/dist/model/slayer/SlayerReward.d.ts +33 -0
  17. package/dist/model/slayer/SlayerReward.js +30 -0
  18. package/dist/model/slayer/Task.d.ts +85 -0
  19. package/dist/model/slayer/Task.js +117 -0
  20. package/dist/resources/slayer/Masters.d.ts +10 -0
  21. package/dist/resources/slayer/Masters.js +100 -0
  22. package/dist/resources/slayer/SlayerData.d.ts +13 -0
  23. package/dist/resources/slayer/SlayerData.js +42 -0
  24. package/dist/resources/slayer/SlayerExtends.d.ts +23 -0
  25. package/dist/resources/slayer/SlayerExtends.js +184 -0
  26. package/dist/resources/slayer/SlayerUnlock.d.ts +7 -0
  27. package/dist/resources/slayer/SlayerUnlock.js +67 -0
  28. package/dist/resources/slayer/slayerBuys.d.ts +3 -0
  29. package/dist/resources/slayer/slayerBuys.js +34 -0
  30. package/dist/resources/slayer/tasks/ChaelderTasks.d.ts +3 -0
  31. package/dist/resources/slayer/tasks/ChaelderTasks.js +78 -0
  32. package/dist/resources/slayer/tasks/DuradelTasks.d.ts +2 -0
  33. package/dist/resources/slayer/tasks/DuradelTasks.js +18 -0
  34. package/{src/resources/slayer/tasks/KonarTasks.ts → dist/resources/slayer/tasks/KonarTasks.d.ts} +3 -6
  35. package/dist/resources/slayer/tasks/KonarTasks.js +5 -0
  36. package/dist/resources/slayer/tasks/MazchnaTasks.d.ts +3 -0
  37. package/dist/resources/slayer/tasks/MazchnaTasks.js +4 -0
  38. package/dist/resources/slayer/tasks/NieveTasks.d.ts +3 -0
  39. package/dist/resources/slayer/tasks/NieveTasks.js +78 -0
  40. package/dist/resources/slayer/tasks/ReadTasks.d.ts +1 -0
  41. package/dist/resources/slayer/tasks/ReadTasks.js +63 -0
  42. package/dist/resources/slayer/tasks/SpriaTasks.d.ts +2 -0
  43. package/dist/resources/slayer/tasks/SpriaTasks.js +117 -0
  44. package/dist/resources/slayer/tasks/Tureal.d.ts +3 -0
  45. package/dist/resources/slayer/tasks/Tureal.js +125 -0
  46. package/dist/resources/slayer/tasks/VannakaTasks.d.ts +3 -0
  47. package/dist/resources/slayer/tasks/VannakaTasks.js +78 -0
  48. package/package.json +22 -25
  49. package/src/index.ts +0 -11
  50. package/src/model/Requirement.ts +0 -173
  51. package/src/model/account/OsrsAccount.ts +0 -82
  52. package/src/model/quest/Quest.ts +0 -44
  53. package/src/model/slayer/Assignment.ts +0 -40
  54. package/src/model/slayer/SlayerMaster.ts +0 -137
  55. package/src/model/slayer/SlayerReward.ts +0 -39
  56. package/src/model/slayer/Task.ts +0 -168
  57. package/src/resources/QuestData.json +0 -754
  58. package/src/resources/quest/diaries.json +0 -1171
  59. package/src/resources/quest/diariesArray.json +0 -0
  60. package/src/resources/quest/exp.json +0 -1333
  61. package/src/resources/quest/questData.js +0 -5628
  62. package/src/resources/quest/questData.json +0 -5790
  63. package/src/resources/quest/questDataArray.js +0 -5489
  64. package/src/resources/quest/questDataArray.json +0 -5489
  65. package/src/resources/quest/subquestArray.js +0 -58
  66. package/src/resources/quest/subquestArray.json +0 -58
  67. package/src/resources/quest/testObj.json +0 -5682
  68. package/src/resources/quest/testarray.json +0 -5589
  69. package/src/resources/quests/CooksAssistant.json +0 -34
  70. package/src/resources/slayer/Masters.ts +0 -180
  71. package/src/resources/slayer/SlayerData.ts +0 -45
  72. package/src/resources/slayer/SlayerExtends.ts +0 -218
  73. package/src/resources/slayer/SlayerUnlock.ts +0 -194
  74. package/src/resources/slayer/slayer.json +0 -3581
  75. package/src/resources/slayer/slayerBuys.ts +0 -38
  76. package/src/resources/slayer/slayerData.json +0 -4431
  77. package/src/resources/slayer/tasks/ChaelderTasks.ts +0 -235
  78. package/src/resources/slayer/tasks/DuradelTasks.ts +0 -75
  79. package/src/resources/slayer/tasks/MazchnaTasks.ts +0 -5
  80. package/src/resources/slayer/tasks/NieveTasks.ts +0 -235
  81. package/src/resources/slayer/tasks/ReadTasks.ts +0 -55
  82. package/src/resources/slayer/tasks/SpriaTasks.ts +0 -344
  83. package/src/resources/slayer/tasks/Tureal.ts +0 -436
  84. package/src/resources/slayer/tasks/VannakaTasks.ts +0 -236
  85. package/src/resources/slayer/tasks/json/Chaeldar.json +0 -348
  86. package/src/resources/slayer/tasks/json/Duradel.json +0 -541
  87. package/src/resources/slayer/tasks/json/Krystilia.json +0 -2
  88. package/src/resources/slayer/tasks/json/Mazchna.json +0 -379
  89. package/src/resources/slayer/tasks/json/Neive.json +0 -320
  90. package/src/resources/slayer/tasks/json/Spria.json +0 -345
  91. package/src/resources/slayer/tasks/json/Tureal.json +0 -341
  92. package/src/resources/slayer/tasks/json/Vannaka.json +0 -547
@@ -1,345 +0,0 @@
1
- [
2
- {
3
- "name": "Banshees",
4
- "amountMin": 15,
5
- "amountMax": 30,
6
- "unlockRequirements": {
7
- "slayer": 15,
8
- "combat": 20,
9
- "quests": ["Priest in Peril"]
10
- },
11
- "alternatives": ["Twisted Banshee"],
12
- "weight": 8
13
- },
14
- {
15
- "name": "Bats",
16
- "amountMin": 15,
17
- "amountMax": 30,
18
- "unlockRequirements": {
19
- "combat": 5
20
- },
21
- "alternatives": ["Giant bat", "Deathwing"],
22
- "weight": 7
23
- },
24
- {
25
- "name": "Bears",
26
- "amountMin": 10,
27
- "amountMax": 20,
28
- "unlockRequirements": {
29
- "combat": 13
30
- },
31
- "alternatives": [
32
- "Grizzly bear cub",
33
- "Bear cub",
34
- "Grizzly bear",
35
- "Reanimated bear",
36
- "Callisto",
37
- "Artio"
38
- ],
39
- "weight": 7
40
- },
41
- {
42
- "name": "Birds",
43
- "amountMin": 15,
44
- "amountMax": 30,
45
- "unlockRequirements": {
46
- "combat": 0
47
- },
48
- "alternatives": [
49
- "Chicken",
50
- "Mounted terrorbird",
51
- "Terrorbird",
52
- "Rooster",
53
- "Chompy bird",
54
- "Seagull",
55
- "Penguin",
56
- "Duck",
57
- "Duckling"
58
- ],
59
- "weight": 6
60
- },
61
- {
62
- "name": "Cave bugs",
63
- "amountMin": 10,
64
- "amountMax": 30,
65
- "unlockRequirements": {
66
- "slayer": 7
67
- },
68
- "alternatives": [],
69
- "weight": 8
70
- },
71
- {
72
- "name": "Cave crawlers",
73
- "amountMin": 15,
74
- "amountMax": 30,
75
- "unlockRequirements": {
76
- "slayer": 10,
77
- "combat": 10
78
- },
79
- "alternatives": [],
80
- "weight": 8
81
- },
82
- {
83
- "name": "Cave slime",
84
- "amountMin": 10,
85
- "amountMax": 20,
86
- "unlockRequirements": {
87
- "slayer": 17,
88
- "combat": 15
89
- },
90
- "alternatives": [],
91
- "weight": 8
92
- },
93
- {
94
- "name": "Cows",
95
- "amountMin": 15,
96
- "amountMax": 30,
97
- "unlockRequirements": {
98
- "combat": 5
99
- },
100
- "alternatives": ["Buffalo", "Cow calf", "Undead cow"],
101
- "weight": 8
102
- },
103
- {
104
- "name": "Crawling Hands",
105
- "amountMin": 15,
106
- "amountMax": 30,
107
- "unlockRequirements": {
108
- "slayer": 5,
109
- "quests": ["Priest in Peril"]
110
- },
111
- "alternatives": [],
112
- "weight": 8
113
- },
114
- {
115
- "name": "Dogs",
116
- "amountMin": 15,
117
- "amountMax": 30,
118
- "unlockRequirements": {
119
- "combat": 15
120
- },
121
- "alternatives": ["Jackal", "Guard dog", "Wild dog", "Reanimated dog"],
122
- "weight": 7
123
- },
124
- {
125
- "name": "Dwarves",
126
- "amountMin": 10,
127
- "amountMax": 25,
128
- "unlockRequirements": {
129
- "combat": 6
130
- },
131
- "alternatives": ["Black Guard", "Chaos Dwarf", "Dwarf gang member"],
132
- "weight": 7
133
- },
134
- {
135
- "name": "Ghosts",
136
- "amountMin": 15,
137
- "amountMax": 30,
138
- "unlockRequirements": {
139
- "combat": 13
140
- },
141
- "alternatives": ["Tortured soul", "Forgotten Soul", "Revenants"],
142
- "weight": 7
143
- },
144
- {
145
- "name": "Goblins",
146
- "amountMin": 15,
147
- "amountMax": 30,
148
- "unlockRequirements": {
149
- "combat": 0
150
- },
151
- "alternatives": [
152
- "Cave goblin guards",
153
- "Sergeant Strongstack",
154
- "Sergeant Steelwill",
155
- "Sergeant Grimspike"
156
- ],
157
- "weight": 7
158
- },
159
- {
160
- "name": "Icefiends",
161
- "amountMin": 15,
162
- "amountMax": 20,
163
- "unlockRequirements": {
164
- "combat": 20
165
- },
166
- "alternatives": [],
167
- "weight": 8
168
- },
169
- {
170
- "name": "Kalphites",
171
- "amountMin": 15,
172
- "amountMax": 30,
173
- "unlockRequirements": {
174
- "combat": 15
175
- },
176
- "alternatives": [
177
- "Kalphite worker",
178
- "Kalphite soldier",
179
- "Kalphite guardian",
180
- "Kalphite Queen"
181
- ],
182
- "weight": 6
183
- },
184
- {
185
- "name": "Lizards",
186
- "amountMin": 15,
187
- "amountMax": 30,
188
- "unlockRequirements": {
189
- "slayer": 22
190
- },
191
- "alternatives": [
192
- "Small Lizard",
193
- "Desert Lizard",
194
- "Sulphur Lizard",
195
- "Grimy Lizard"
196
- ],
197
- "weight": 8
198
- },
199
- {
200
- "name": "Minotaurs",
201
- "amountMin": 10,
202
- "amountMax": 20,
203
- "unlockRequirements": {
204
- "combat": 7
205
- },
206
- "alternatives": [],
207
- "weight": 7
208
- },
209
- {
210
- "name": "Monkeys",
211
- "amountMin": 15,
212
- "amountMax": 30,
213
- "unlockRequirements": {
214
- "combat": 0
215
- },
216
- "alternatives": [
217
- "Karamjan Monkey",
218
- "Monkey Guard",
219
- "Monkey Archer",
220
- "Monkey Zombie",
221
- "Demonic Gorilla",
222
- "Tortured Gorilla"
223
- ],
224
- "weight": 6
225
- },
226
- {
227
- "name": "Rats",
228
- "amountMin": 15,
229
- "amountMax": 30,
230
- "unlockRequirements": {
231
- "combat": 0
232
- },
233
- "alternatives": [
234
- "Giant rat",
235
- "Dungeon rat",
236
- "Crypt rat",
237
- "Brine rat",
238
- "Hell-Rat Behemoth",
239
- "Giant crypt rat",
240
- "Scurrius"
241
- ],
242
- "weight": 7
243
- },
244
- {
245
- "name": "Scorpions",
246
- "amountMin": 15,
247
- "amountMax": 30,
248
- "unlockRequirements": {
249
- "combat": 7
250
- },
251
- "alternatives": [
252
- "King Scorpion",
253
- "Poison Scorpion",
254
- "Pit Scorpion",
255
- "Scorpia",
256
- "Lobstrosity",
257
- "Reanimated scorpion",
258
- "Scorpia's offspring",
259
- "Scorpia's guardian"
260
- ],
261
- "weight": 7
262
- },
263
- {
264
- "name": "Skeletons",
265
- "amountMin": 15,
266
- "amountMax": 30,
267
- "unlockRequirements": {
268
- "combat": 15
269
- },
270
- "alternatives": [
271
- "Skeleton mage",
272
- "Skeletons in the Stronghold of Security",
273
- "Ancient Cavern",
274
- "Vet'ion",
275
- "Skogre",
276
- "Shayzien Crypts Skeletons",
277
- "Skeleton fremennik",
278
- "Calvar'ion"
279
- ],
280
- "weight": 7
281
- },
282
- {
283
- "name": "Sourhogs",
284
- "amountMin": 15,
285
- "amountMax": 25,
286
- "unlockRequirements": {
287
- "quests": ["A Porcine of Interest"]
288
- },
289
- "alternatives": [],
290
- "weight": 6
291
- },
292
- {
293
- "name": "Spiders",
294
- "amountMin": 15,
295
- "amountMax": 30,
296
- "unlockRequirements": {
297
- "combat": 0
298
- },
299
- "alternatives": [
300
- "Giant spider",
301
- "Shadow spider",
302
- "Giant crypt spider",
303
- "Sarachnis",
304
- "Temple Spider",
305
- "Venenatis",
306
- "Spindel"
307
- ],
308
- "weight": 6
309
- },
310
- {
311
- "name": "Wolves",
312
- "amountMin": 15,
313
- "amountMax": 30,
314
- "unlockRequirements": {
315
- "combat": 20
316
- },
317
- "alternatives": [
318
- "Big Wolf",
319
- "Desert Wolf",
320
- "Ice wolf",
321
- "Jungle wolf",
322
- "White wolf"
323
- ],
324
- "weight": 7
325
- },
326
- {
327
- "name": "Zombies",
328
- "amountMin": 15,
329
- "amountMax": 30,
330
- "unlockRequirements": {
331
- "combat": 10
332
- },
333
- "alternatives": [
334
- "Monkey Zombie",
335
- "Undead chicken",
336
- "Undead cow",
337
- "Undead Druid",
338
- "Undead one",
339
- "Zombie rat",
340
- "Zogre",
341
- "Vorkath"
342
- ],
343
- "weight": 7
344
- }
345
- ]
@@ -1,341 +0,0 @@
1
- [
2
- {
3
- "name": "Banshees",
4
- "amountMin": 15,
5
- "amountMax": 30,
6
- "unlockRequirements": {
7
- "slayer": 15,
8
- "combat": 20,
9
- "quests": ["Priest in Peril"]
10
- },
11
- "alternatives": ["Twisted Banshee"],
12
- "weight": 8
13
- },
14
- {
15
- "name": "Bats",
16
- "amountMin": 15,
17
- "amountMax": 30,
18
- "unlockRequirements": {
19
- "combat": 5
20
- },
21
- "alternatives": ["Giant bat", "Deathwing", "Albino bat"],
22
- "weight": 7
23
- },
24
- {
25
- "name": "Bears",
26
- "amountMin": 10,
27
- "amountMax": 20,
28
- "unlockRequirements": {
29
- "combat": 13
30
- },
31
- "alternatives": [
32
- "Grizzly bear cub",
33
- "Bear cub",
34
- "Grizzly bear",
35
- "Reanimated bear",
36
- "Callisto",
37
- "Artio"
38
- ],
39
- "weight": 7
40
- },
41
- {
42
- "name": "Birds",
43
- "amountMin": 15,
44
- "amountMax": 30,
45
- "unlockRequirements": {
46
- "combat": 0
47
- },
48
- "alternatives": [
49
- "Chicken",
50
- "Mounted terrorbird",
51
- "Terrorbird",
52
- "Rooster",
53
- "Chompy bird",
54
- "Seagull",
55
- "Penguin",
56
- "Duck",
57
- "Duckling"
58
- ],
59
- "weight": 6
60
- },
61
- {
62
- "name": "Cave bugs",
63
- "amountMin": 10,
64
- "amountMax": 30,
65
- "unlockRequirements": {
66
- "slayer": 7
67
- },
68
- "alternatives": [],
69
- "weight": 8
70
- },
71
- {
72
- "name": "Cave crawlers",
73
- "amountMin": 15,
74
- "amountMax": 30,
75
- "unlockRequirements": {
76
- "slayer": 10,
77
- "combat": 10
78
- },
79
- "alternatives": [],
80
- "weight": 8
81
- },
82
- {
83
- "name": "Cave slime",
84
- "amountMin": 10,
85
- "amountMax": 20,
86
- "unlockRequirements": {
87
- "slayer": 17,
88
- "combat": 15
89
- },
90
- "alternatives": [],
91
- "weight": 8
92
- },
93
- {
94
- "name": "Cows",
95
- "amountMin": 15,
96
- "amountMax": 30,
97
- "unlockRequirements": {
98
- "combat": 5
99
- },
100
- "alternatives": ["Buffalo", "Cow calf", "Undead cow"],
101
- "weight": 8
102
- },
103
- {
104
- "name": "Crawling Hands",
105
- "amountMin": 15,
106
- "amountMax": 30,
107
- "unlockRequirements": {
108
- "slayer": 5,
109
- "quests": ["Priest in Peril"]
110
- },
111
- "alternatives": [],
112
- "weight": 8
113
- },
114
- {
115
- "name": "Dogs",
116
- "amountMin": 15,
117
- "amountMax": 30,
118
- "unlockRequirements": {
119
- "combat": 15
120
- },
121
- "alternatives": ["Jackal", "Guard dog", "Wild dog", "Reanimated dog"],
122
- "weight": 7
123
- },
124
- {
125
- "name": "Dwarves",
126
- "amountMin": 10,
127
- "amountMax": 25,
128
- "unlockRequirements": {
129
- "combat": 6
130
- },
131
- "alternatives": ["Black Guard", "Chaos Dwarf", "Dwarf gang member"],
132
- "weight": 7
133
- },
134
- {
135
- "name": "Ghosts",
136
- "amountMin": 15,
137
- "amountMax": 30,
138
- "unlockRequirements": {
139
- "combat": 13
140
- },
141
- "alternatives": ["Tortured soul", "Forgotten Soul", "Revenants"],
142
- "weight": 7
143
- },
144
- {
145
- "name": "Goblins",
146
- "amountMin": 15,
147
- "amountMax": 30,
148
- "unlockRequirements": {
149
- "combat": 0
150
- },
151
- "alternatives": [
152
- "Cave goblin guards",
153
- "Sergeant Strongstack",
154
- "Sergeant Steelwill",
155
- "Sergeant Grimspike"
156
- ],
157
- "weight": 7
158
- },
159
- {
160
- "name": "Icefiends",
161
- "amountMin": 15,
162
- "amountMax": 20,
163
- "unlockRequirements": {
164
- "combat": 20
165
- },
166
- "alternatives": [],
167
- "weight": 8
168
- },
169
- {
170
- "name": "Kalphite",
171
- "amountMin": 15,
172
- "amountMax": 30,
173
- "unlockRequirements": {
174
- "combat": 15
175
- },
176
- "alternatives": [
177
- "Kalphite worker",
178
- "Kalphite soldier",
179
- "Kalphite guardian",
180
- "Kalphite Queen"
181
- ],
182
- "weight": 6
183
- },
184
- {
185
- "name": "Lizards",
186
- "amountMin": 15,
187
- "amountMax": 30,
188
- "unlockRequirements": {
189
- "slayer": 22
190
- },
191
- "alternatives": [
192
- "Small Lizard",
193
- "Desert Lizard",
194
- "Sulphur Lizard",
195
- "Grimy Lizard"
196
- ],
197
- "weight": 8
198
- },
199
- {
200
- "name": "Minotaurs",
201
- "amountMin": 10,
202
- "amountMax": 20,
203
- "unlockRequirements": {
204
- "combat": 7
205
- },
206
- "alternatives": [],
207
- "weight": 7
208
- },
209
- {
210
- "name": "Monkeys",
211
- "amountMin": 15,
212
- "amountMax": 30,
213
- "unlockRequirements": {
214
- "combat": 0
215
- },
216
- "alternatives": [
217
- "Karamjan Monkey",
218
- "Monkey Guard",
219
- "Monkey Archer",
220
- "Monkey Zombie",
221
- "Demonic Gorilla",
222
- "Tortured Gorilla",
223
- "Maniacal Monkey"
224
- ],
225
- "weight": 6
226
- },
227
- {
228
- "name": "Rats",
229
- "amountMin": 15,
230
- "amountMax": 30,
231
- "unlockRequirements": {
232
- "combat": 0
233
- },
234
- "alternatives": [
235
- "Giant rat",
236
- "Dungeon rat",
237
- "Crypt rat",
238
- "Brine rat",
239
- "Hell-Rat Behemoth",
240
- "Giant crypt rat",
241
- "Scurrius"
242
- ],
243
- "weight": 7
244
- },
245
- {
246
- "name": "Scorpions",
247
- "amountMin": 15,
248
- "amountMax": 30,
249
- "unlockRequirements": {
250
- "combat": 7
251
- },
252
- "alternatives": [
253
- "King Scorpion",
254
- "Poison Scorpion",
255
- "Pit Scorpion",
256
- "Scorpia",
257
- "Lobstrosity",
258
- "Reanimated scorpion",
259
- "Scorpia's offspring",
260
- "Scorpia's guardian"
261
- ],
262
- "weight": 7
263
- },
264
- {
265
- "name": "Skeletons",
266
- "amountMin": 15,
267
- "amountMax": 30,
268
- "unlockRequirements": {
269
- "combat": 15
270
- },
271
- "alternatives": [
272
- "Skeleton mage",
273
- "Skeletons in the Stronghold of Security",
274
- "Ancient Cavern",
275
- "Vet'ion",
276
- "Skogre",
277
- "Shayzien Crypts Skeletons",
278
- "Skeleton fremennik",
279
- "Calvar'ion"
280
- ],
281
- "weight": 7
282
- },
283
- {
284
- "name": "Spiders",
285
- "amountMin": 15,
286
- "amountMax": 30,
287
- "unlockRequirements": {
288
- "combat": 0
289
- },
290
- "alternatives": [
291
- "Araxxor",
292
- "Araxyte",
293
- "Giant spider",
294
- "Shadow spider",
295
- "Giant crypt spider",
296
- "Sarachnis",
297
- "Temple Spider",
298
- "Venenatis",
299
- "Spindel"
300
- ],
301
- "weight": 6
302
- },
303
- {
304
- "name": "Wolves",
305
- "amountMin": 15,
306
- "amountMax": 30,
307
- "unlockRequirements": {
308
- "combat": 20
309
- },
310
- "alternatives": [
311
- "Big Wolf",
312
- "Desert Wolf",
313
- "Dire Wolf",
314
- "Ice wolf",
315
- "Jungle wolf",
316
- "White wolf"
317
- ],
318
- "weight": 7
319
- },
320
- {
321
- "name": "Zombies",
322
- "amountMin": 15,
323
- "amountMax": 30,
324
- "unlockRequirements": {
325
- "combat": 10
326
- },
327
- "alternatives": [
328
- "Monkey Zombie",
329
- "Undead chicken",
330
- "Undead cow",
331
- "Undead Druid",
332
- "Undead one",
333
- "Zombie rat",
334
- "Zogre",
335
- "Armoured zombie",
336
- "Zombie pirate",
337
- "Vorkath"
338
- ],
339
- "weight": 7
340
- }
341
- ]