bloxd.io.d.ts 1.0.0

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 (97) hide show
  1. package/api-type-def/clientOption/clientOptions/canChange.d.ts +79 -0
  2. package/api-type-def/clientOption/clientOptions/crouchingSpeed.d.ts +55 -0
  3. package/api-type-def/clientOption/clientOptions/index.d.ts +68 -0
  4. package/api-type-def/clientOption/clientOptions/runningSpeed.d.ts +60 -0
  5. package/api-type-def/clientOption/clientOptions/speedMultiplier.d.ts +61 -0
  6. package/api-type-def/clientOption/clientOptions/walkingSpeed.d.ts +60 -0
  7. package/api-type-def/clientOption/index.d.ts +43 -0
  8. package/api-type-def/entitySetting/entitySettings/example.d.ts +90 -0
  9. package/api-type-def/entitySetting/entitySettings/index.d.ts +83 -0
  10. package/api-type-def/entitySetting/entitySettings/opacity.d.ts +96 -0
  11. package/api-type-def/entitySetting/entitySettings/overlayColour.d.ts +92 -0
  12. package/api-type-def/entitySetting/entitySettings/zIndex.d.ts +91 -0
  13. package/api-type-def/entitySetting/index.d.ts +101 -0
  14. package/api-type-def/index.d.ts +14 -0
  15. package/api-type-def/mobSetting/index.d.ts +71 -0
  16. package/api-type-def/mobSetting/mobSettings/index.d.ts +4 -0
  17. package/api-type-def/mobSetting/mobSettings/maxHealth.d.ts +0 -0
  18. package/api-type-def/mobSetting/mobSettings/variation.d.ts +155 -0
  19. package/api-type-def/normal/forceRespawn.d.ts +12 -0
  20. package/api-type-def/normal/getNumPlayers.d.ts +11 -0
  21. package/api-type-def/normal/getPlayerIds.d.ts +12 -0
  22. package/api-type-def/normal/getPlayerPartyWhenJoined.d.ts +14 -0
  23. package/api-type-def/normal/getUnitCoordinatesLifeformWithin.d.ts +14 -0
  24. package/api-type-def/normal/health/applyHealthChange.d.ts +19 -0
  25. package/api-type-def/normal/health/applyMeleeHit.d.ts +33 -0
  26. package/api-type-def/normal/health/attemptApplyDamage.d.ts +33 -0
  27. package/api-type-def/normal/health/getHealth.d.ts +17 -0
  28. package/api-type-def/normal/health/index.d.ts +15 -0
  29. package/api-type-def/normal/health/isAlive.d.ts +13 -0
  30. package/api-type-def/normal/health/killLifeform.d.ts +14 -0
  31. package/api-type-def/normal/health/setHealth.d.ts +23 -0
  32. package/api-type-def/normal/index.d.ts +28 -0
  33. package/api-type-def/normal/killstreak/clearKillstreak.d.ts +13 -0
  34. package/api-type-def/normal/killstreak/getCurrentKillstreak.d.ts +13 -0
  35. package/api-type-def/normal/killstreak/index.d.ts +5 -0
  36. package/api-type-def/normal/playerIsInGame.d.ts +12 -0
  37. package/api-type-def/normal/playerIsLoggedIn.d.ts +11 -0
  38. package/api-type-def/normal/positions/getPosition.d.ts +12 -0
  39. package/api-type-def/normal/positions/index.d.ts +4 -0
  40. package/api-type-def/normal/positions/setPosition.d.ts +24 -0
  41. package/api-type-def/normal/shields/getShieldAmount.d.ts +15 -0
  42. package/api-type-def/normal/shields/index.d.ts +6 -0
  43. package/api-type-def/normal/shields/setShieldAmount.d.ts +14 -0
  44. package/api-type-def/normal/shops/index.d.ts +3 -0
  45. package/api-type-def/normal/shops/showShopTutorial.d.ts +13 -0
  46. package/api-type-def/normal/standingOns/getBlockCoordinatesPlayerStandingOn.d.ts +16 -0
  47. package/api-type-def/normal/standingOns/getBlockTypesPlayerStandingOn.d.ts +14 -0
  48. package/api-type-def/normal/standingOns/index.d.ts +6 -0
  49. package/bloxd-api.d.ts +12 -0
  50. package/package.json +28 -0
  51. package/readme.md +3 -0
  52. package/type/ApplyMeleeHitOverrides.d.ts +8 -0
  53. package/type/Coordinate.d.ts +1 -0
  54. package/type/Direction.d.ts +1 -0
  55. package/type/Health.d.ts +1 -0
  56. package/type/LifeFormBodyPart.d.ts +7 -0
  57. package/type/Party.d.ts +2 -0
  58. package/type/PlayerAttemptDamageOtherPlayerOpts.d.ts +20 -0
  59. package/type/ShieldAmount.d.ts +1 -0
  60. package/type/WhoDidDamage.d.ts +5 -0
  61. package/type/WhoKilled.d.ts +3 -0
  62. package/type/block/AllBlockId.d.ts +1 -0
  63. package/type/block/AllBlockName.d.ts +1 -0
  64. package/type/block/Block.d.ts +4 -0
  65. package/type/block/BlockId.d.ts +4 -0
  66. package/type/block/BlockName.d.ts +7 -0
  67. package/type/block/index.d.ts +5 -0
  68. package/type/color/Array255Color.d.ts +8 -0
  69. package/type/color/Array255ColorWithA.d.ts +10 -0
  70. package/type/color/index.d.ts +2 -0
  71. package/type/dbId/PlayerDbId.d.ts +2 -0
  72. package/type/dbId/index.d.ts +1 -0
  73. package/type/id/EntityId.d.ts +4 -0
  74. package/type/id/Id.d.ts +2 -0
  75. package/type/id/LifeFormId.d.ts +4 -0
  76. package/type/id/MobId.d.ts +4 -0
  77. package/type/id/PlayerId.d.ts +4 -0
  78. package/type/id/index.d.ts +5 -0
  79. package/type/index.d.ts +18 -0
  80. package/type/item/AllItemId.d.ts +4 -0
  81. package/type/item/AllItemName.d.ts +974 -0
  82. package/type/item/Item.d.ts +4 -0
  83. package/type/item/ItemId.d.ts +4 -0
  84. package/type/item/ItemName.d.ts +4 -0
  85. package/type/item/index.d.ts +5 -0
  86. package/type/mob/MobType.d.ts +29 -0
  87. package/type/mob/index.d.ts +1 -0
  88. package/type/particle/ParticlePresetOpts.d.ts +20 -0
  89. package/type/particle/ParticleSystemBlendMode.d.ts +21 -0
  90. package/type/particle/PresetId.d.ts +116 -0
  91. package/type/particle/TempParticleSystemOpts.d.ts +33 -0
  92. package/type/particle/Texture.d.ts +12 -0
  93. package/type/particle/index.d.ts +5 -0
  94. package/type/sound/AllSoundName.d.ts +1 -0
  95. package/type/sound/SoundName.d.ts +3 -0
  96. package/type/sound/index.d.ts +2 -0
  97. package/type/utilType.d.ts +3 -0
@@ -0,0 +1,974 @@
1
+ export type AllItemName =
2
+ | "Wood Pickaxe"
3
+ | "Stone Pickaxe"
4
+ | "Iron Pickaxe"
5
+ | "Gold Pickaxe"
6
+ | "Diamond Pickaxe"
7
+ | "Moonstone Pickaxe"
8
+ | "Golem Pickaxe"
9
+ | "Wood Axe"
10
+ | "Stone Axe"
11
+ | "Iron Axe"
12
+ | "Gold Axe"
13
+ | "Diamond Axe"
14
+ | "Moonstone Axe"
15
+ | "Artisan Axe"
16
+ | "Wood Spade"
17
+ | "Stone Spade"
18
+ | "Iron Spade"
19
+ | "Gold Spade"
20
+ | "Diamond Spade"
21
+ | "Wood Sword"
22
+ | "Stone Sword"
23
+ | "Iron Sword"
24
+ | "Gold Sword"
25
+ | "Diamond Sword"
26
+ | "Knight Sword"
27
+ | "Wood Hoe"
28
+ | "Stone Hoe"
29
+ | "Iron Hoe"
30
+ | "Gold Hoe"
31
+ | "Diamond Hoe"
32
+ | "Wood Helmet"
33
+ | "Iron Helmet"
34
+ | "Gold Helmet"
35
+ | "Diamond Helmet"
36
+ | "Wood Chestplate"
37
+ | "Iron Chestplate"
38
+ | "Gold Chestplate"
39
+ | "Diamond Chestplate"
40
+ | "Fur Chestplate"
41
+ | "Wood Leggings"
42
+ | "Iron Leggings"
43
+ | "Gold Leggings"
44
+ | "Diamond Leggings"
45
+ | "Wood Boots"
46
+ | "Iron Boots"
47
+ | "Gold Boots"
48
+ | "Diamond Boots"
49
+ | "Spiked Boots"
50
+ | "Wood Gauntlets"
51
+ | "Iron Gauntlets"
52
+ | "Gold Gauntlets"
53
+ | "Diamond Gauntlets"
54
+ | "White Wood Helmet"
55
+ | "White Wood Chestplate"
56
+ | "White Wood Leggings"
57
+ | "White Wood Boots"
58
+ | "White Wood Gauntlets"
59
+ | "Orange Wood Helmet"
60
+ | "Orange Wood Chestplate"
61
+ | "Orange Wood Leggings"
62
+ | "Orange Wood Boots"
63
+ | "Orange Wood Gauntlets"
64
+ | "Magenta Wood Helmet"
65
+ | "Magenta Wood Chestplate"
66
+ | "Magenta Wood Leggings"
67
+ | "Magenta Wood Boots"
68
+ | "Magenta Wood Gauntlets"
69
+ | "Light Blue Wood Helmet"
70
+ | "Light Blue Wood Chestplate"
71
+ | "Light Blue Wood Leggings"
72
+ | "Light Blue Wood Boots"
73
+ | "Light Blue Wood Gauntlets"
74
+ | "Yellow Wood Helmet"
75
+ | "Yellow Wood Chestplate"
76
+ | "Yellow Wood Leggings"
77
+ | "Yellow Wood Boots"
78
+ | "Yellow Wood Gauntlets"
79
+ | "Lime Wood Helmet"
80
+ | "Lime Wood Chestplate"
81
+ | "Lime Wood Leggings"
82
+ | "Lime Wood Boots"
83
+ | "Lime Wood Gauntlets"
84
+ | "Pink Wood Helmet"
85
+ | "Pink Wood Chestplate"
86
+ | "Pink Wood Leggings"
87
+ | "Pink Wood Boots"
88
+ | "Pink Wood Gauntlets"
89
+ | "Gray Wood Helmet"
90
+ | "Gray Wood Chestplate"
91
+ | "Gray Wood Leggings"
92
+ | "Gray Wood Boots"
93
+ | "Gray Wood Gauntlets"
94
+ | "Light Gray Wood Helmet"
95
+ | "Light Gray Wood Chestplate"
96
+ | "Light Gray Wood Leggings"
97
+ | "Light Gray Wood Boots"
98
+ | "Light Gray Wood Gauntlets"
99
+ | "Cyan Wood Helmet"
100
+ | "Cyan Wood Chestplate"
101
+ | "Cyan Wood Leggings"
102
+ | "Cyan Wood Boots"
103
+ | "Cyan Wood Gauntlets"
104
+ | "Purple Wood Helmet"
105
+ | "Purple Wood Chestplate"
106
+ | "Purple Wood Leggings"
107
+ | "Purple Wood Boots"
108
+ | "Purple Wood Gauntlets"
109
+ | "Blue Wood Helmet"
110
+ | "Blue Wood Chestplate"
111
+ | "Blue Wood Leggings"
112
+ | "Blue Wood Boots"
113
+ | "Blue Wood Gauntlets"
114
+ | "Brown Wood Helmet"
115
+ | "Brown Wood Chestplate"
116
+ | "Brown Wood Leggings"
117
+ | "Brown Wood Boots"
118
+ | "Brown Wood Gauntlets"
119
+ | "Green Wood Helmet"
120
+ | "Green Wood Chestplate"
121
+ | "Green Wood Leggings"
122
+ | "Green Wood Boots"
123
+ | "Green Wood Gauntlets"
124
+ | "Red Wood Helmet"
125
+ | "Red Wood Chestplate"
126
+ | "Red Wood Leggings"
127
+ | "Red Wood Boots"
128
+ | "Red Wood Gauntlets"
129
+ | "Black Wood Helmet"
130
+ | "Black Wood Chestplate"
131
+ | "Black Wood Leggings"
132
+ | "Black Wood Boots"
133
+ | "Black Wood Gauntlets"
134
+ | "Shears"
135
+ | "Artisan Shears"
136
+ | "Stick"
137
+ | "Coal"
138
+ | "Raw Iron"
139
+ | "Iron Bar"
140
+ | "Iron Fragment"
141
+ | "Raw Gold"
142
+ | "Gold Bar"
143
+ | "Gold Fragment"
144
+ | "Diamond"
145
+ | "Diamond Fragment"
146
+ | "Moonstone"
147
+ | "Moonstone Fragment"
148
+ | "Bowl"
149
+ | "Partially Full Bowl of Cranberries"
150
+ | "Half Full Bowl of Cranberries"
151
+ | "Nearly Full Bowl of Cranberries"
152
+ | "Bowl of Cranberries"
153
+ | "Mushroom Soup"
154
+ | "Cotton"
155
+ | "Bucket"
156
+ | "Water Bucket"
157
+ | "Lava Bucket"
158
+ | "Boat"
159
+ | "INTERNAL_MESH_Boat"
160
+ | "Obsidian Boat"
161
+ | "INTERNAL_MESH_Obsidian Boat"
162
+ | "Wood Hang Glider"
163
+ | "INTERNAL_MESH_Wood Hang Glider"
164
+ | "Iron Hang Glider"
165
+ | "INTERNAL_MESH_Iron Hang Glider"
166
+ | "Gold Hang Glider"
167
+ | "INTERNAL_MESH_Gold Hang Glider"
168
+ | "Diamond Hang Glider"
169
+ | "INTERNAL_MESH_Diamond Hang Glider"
170
+ | "INTERNAL_MESH_Kart"
171
+ | "Snowball"
172
+ | "Snowball Launcher"
173
+ | "Pebble"
174
+ | "Reinforced Pebble"
175
+ | "Ball"
176
+ | "Reinforced Ball"
177
+ | "Moonstone Orb"
178
+ | "Fireball"
179
+ | "Bouncy Bomb"
180
+ | "RPG"
181
+ | "Obby RPG"
182
+ | "Super RPG"
183
+ | "Grenade Launcher"
184
+ | "Iceball"
185
+ | "Wood Bow"
186
+ | "Wood Bow|meta|charging2"
187
+ | "Wood Bow|meta|charging3"
188
+ | "Wood Bow|meta|charging4"
189
+ | "Stone Bow"
190
+ | "Stone Bow|meta|charging2"
191
+ | "Stone Bow|meta|charging3"
192
+ | "Stone Bow|meta|charging4"
193
+ | "Iron Bow"
194
+ | "Iron Bow|meta|charging2"
195
+ | "Iron Bow|meta|charging3"
196
+ | "Iron Bow|meta|charging4"
197
+ | "Gold Bow"
198
+ | "Gold Bow|meta|charging2"
199
+ | "Gold Bow|meta|charging3"
200
+ | "Gold Bow|meta|charging4"
201
+ | "Diamond Bow"
202
+ | "Diamond Bow|meta|charging2"
203
+ | "Diamond Bow|meta|charging3"
204
+ | "Diamond Bow|meta|charging4"
205
+ | "Wood Crossbow"
206
+ | "Wood Crossbow|meta|charging2"
207
+ | "Wood Crossbow|meta|charging3"
208
+ | "Wood Crossbow|meta|charging4"
209
+ | "Stone Crossbow"
210
+ | "Stone Crossbow|meta|charging2"
211
+ | "Stone Crossbow|meta|charging3"
212
+ | "Stone Crossbow|meta|charging4"
213
+ | "Iron Crossbow"
214
+ | "Iron Crossbow|meta|charging2"
215
+ | "Iron Crossbow|meta|charging3"
216
+ | "Iron Crossbow|meta|charging4"
217
+ | "Gold Crossbow"
218
+ | "Gold Crossbow|meta|charging2"
219
+ | "Gold Crossbow|meta|charging3"
220
+ | "Gold Crossbow|meta|charging4"
221
+ | "Diamond Crossbow"
222
+ | "Diamond Crossbow|meta|charging2"
223
+ | "Diamond Crossbow|meta|charging3"
224
+ | "Diamond Crossbow|meta|charging4"
225
+ | "Wood Crossbow Charged"
226
+ | "Stone Crossbow Charged"
227
+ | "Iron Crossbow Charged"
228
+ | "Gold Crossbow Charged"
229
+ | "Diamond Crossbow Charged"
230
+ | "Arrow"
231
+ | "Compass"
232
+ | "Compass|meta|dir2"
233
+ | "Compass|meta|dir3"
234
+ | "Compass|meta|dir4"
235
+ | "Compass|meta|dir5"
236
+ | "Compass|meta|dir6"
237
+ | "Compass|meta|dir7"
238
+ | "Compass|meta|dir8"
239
+ | "Compass|meta|dir9"
240
+ | "Compass|meta|dir10"
241
+ | "Compass|meta|dir11"
242
+ | "Compass|meta|dir12"
243
+ | "Bread"
244
+ | "Bowl of Rice"
245
+ | "Apple"
246
+ | "Plum"
247
+ | "Coconut"
248
+ | "Cracked Coconut"
249
+ | "Pear"
250
+ | "Cherry"
251
+ | "Banana"
252
+ | "Watermelon Slice"
253
+ | "Gold Watermelon Slice"
254
+ | "Melon Slice"
255
+ | "Gold Melon Slice"
256
+ | "Pumpkin Pie"
257
+ | "Corn"
258
+ | "Cornbread"
259
+ | "Chili Pepper"
260
+ | "Mango"
261
+ | "Carrot"
262
+ | "Raw Potato"
263
+ | "Baked Potato"
264
+ | "Beetroot"
265
+ | "Raw Porkchop"
266
+ | "Cooked Porkchop"
267
+ | "Raw Beef"
268
+ | "Steak"
269
+ | "Raw Mutton"
270
+ | "Cooked Mutton"
271
+ | "Raw Venison"
272
+ | "Cooked Venison"
273
+ | "Rotten Flesh"
274
+ | "Rotten Brain"
275
+ | "Bone"
276
+ | "Bone Meal"
277
+ | "Leather"
278
+ | "Saddle"
279
+ | "Spirit Saddle"
280
+ | "Fur"
281
+ | "Golem Eye"
282
+ | "Knight Heart"
283
+ | "Name Tag"
284
+ | "Book"
285
+ | "Empty Bottle"
286
+ | "Water Bottle"
287
+ | "Slowness Potion"
288
+ | "Slowness Potion II"
289
+ | "Splash Slowness Potion"
290
+ | "Splash Slowness Potion II"
291
+ | "Arrow of Slowness"
292
+ | "Poison Potion"
293
+ | "Poison Potion II"
294
+ | "Splash Poison Potion"
295
+ | "Splash Poison Potion II"
296
+ | "Arrow of Poison"
297
+ | "Weakness Potion"
298
+ | "Weakness Potion II"
299
+ | "Splash Weakness Potion"
300
+ | "Splash Weakness Potion II"
301
+ | "Arrow of Weakness"
302
+ | "Instant Damage Potion"
303
+ | "Instant Damage Potion II"
304
+ | "Splash Instant Damage Potion"
305
+ | "Splash Instant Damage Potion II"
306
+ | "Arrow of Instant Damage"
307
+ | "Milk Potion"
308
+ | "Splash Milk Potion"
309
+ | "Arrow of Milk"
310
+ | "Speed Potion"
311
+ | "Speed Potion II"
312
+ | "Splash Speed Potion"
313
+ | "Splash Speed Potion II"
314
+ | "Arrow of Speed"
315
+ | "Defense Potion"
316
+ | "Defense Potion II"
317
+ | "Splash Defense Potion"
318
+ | "Splash Defense Potion II"
319
+ | "Arrow of Defense"
320
+ | "Strength Potion"
321
+ | "Strength Potion II"
322
+ | "Splash Strength Potion"
323
+ | "Splash Strength Potion II"
324
+ | "Arrow of Strength"
325
+ | "Invisibility Potion"
326
+ | "Splash Invisibility Potion"
327
+ | "Arrow of Invisibility"
328
+ | "Jump Potion"
329
+ | "Jump Potion II"
330
+ | "Splash Jump Potion"
331
+ | "Splash Jump Potion II"
332
+ | "Arrow of Jumping"
333
+ | "Knockback Potion"
334
+ | "Splash Knockback Potion"
335
+ | "Splash Knockback Potion II"
336
+ | "Arrow of Knockback"
337
+ | "Regeneration Potion"
338
+ | "Regeneration Potion II"
339
+ | "Splash Regeneration Potion"
340
+ | "Splash Regeneration Potion II"
341
+ | "Arrow of Regeneration"
342
+ | "Instant Healing Potion"
343
+ | "Instant Healing Potion II"
344
+ | "Splash Instant Healing Potion"
345
+ | "Splash Instant Healing Potion II"
346
+ | "Arrow of Instant Healing"
347
+ | "Haste Potion"
348
+ | "Haste Potion II"
349
+ | "Splash Haste Potion"
350
+ | "Splash Haste Potion II"
351
+ | "Arrow of Haste"
352
+ | "Shield Potion"
353
+ | "Shield Potion II"
354
+ | "Splash Shield Potion"
355
+ | "Splash Shield Potion II"
356
+ | "Arrow of Shield"
357
+ | "Double Jump Potion"
358
+ | "Splash Double Jump Potion"
359
+ | "Arrow of Double Jump"
360
+ | "Heat Resistance Potion"
361
+ | "Splash Heat Resistance Potion"
362
+ | "Arrow of Heat Resistance"
363
+ | "X-Ray Vision Potion"
364
+ | "Splash X-Ray Vision Potion"
365
+ | "Arrow of X-Ray Vision"
366
+ | "Mining Yield Potion"
367
+ | "Mining Yield Potion II"
368
+ | "Splash Mining Yield Potion"
369
+ | "Splash Mining Yield Potion II"
370
+ | "Arrow of Mining Yield"
371
+ | "Brain Rot Potion"
372
+ | "Splash Brain Rot Potion"
373
+ | "Arrow of Brain Rot"
374
+ | "Chaos Potion"
375
+ | "Ammo"
376
+ | "AK-47"
377
+ | "AK-47|RequiresAmmo"
378
+ | "M16"
379
+ | "M16|RequiresAmmo"
380
+ | "MP40"
381
+ | "MP40|RequiresAmmo"
382
+ | "TAR-21"
383
+ | "TAR-21|RequiresAmmo"
384
+ | "M1911"
385
+ | "M1911|RequiresAmmo"
386
+ | "One Shot Pistol"
387
+ | "One Shot Pistol|RequiresAmmo"
388
+ | "Double Barrel"
389
+ | "Double Barrel|RequiresAmmo"
390
+ | "AWP"
391
+ | "AWP|RequiresAmmo"
392
+ | "Minigun"
393
+ | "Minigun|RequiresAmmo"
394
+ | "Gold Coin"
395
+ | "Updraft"
396
+ | "Snowdash"
397
+ | "Floor Creator"
398
+ | "Moonstone Remote Explosive"
399
+ | "Moonstone Remote"
400
+ | "Ice Bridge"
401
+ | "Yellow Balloon"
402
+ | "White Balloon"
403
+ | "Red Balloon"
404
+ | "Purple Balloon"
405
+ | "Pink Balloon"
406
+ | "Orange Balloon"
407
+ | "Magenta Balloon"
408
+ | "Lime Balloon"
409
+ | "Light Gray Balloon"
410
+ | "Light Blue Balloon"
411
+ | "Green Balloon"
412
+ | "Gray Balloon"
413
+ | "Cyan Balloon"
414
+ | "Brown Balloon"
415
+ | "Blue Balloon"
416
+ | "Black Balloon"
417
+ | "INTERNAL_MESH_Yellow Balloon"
418
+ | "INTERNAL_MESH_White Balloon"
419
+ | "INTERNAL_MESH_Red Balloon"
420
+ | "INTERNAL_MESH_Purple Balloon"
421
+ | "INTERNAL_MESH_Pink Balloon"
422
+ | "INTERNAL_MESH_Orange Balloon"
423
+ | "INTERNAL_MESH_Magenta Balloon"
424
+ | "INTERNAL_MESH_Lime Balloon"
425
+ | "INTERNAL_MESH_Light Gray Balloon"
426
+ | "INTERNAL_MESH_Light Blue Balloon"
427
+ | "INTERNAL_MESH_Green Balloon"
428
+ | "INTERNAL_MESH_Gray Balloon"
429
+ | "INTERNAL_MESH_Cyan Balloon"
430
+ | "INTERNAL_MESH_Brown Balloon"
431
+ | "INTERNAL_MESH_Blue Balloon"
432
+ | "INTERNAL_MESH_Black Balloon"
433
+ | "Yellow Popup Tower"
434
+ | "White Popup Tower"
435
+ | "Red Popup Tower"
436
+ | "Purple Popup Tower"
437
+ | "Pink Popup Tower"
438
+ | "Orange Popup Tower"
439
+ | "Magenta Popup Tower"
440
+ | "Lime Popup Tower"
441
+ | "Light Gray Popup Tower"
442
+ | "Light Blue Popup Tower"
443
+ | "Green Popup Tower"
444
+ | "Gray Popup Tower"
445
+ | "Cyan Popup Tower"
446
+ | "Brown Popup Tower"
447
+ | "Blue Popup Tower"
448
+ | "Black Popup Tower"
449
+ | "Yellow Paintball Gun"
450
+ | "White Paintball Gun"
451
+ | "Red Paintball Gun"
452
+ | "Purple Paintball Gun"
453
+ | "Pink Paintball Gun"
454
+ | "Orange Paintball Gun"
455
+ | "Magenta Paintball Gun"
456
+ | "Lime Paintball Gun"
457
+ | "Light Gray Paintball Gun"
458
+ | "Light Blue Paintball Gun"
459
+ | "Green Paintball Gun"
460
+ | "Gray Paintball Gun"
461
+ | "Cyan Paintball Gun"
462
+ | "Brown Paintball Gun"
463
+ | "Blue Paintball Gun"
464
+ | "Black Paintball Gun"
465
+ | "Yellow Paintball"
466
+ | "White Paintball"
467
+ | "Red Paintball"
468
+ | "Purple Paintball"
469
+ | "Pink Paintball"
470
+ | "Orange Paintball"
471
+ | "Magenta Paintball"
472
+ | "Lime Paintball"
473
+ | "Light Gray Paintball"
474
+ | "Light Blue Paintball"
475
+ | "Green Paintball"
476
+ | "Gray Paintball"
477
+ | "Cyan Paintball"
478
+ | "Brown Paintball"
479
+ | "Blue Paintball"
480
+ | "Black Paintball"
481
+ | "Yellow Heavy Paintball Gun"
482
+ | "White Heavy Paintball Gun"
483
+ | "Red Heavy Paintball Gun"
484
+ | "Purple Heavy Paintball Gun"
485
+ | "Pink Heavy Paintball Gun"
486
+ | "Orange Heavy Paintball Gun"
487
+ | "Magenta Heavy Paintball Gun"
488
+ | "Lime Heavy Paintball Gun"
489
+ | "Light Gray Heavy Paintball Gun"
490
+ | "Light Blue Heavy Paintball Gun"
491
+ | "Green Heavy Paintball Gun"
492
+ | "Gray Heavy Paintball Gun"
493
+ | "Cyan Heavy Paintball Gun"
494
+ | "Brown Heavy Paintball Gun"
495
+ | "Blue Heavy Paintball Gun"
496
+ | "Black Heavy Paintball Gun"
497
+ | "Yellow Paintball Explosive Item"
498
+ | "White Paintball Explosive Item"
499
+ | "Red Paintball Explosive Item"
500
+ | "Purple Paintball Explosive Item"
501
+ | "Pink Paintball Explosive Item"
502
+ | "Orange Paintball Explosive Item"
503
+ | "Magenta Paintball Explosive Item"
504
+ | "Lime Paintball Explosive Item"
505
+ | "Light Gray Paintball Explosive Item"
506
+ | "Light Blue Paintball Explosive Item"
507
+ | "Green Paintball Explosive Item"
508
+ | "Gray Paintball Explosive Item"
509
+ | "Cyan Paintball Explosive Item"
510
+ | "Brown Paintball Explosive Item"
511
+ | "Blue Paintball Explosive Item"
512
+ | "Black Paintball Explosive Item"
513
+ | "Yellow Sticky Paintball Explosive Item"
514
+ | "White Sticky Paintball Explosive Item"
515
+ | "Red Sticky Paintball Explosive Item"
516
+ | "Purple Sticky Paintball Explosive Item"
517
+ | "Pink Sticky Paintball Explosive Item"
518
+ | "Orange Sticky Paintball Explosive Item"
519
+ | "Magenta Sticky Paintball Explosive Item"
520
+ | "Lime Sticky Paintball Explosive Item"
521
+ | "Light Gray Sticky Paintball Explosive Item"
522
+ | "Light Blue Sticky Paintball Explosive Item"
523
+ | "Green Sticky Paintball Explosive Item"
524
+ | "Gray Sticky Paintball Explosive Item"
525
+ | "Cyan Sticky Paintball Explosive Item"
526
+ | "Brown Sticky Paintball Explosive Item"
527
+ | "Blue Sticky Paintball Explosive Item"
528
+ | "Black Sticky Paintball Explosive Item"
529
+ | "Yellow Seeking Paintball Explosive Item"
530
+ | "White Seeking Paintball Explosive Item"
531
+ | "Red Seeking Paintball Explosive Item"
532
+ | "Purple Seeking Paintball Explosive Item"
533
+ | "Pink Seeking Paintball Explosive Item"
534
+ | "Orange Seeking Paintball Explosive Item"
535
+ | "Magenta Seeking Paintball Explosive Item"
536
+ | "Lime Seeking Paintball Explosive Item"
537
+ | "Light Gray Seeking Paintball Explosive Item"
538
+ | "Light Blue Seeking Paintball Explosive Item"
539
+ | "Green Seeking Paintball Explosive Item"
540
+ | "Gray Seeking Paintball Explosive Item"
541
+ | "Cyan Seeking Paintball Explosive Item"
542
+ | "Brown Seeking Paintball Explosive Item"
543
+ | "Blue Seeking Paintball Explosive Item"
544
+ | "Black Seeking Paintball Explosive Item"
545
+ | "Yellow Quick Paintball Explosive Item"
546
+ | "White Quick Paintball Explosive Item"
547
+ | "Red Quick Paintball Explosive Item"
548
+ | "Purple Quick Paintball Explosive Item"
549
+ | "Pink Quick Paintball Explosive Item"
550
+ | "Orange Quick Paintball Explosive Item"
551
+ | "Magenta Quick Paintball Explosive Item"
552
+ | "Lime Quick Paintball Explosive Item"
553
+ | "Light Gray Quick Paintball Explosive Item"
554
+ | "Light Blue Quick Paintball Explosive Item"
555
+ | "Green Quick Paintball Explosive Item"
556
+ | "Gray Quick Paintball Explosive Item"
557
+ | "Cyan Quick Paintball Explosive Item"
558
+ | "Brown Quick Paintball Explosive Item"
559
+ | "Blue Quick Paintball Explosive Item"
560
+ | "Black Quick Paintball Explosive Item"
561
+ | "Yellow Paint Bow"
562
+ | "Yellow Paint Bow|meta|charging2"
563
+ | "Yellow Paint Bow|meta|charging3"
564
+ | "Yellow Paint Bow|meta|charging4"
565
+ | "White Paint Bow"
566
+ | "White Paint Bow|meta|charging2"
567
+ | "White Paint Bow|meta|charging3"
568
+ | "White Paint Bow|meta|charging4"
569
+ | "Red Paint Bow"
570
+ | "Red Paint Bow|meta|charging2"
571
+ | "Red Paint Bow|meta|charging3"
572
+ | "Red Paint Bow|meta|charging4"
573
+ | "Purple Paint Bow"
574
+ | "Purple Paint Bow|meta|charging2"
575
+ | "Purple Paint Bow|meta|charging3"
576
+ | "Purple Paint Bow|meta|charging4"
577
+ | "Pink Paint Bow"
578
+ | "Pink Paint Bow|meta|charging2"
579
+ | "Pink Paint Bow|meta|charging3"
580
+ | "Pink Paint Bow|meta|charging4"
581
+ | "Orange Paint Bow"
582
+ | "Orange Paint Bow|meta|charging2"
583
+ | "Orange Paint Bow|meta|charging3"
584
+ | "Orange Paint Bow|meta|charging4"
585
+ | "Magenta Paint Bow"
586
+ | "Magenta Paint Bow|meta|charging2"
587
+ | "Magenta Paint Bow|meta|charging3"
588
+ | "Magenta Paint Bow|meta|charging4"
589
+ | "Lime Paint Bow"
590
+ | "Lime Paint Bow|meta|charging2"
591
+ | "Lime Paint Bow|meta|charging3"
592
+ | "Lime Paint Bow|meta|charging4"
593
+ | "Light Gray Paint Bow"
594
+ | "Light Gray Paint Bow|meta|charging2"
595
+ | "Light Gray Paint Bow|meta|charging3"
596
+ | "Light Gray Paint Bow|meta|charging4"
597
+ | "Light Blue Paint Bow"
598
+ | "Light Blue Paint Bow|meta|charging2"
599
+ | "Light Blue Paint Bow|meta|charging3"
600
+ | "Light Blue Paint Bow|meta|charging4"
601
+ | "Green Paint Bow"
602
+ | "Green Paint Bow|meta|charging2"
603
+ | "Green Paint Bow|meta|charging3"
604
+ | "Green Paint Bow|meta|charging4"
605
+ | "Gray Paint Bow"
606
+ | "Gray Paint Bow|meta|charging2"
607
+ | "Gray Paint Bow|meta|charging3"
608
+ | "Gray Paint Bow|meta|charging4"
609
+ | "Cyan Paint Bow"
610
+ | "Cyan Paint Bow|meta|charging2"
611
+ | "Cyan Paint Bow|meta|charging3"
612
+ | "Cyan Paint Bow|meta|charging4"
613
+ | "Brown Paint Bow"
614
+ | "Brown Paint Bow|meta|charging2"
615
+ | "Brown Paint Bow|meta|charging3"
616
+ | "Brown Paint Bow|meta|charging4"
617
+ | "Blue Paint Bow"
618
+ | "Blue Paint Bow|meta|charging2"
619
+ | "Blue Paint Bow|meta|charging3"
620
+ | "Blue Paint Bow|meta|charging4"
621
+ | "Black Paint Bow"
622
+ | "Black Paint Bow|meta|charging2"
623
+ | "Black Paint Bow|meta|charging3"
624
+ | "Black Paint Bow|meta|charging4"
625
+ | "Pig Spawn Orb"
626
+ | "Cow Spawn Orb"
627
+ | "Sheep Spawn Orb"
628
+ | "Horse Spawn Orb"
629
+ | "Deer Spawn Orb"
630
+ | "Wolf Spawn Orb"
631
+ | "Wildcat Spawn Orb"
632
+ | "Spirit Golem Spawn Orb"
633
+ | "Spirit Wolf Spawn Orb"
634
+ | "Spirit Bear Spawn Orb"
635
+ | "Spirit Stag Spawn Orb"
636
+ | "Spirit Gorilla Spawn Orb"
637
+ | "Bear Spawn Orb"
638
+ | "Stag Spawn Orb"
639
+ | "Gold Watermelon Stag Spawn Orb"
640
+ | "Gorilla Spawn Orb"
641
+ | "Cave Golem Spawn Orb"
642
+ | "Draugr Zombie Spawn Orb"
643
+ | "Draugr Skeleton Spawn Orb"
644
+ | "Frost Golem Spawn Orb"
645
+ | "Frost Zombie Spawn Orb"
646
+ | "Frost Skeleton Spawn Orb"
647
+ | "Draugr Knight Spawn Orb"
648
+ | "Draugr Huntress Spawn Orb"
649
+ | "Magma Golem Spawn Orb"
650
+ | "Draugr Warper Spawn Orb"
651
+ | "Frost Wraith Spawn Orb"
652
+ | "Draugr Reaver Spawn Orb"
653
+ | "Mob Catcher"
654
+ | "Caught Mob Pig Default"
655
+ | "Caught Mob Cow Default"
656
+ | "Caught Mob Cow Cream"
657
+ | "Caught Mob Sheep Default"
658
+ | "Caught Mob Sheep Black"
659
+ | "Caught Mob Sheep Red"
660
+ | "Caught Mob Sheep Orange"
661
+ | "Caught Mob Sheep Pink"
662
+ | "Caught Mob Sheep Purple"
663
+ | "Caught Mob Sheep Yellow"
664
+ | "Caught Mob Sheep Blue"
665
+ | "Caught Mob Sheep Brown"
666
+ | "Caught Mob Sheep Cyan"
667
+ | "Caught Mob Sheep Gray"
668
+ | "Caught Mob Sheep Green"
669
+ | "Caught Mob Sheep Lightblue"
670
+ | "Caught Mob Sheep Lightgray"
671
+ | "Caught Mob Sheep Lime"
672
+ | "Caught Mob Sheep Magenta"
673
+ | "Caught Mob Horse Default"
674
+ | "Caught Mob Horse Black"
675
+ | "Caught Mob Horse Brown"
676
+ | "Caught Mob Horse Cream"
677
+ | "Caught Mob Deer Default"
678
+ | "Caught Mob Wolf Default"
679
+ | "Caught Mob Wolf White"
680
+ | "Caught Mob Wolf Brown"
681
+ | "Caught Mob Wolf Grey"
682
+ | "Caught Mob Wolf Spectral"
683
+ | "Caught Mob Wildcat Default"
684
+ | "Caught Mob Wildcat Tabby"
685
+ | "Caught Mob Wildcat Grey"
686
+ | "Caught Mob Wildcat Black"
687
+ | "Caught Mob Wildcat Calico"
688
+ | "Caught Mob Wildcat Siamese"
689
+ | "Caught Mob Wildcat Leopard"
690
+ | "Caught Mob Spirit_Golem Default"
691
+ | "Caught Mob Spirit_Wolf Default"
692
+ | "Caught Mob Spirit_Bear Default"
693
+ | "Caught Mob Spirit_Stag Default"
694
+ | "Caught Mob Spirit_Gorilla Default"
695
+ | "Caught Mob Bear Default"
696
+ | "Caught Mob Stag Default"
697
+ | "Caught Mob Gold_Watermelon_Stag Default"
698
+ | "Caught Mob Gorilla Default"
699
+ | "Caught Mob Cave_Golem Default"
700
+ | "Caught Mob Cave_Golem Iron"
701
+ | "Caught Mob Draugr_Zombie Default"
702
+ | "Caught Mob Draugr_Zombie Longhairchestplate"
703
+ | "Caught Mob Draugr_Zombie Longhairclothed"
704
+ | "Caught Mob Draugr_Zombie Shorthairclothed"
705
+ | "Caught Mob Draugr_Skeleton Default"
706
+ | "Caught Mob Frost_Golem Default"
707
+ | "Caught Mob Frost_Zombie Default"
708
+ | "Caught Mob Frost_Zombie Longhairchestplate"
709
+ | "Caught Mob Frost_Zombie Shorthairclothed"
710
+ | "Caught Mob Frost_Skeleton Default"
711
+ | "Caught Mob Draugr_Knight Default"
712
+ | "Caught Mob Draugr_Huntress Default"
713
+ | "Caught Mob Draugr_Huntress Chainmail"
714
+ | "Caught Mob Magma_Golem Default"
715
+ | "Caught Mob Draugr_Warper Default"
716
+ | "Caught Mob Frost_Wraith Default"
717
+ | "Caught Mob Draugr_Reaver Default"
718
+ | "Caught Mob NPC Default"
719
+ | "Caught Mob NPC Emma"
720
+ | "Caught Mob NPC Leo"
721
+ | "Caught Mob NPC Isabel"
722
+ | "Caught Mob NPC Sanjay"
723
+ | "Caught Mob NPC Imara"
724
+ | "Caught Mob NPC Enoch"
725
+ | "Caught Mob NPC Sara"
726
+ | "Caught Mob NPC Carmen"
727
+ | "Timed Spike Bomb"
728
+ | "Timed Spike Bomb|meta|charging2"
729
+ | "Timed Spike Bomb|meta|charging3"
730
+ | "Timed Spike Bomb|meta|charging4"
731
+ | "Toxin Ball"
732
+ | "Aura XP Fragment"
733
+ | "Aura XP Orb"
734
+ | "Aura XP Potion"
735
+ | "Aura XP Potion II"
736
+ | "Splash Aura XP Potion"
737
+ | "Splash Aura XP Potion II"
738
+ | "Arrow of Aura XP"
739
+ | "Firecracker"
740
+ | "Rainbow Firecracker"
741
+ | "Yellow Firecracker"
742
+ | "White Firecracker"
743
+ | "Red Firecracker"
744
+ | "Purple Firecracker"
745
+ | "Pink Firecracker"
746
+ | "Orange Firecracker"
747
+ | "Magenta Firecracker"
748
+ | "Lime Firecracker"
749
+ | "Light Gray Firecracker"
750
+ | "Light Blue Firecracker"
751
+ | "Green Firecracker"
752
+ | "Gray Firecracker"
753
+ | "Cyan Firecracker"
754
+ | "Brown Firecracker"
755
+ | "Blue Firecracker"
756
+ | "Black Firecracker"
757
+ | "Firecracker Pebble"
758
+ | "Rainbow Firecracker Pebble"
759
+ | "Yellow Firecracker Pebble"
760
+ | "White Firecracker Pebble"
761
+ | "Red Firecracker Pebble"
762
+ | "Purple Firecracker Pebble"
763
+ | "Pink Firecracker Pebble"
764
+ | "Orange Firecracker Pebble"
765
+ | "Magenta Firecracker Pebble"
766
+ | "Lime Firecracker Pebble"
767
+ | "Light Gray Firecracker Pebble"
768
+ | "Light Blue Firecracker Pebble"
769
+ | "Green Firecracker Pebble"
770
+ | "Gray Firecracker Pebble"
771
+ | "Cyan Firecracker Pebble"
772
+ | "Brown Firecracker Pebble"
773
+ | "Blue Firecracker Pebble"
774
+ | "Black Firecracker Pebble"
775
+ | "WorldBuilder Wand"
776
+ | "Red Strongfish"
777
+ | "Green Strongfish"
778
+ | "Moon Strongfish"
779
+ | "Wheatfish"
780
+ | "Moonfish"
781
+ | "Bombfish"
782
+ | "Boomerang Fish"
783
+ | "Root Flounder"
784
+ | "Abyss Carp"
785
+ | "Boulder Bass"
786
+ | "Barnaclejaw"
787
+ | "Crystalized Wheatfish"
788
+ | "Darter"
789
+ | "Shadow Darter"
790
+ | "Electric Eel"
791
+ | "Grass Snapper"
792
+ | "Jungle Spinefish"
793
+ | "Mangler Catfish"
794
+ | "Mossback Arapaima"
795
+ | "Sandbelly Piranha"
796
+ | "Shadeback Ray"
797
+ | "Mudbelly Tilapia"
798
+ | "Mireback Carp"
799
+ | "Rotslab Eel"
800
+ | "Aether Minnow"
801
+ | "Murkborne Ray"
802
+ | "Eldertide Leviathan"
803
+ | "Oarfish"
804
+ | "Alpha Moon Strongfish"
805
+ | "Bamboo Catfish"
806
+ | "Blackwater Bream"
807
+ | "Blackwater Leviathan"
808
+ | "Boned Sturgeon"
809
+ | "Bull Shark"
810
+ | "Channel Sawfish"
811
+ | "Coastal Mullet"
812
+ | "Coelacanth"
813
+ | "Driftwood Catfish"
814
+ | "Eagle Ray"
815
+ | "Giant Grouper"
816
+ | "Giant Moray"
817
+ | "Giant Stingray"
818
+ | "Golden Mahseer"
819
+ | "Greenfin Loach"
820
+ | "Mangrove Herring"
821
+ | "Moonlit Boomerang Fish"
822
+ | "Moonstone Pupfish"
823
+ | "Mudline Perch"
824
+ | "Murk Stingray"
825
+ | "Needlefish"
826
+ | "Nomai Moray"
827
+ | "Pearlescent Moonfish"
828
+ | "Rainbow Guppy"
829
+ | "Red Snapper"
830
+ | "Reedglass Minnow"
831
+ | "Reef Sardine"
832
+ | "Root Perch"
833
+ | "Rust Scad"
834
+ | "Seahorse"
835
+ | "Snakehead"
836
+ | "Spined Stickleback"
837
+ | "Stone Grouper"
838
+ | "Sumpback Carp"
839
+ | "Sunset Minnow"
840
+ | "Tarpon"
841
+ | "Threadfin Bream"
842
+ | "Tri-Pointed Needlefish"
843
+ | "Game Dev Fish"
844
+ | "Armoured Searobin"
845
+ | "Ash Lionfish"
846
+ | "Barefrost Toothfish"
847
+ | "Blackfin Icefish"
848
+ | "Basalt Pipefish"
849
+ | "Brimstone Spikefish"
850
+ | "Cinder Leviathan"
851
+ | "Crowned Flame Angelfish"
852
+ | "Deepwater Lanternfish"
853
+ | "Driftice Capelin"
854
+ | "Ember Chub"
855
+ | "Embermark Wrasse"
856
+ | "Eviota Vader"
857
+ | "Frost Herring"
858
+ | "Frost Wolf Eel"
859
+ | "Frostpaint Notie"
860
+ | "Frozen Grenadier"
861
+ | "Giant Trevally"
862
+ | "Glacial Lanternfish"
863
+ | "Glacial Silverfish"
864
+ | "Heatwarp Flounder"
865
+ | "Hatchetfish"
866
+ | "Ice Spined Notothenia"
867
+ | "Iceshelf Skate"
868
+ | "Icy Sculpin"
869
+ | "Lavaflow Trout"
870
+ | "Lavawake Slopefish"
871
+ | "Magma Sardinella"
872
+ | "Magma Trout"
873
+ | "Marbled Moray Cod"
874
+ | "Molten Lotella Cod"
875
+ | "Northern Wolffish"
876
+ | "Paleice Rockcod"
877
+ | "Permafrost Halibut"
878
+ | "Pithead"
879
+ | "Polarflash Electron"
880
+ | "Pyroclast Eel"
881
+ | "Pyroscale Grouper"
882
+ | "Red Pyreside"
883
+ | "Rimesnouted Lancetfish"
884
+ | "Scorched Sunfish"
885
+ | "Scored Dace"
886
+ | "Silver Dragonfish"
887
+ | "Snow Haddock"
888
+ | "Volcanic Catfish"
889
+ | "Volcanic Semperi"
890
+ | "Rusty Rod"
891
+ | "Lucky Rod"
892
+ | "Sturdy Rod"
893
+ | "Jungle Rod"
894
+ | "Draugr Rod"
895
+ | "Cursed Rod"
896
+ | "Tangle Resistant Rod"
897
+ | "Speed Rod"
898
+ | "Carbon Rod"
899
+ | "Deep Sea Rod"
900
+ | "Master Rod"
901
+ | "Obsidian Rod"
902
+ | "Molten Magma Rod"
903
+ | "Frost Rod"
904
+ | "Black Ice Rod"
905
+ | "Mythic Rod"
906
+ | "Acorn"
907
+ | "Acorn Jelly"
908
+ | "Cow's Milk"
909
+ | "Cheese"
910
+ | "Caught Fish"
911
+ | "Fish Fillet"
912
+ | "Meaty Bone"
913
+ | "Blinding Pebble"
914
+ | "Sheep's Milk"
915
+ | "Yoghurt Pot"
916
+ | "Truffle"
917
+ | "Truffle Oil"
918
+ | "Oats"
919
+ | "Porridge"
920
+ | "Poop"
921
+ | "Fertiliser"
922
+ | "Medkit"
923
+ | "Wood Spear"
924
+ | "Stone Spear"
925
+ | "Iron Spear"
926
+ | "Gold Spear"
927
+ | "Diamond Spear"
928
+ | "Moonstone Spear"
929
+ | "Wood Dagger"
930
+ | "Stone Dagger"
931
+ | "Iron Dagger"
932
+ | "Gold Dagger"
933
+ | "Diamond Dagger"
934
+ | "Moonstone Dagger"
935
+ | "Wood Boomerang"
936
+ | "Stone Boomerang"
937
+ | "Iron Boomerang"
938
+ | "Gold Boomerang"
939
+ | "Diamond Boomerang"
940
+ | "Moonstone Boomerang"
941
+ | "Wood Club"
942
+ | "Stone Club"
943
+ | "Iron Club"
944
+ | "Gold Club"
945
+ | "Diamond Club"
946
+ | "Moonstone Club"
947
+ | "Wood Mace"
948
+ | "Stone Mace"
949
+ | "Iron Mace"
950
+ | "Gold Mace"
951
+ | "Diamond Mace"
952
+ | "Moonstone Mace"
953
+ | "Wood Whip"
954
+ | "Stone Whip"
955
+ | "Iron Whip"
956
+ | "Gold Whip"
957
+ | "Diamond Whip"
958
+ | "Moonstone Whip"
959
+ | "Beef Stew"
960
+ | "Chicken"
961
+ | "Coleslaw"
962
+ | "Egg"
963
+ | "Fish N Chips"
964
+ | "Fried Rice"
965
+ | "Lettuce"
966
+ | "Omelette"
967
+ | "Onion"
968
+ | "Red Cabbage"
969
+ | "Roast Dinner"
970
+ | "Salad"
971
+ | "Stuffed Pepper"
972
+ | "Sushi"
973
+ | "Tomato"
974
+ | "Vegetable Soup";