1impl super::Item {
2 pub fn to_code_name(self) -> &'static str {
3 match self {
4 Self::IronPickaxe => "IronPickaxe",
5 Self::DirtBlock => "DirtBlock",
6 Self::StoneBlock => "StoneBlock",
7 Self::IronBroadsword => "IronBroadsword",
8 Self::Mushroom => "Mushroom",
9 Self::IronShortsword => "IronShortsword",
10 Self::IronHammer => "IronHammer",
11 Self::Torch => "Torch",
12 Self::Wood => "Wood",
13 Self::IronAxe => "IronAxe",
14 Self::IronOre => "IronOre",
15 Self::CopperOre => "CopperOre",
16 Self::GoldOre => "GoldOre",
17 Self::SilverOre => "SilverOre",
18 Self::CopperWatch => "CopperWatch",
19 Self::SilverWatch => "SilverWatch",
20 Self::GoldWatch => "GoldWatch",
21 Self::DepthMeter => "DepthMeter",
22 Self::GoldBar => "GoldBar",
23 Self::CopperBar => "CopperBar",
24 Self::SilverBar => "SilverBar",
25 Self::IronBar => "IronBar",
26 Self::Gel => "Gel",
27 Self::WoodenSword => "WoodenSword",
28 Self::WoodenDoor => "WoodenDoor",
29 Self::StoneWall => "StoneWall",
30 Self::Acorn => "Acorn",
31 Self::LesserHealingPotion => "LesserHealingPotion",
32 Self::LifeCrystal => "LifeCrystal",
33 Self::DirtWall => "DirtWall",
34 Self::Bottle => "Bottle",
35 Self::WoodenTable => "WoodenTable",
36 Self::Furnace => "Furnace",
37 Self::WoodenChair => "WoodenChair",
38 Self::IronAnvil => "IronAnvil",
39 Self::WorkBench => "WorkBench",
40 Self::Goggles => "Goggles",
41 Self::Lens => "Lens",
42 Self::WoodenBow => "WoodenBow",
43 Self::WoodenArrow => "WoodenArrow",
44 Self::FlamingArrow => "FlamingArrow",
45 Self::Shuriken => "Shuriken",
46 Self::SuspiciousLookingEye => "SuspiciousLookingEye",
47 Self::DemonBow => "DemonBow",
48 Self::WarAxeOfTheNight => "WarAxeoftheNight",
49 Self::LightsBane => "LightsBane",
50 Self::UnholyArrow => "UnholyArrow",
51 Self::Chest => "Chest",
52 Self::BandOfRegeneration => "BandofRegeneration",
53 Self::MagicMirror => "MagicMirror",
54 Self::JestersArrow => "JestersArrow",
55 Self::AngelStatue => "AngelStatue",
56 Self::CloudInABottle => "CloudinaBottle",
57 Self::HermesBoots => "HermesBoots",
58 Self::EnchantedBoomerang => "EnchantedBoomerang",
59 Self::DemoniteOre => "DemoniteOre",
60 Self::DemoniteBar => "DemoniteBar",
61 Self::Heart => "Heart",
62 Self::CorruptSeeds => "CorruptSeeds",
63 Self::VileMushroom => "VileMushroom",
64 Self::EbonstoneBlock => "EbonstoneBlock",
65 Self::GrassSeeds => "GrassSeeds",
66 Self::Sunflower => "Sunflower",
67 Self::Vilethorn => "Vilethorn",
68 Self::Starfury => "Starfury",
69 Self::PurificationPowder => "PurificationPowder",
70 Self::VilePowder => "VilePowder",
71 Self::RottenChunk => "RottenChunk",
72 Self::WormTooth => "WormTooth",
73 Self::WormFood => "WormFood",
74 Self::CopperCoin => "CopperCoin",
75 Self::SilverCoin => "SilverCoin",
76 Self::GoldCoin => "GoldCoin",
77 Self::PlatinumCoin => "PlatinumCoin",
78 Self::FallenStar => "FallenStar",
79 Self::CopperGreaves => "CopperGreaves",
80 Self::IronGreaves => "IronGreaves",
81 Self::SilverGreaves => "SilverGreaves",
82 Self::GoldGreaves => "GoldGreaves",
83 Self::CopperChainmail => "CopperChainmail",
84 Self::IronChainmail => "IronChainmail",
85 Self::SilverChainmail => "SilverChainmail",
86 Self::GoldChainmail => "GoldChainmail",
87 Self::GrapplingHook => "GrapplingHook",
88 Self::Chain => "Chain",
89 Self::ShadowScale => "ShadowScale",
90 Self::PiggyBank => "PiggyBank",
91 Self::MiningHelmet => "MiningHelmet",
92 Self::CopperHelmet => "CopperHelmet",
93 Self::IronHelmet => "IronHelmet",
94 Self::SilverHelmet => "SilverHelmet",
95 Self::GoldHelmet => "GoldHelmet",
96 Self::WoodWall => "WoodWall",
97 Self::WoodPlatform => "WoodPlatform",
98 Self::FlintlockPistol => "FlintlockPistol",
99 Self::Musket => "Musket",
100 Self::MusketBall => "MusketBall",
101 Self::Minishark => "Minishark",
102 Self::IronBow => "IronBow",
103 Self::ShadowGreaves => "ShadowGreaves",
104 Self::ShadowScalemail => "ShadowScalemail",
105 Self::ShadowHelmet => "ShadowHelmet",
106 Self::NightmarePickaxe => "NightmarePickaxe",
107 Self::TheBreaker => "TheBreaker",
108 Self::Candle => "Candle",
109 Self::CopperChandelier => "CopperChandelier",
110 Self::SilverChandelier => "SilverChandelier",
111 Self::GoldChandelier => "GoldChandelier",
112 Self::ManaCrystal => "ManaCrystal",
113 Self::LesserManaPotion => "LesserManaPotion",
114 Self::BandOfStarpower => "BandofStarpower",
115 Self::FlowerOfFire => "FlowerofFire",
116 Self::MagicMissile => "MagicMissile",
117 Self::DirtRod => "DirtRod",
118 Self::ShadowOrb => "ShadowOrb",
119 Self::Meteorite => "Meteorite",
120 Self::MeteoriteBar => "MeteoriteBar",
121 Self::Hook => "Hook",
122 Self::Flamarang => "Flamarang",
123 Self::MoltenFury => "MoltenFury",
124 Self::FieryGreatsword => "FieryGreatsword",
125 Self::MoltenPickaxe => "MoltenPickaxe",
126 Self::MeteorHelmet => "MeteorHelmet",
127 Self::MeteorSuit => "MeteorSuit",
128 Self::MeteorLeggings => "MeteorLeggings",
129 Self::BottledWater => "BottledWater",
130 Self::SpaceGun => "SpaceGun",
131 Self::RocketBoots => "RocketBoots",
132 Self::GrayBrick => "GrayBrick",
133 Self::GrayBrickWall => "GrayBrickWall",
134 Self::RedBrick => "RedBrick",
135 Self::RedBrickWall => "RedBrickWall",
136 Self::ClayBlock => "ClayBlock",
137 Self::BlueBrick => "BlueBrick",
138 Self::BlueBrickWall => "BlueBrickWall",
139 Self::ChainLantern => "ChainLantern",
140 Self::GreenBrick => "GreenBrick",
141 Self::GreenBrickWall => "GreenBrickWall",
142 Self::PinkBrick => "PinkBrick",
143 Self::PinkBrickWall => "PinkBrickWall",
144 Self::GoldBrick => "GoldBrick",
145 Self::GoldBrickWall => "GoldBrickWall",
146 Self::SilverBrick => "SilverBrick",
147 Self::SilverBrickWall => "SilverBrickWall",
148 Self::CopperBrick => "CopperBrick",
149 Self::CopperBrickWall => "CopperBrickWall",
150 Self::Spike => "Spike",
151 Self::WaterCandle => "WaterCandle",
152 Self::Book => "Book",
153 Self::Cobweb => "Cobweb",
154 Self::NecroHelmet => "NecroHelmet",
155 Self::NecroBreastplate => "NecroBreastplate",
156 Self::NecroGreaves => "NecroGreaves",
157 Self::Bone => "Bone",
158 Self::Muramasa => "Muramasa",
159 Self::CobaltShield => "CobaltShield",
160 Self::AquaScepter => "AquaScepter",
161 Self::LuckyHorseshoe => "LuckyHorseshoe",
162 Self::ShinyRedBalloon => "ShinyRedBalloon",
163 Self::Harpoon => "Harpoon",
164 Self::SpikyBall => "SpikyBall",
165 Self::BallOHurt => "BallOHurt",
166 Self::BlueMoon => "BlueMoon",
167 Self::Handgun => "Handgun",
168 Self::WaterBolt => "WaterBolt",
169 Self::Bomb => "Bomb",
170 Self::Dynamite => "Dynamite",
171 Self::Grenade => "Grenade",
172 Self::SandBlock => "SandBlock",
173 Self::Glass => "Glass",
174 Self::Sign => "Sign",
175 Self::AshBlock => "AshBlock",
176 Self::Obsidian => "Obsidian",
177 Self::Hellstone => "Hellstone",
178 Self::HellstoneBar => "HellstoneBar",
179 Self::MudBlock => "MudBlock",
180 Self::Sapphire => "Sapphire",
181 Self::Ruby => "Ruby",
182 Self::Emerald => "Emerald",
183 Self::Topaz => "Topaz",
184 Self::Amethyst => "Amethyst",
185 Self::Diamond => "Diamond",
186 Self::GlowingMushroom => "GlowingMushroom",
187 Self::Star => "Star",
188 Self::IvyWhip => "IvyWhip",
189 Self::BreathingReed => "BreathingReed",
190 Self::Flipper => "Flipper",
191 Self::HealingPotion => "HealingPotion",
192 Self::ManaPotion => "ManaPotion",
193 Self::BladeOfGrass => "BladeofGrass",
194 Self::ThornChakram => "ThornChakram",
195 Self::ObsidianBrick => "ObsidianBrick",
196 Self::ObsidianSkull => "ObsidianSkull",
197 Self::MushroomGrassSeeds => "MushroomGrassSeeds",
198 Self::JungleGrassSeeds => "JungleGrassSeeds",
199 Self::WoodenHammer => "WoodenHammer",
200 Self::StarCannon => "StarCannon",
201 Self::BluePhaseblade => "BluePhaseblade",
202 Self::RedPhaseblade => "RedPhaseblade",
203 Self::GreenPhaseblade => "GreenPhaseblade",
204 Self::PurplePhaseblade => "PurplePhaseblade",
205 Self::WhitePhaseblade => "WhitePhaseblade",
206 Self::YellowPhaseblade => "YellowPhaseblade",
207 Self::MeteorHamaxe => "MeteorHamaxe",
208 Self::EmptyBucket => "EmptyBucket",
209 Self::WaterBucket => "WaterBucket",
210 Self::LavaBucket => "LavaBucket",
211 Self::JungleRose => "JungleRose",
212 Self::Stinger => "Stinger",
213 Self::Vine => "Vine",
214 Self::FeralClaws => "FeralClaws",
215 Self::AnkletOfTheWind => "AnkletoftheWind",
216 Self::StaffOfRegrowth => "StaffofRegrowth",
217 Self::HellstoneBrick => "HellstoneBrick",
218 Self::WhoopieCushion => "WhoopieCushion",
219 Self::Shackle => "Shackle",
220 Self::MoltenHamaxe => "MoltenHamaxe",
221 Self::Flamelash => "Flamelash",
222 Self::PhoenixBlaster => "PhoenixBlaster",
223 Self::Sunfury => "Sunfury",
224 Self::Hellforge => "Hellforge",
225 Self::ClayPot => "ClayPot",
226 Self::NaturesGift => "NaturesGift",
227 Self::Bed => "Bed",
228 Self::Silk => "Silk",
229 Self::LesserRestorationPotion => "LesserRestorationPotion",
230 Self::RestorationPotion => "RestorationPotion",
231 Self::JungleHat => "JungleHat",
232 Self::JungleShirt => "JungleShirt",
233 Self::JunglePants => "JunglePants",
234 Self::MoltenHelmet => "MoltenHelmet",
235 Self::MoltenBreastplate => "MoltenBreastplate",
236 Self::MoltenGreaves => "MoltenGreaves",
237 Self::MeteorShot => "MeteorShot",
238 Self::StickyBomb => "StickyBomb",
239 Self::BlackLens => "BlackLens",
240 Self::Sunglasses => "Sunglasses",
241 Self::WizardHat => "WizardHat",
242 Self::TopHat => "TopHat",
243 Self::TuxedoShirt => "TuxedoShirt",
244 Self::TuxedoPants => "TuxedoPants",
245 Self::SummerHat => "SummerHat",
246 Self::BunnyHood => "BunnyHood",
247 Self::PlumbersHat => "PlumbersHat",
248 Self::PlumbersShirt => "PlumbersShirt",
249 Self::PlumbersPants => "PlumbersPants",
250 Self::HerosHat => "HerosHat",
251 Self::HerosShirt => "HerosShirt",
252 Self::HerosPants => "HerosPants",
253 Self::FishBowl => "FishBowl",
254 Self::ArchaeologistsHat => "ArchaeologistsHat",
255 Self::ArchaeologistsJacket => "ArchaeologistsJacket",
256 Self::ArchaeologistsPants => "ArchaeologistsPants",
257 Self::BlackThread => "BlackThread",
258 Self::GreenThread => "GreenThread",
259 Self::NinjaHood => "NinjaHood",
260 Self::NinjaShirt => "NinjaShirt",
261 Self::NinjaPants => "NinjaPants",
262 Self::Leather => "Leather",
263 Self::RedHat => "RedHat",
264 Self::Goldfish => "Goldfish",
265 Self::Robe => "Robe",
266 Self::RobotHat => "RobotHat",
267 Self::GoldCrown => "GoldCrown",
268 Self::HellfireArrow => "HellfireArrow",
269 Self::Sandgun => "Sandgun",
270 Self::GuideVoodooDoll => "GuideVoodooDoll",
271 Self::DivingHelmet => "DivingHelmet",
272 Self::FamiliarShirt => "FamiliarShirt",
273 Self::FamiliarPants => "FamiliarPants",
274 Self::FamiliarWig => "FamiliarWig",
275 Self::DemonScythe => "DemonScythe",
276 Self::NightsEdge => "NightsEdge",
277 Self::DarkLance => "DarkLance",
278 Self::Coral => "Coral",
279 Self::Cactus => "Cactus",
280 Self::Trident => "Trident",
281 Self::SilverBullet => "SilverBullet",
282 Self::ThrowingKnife => "ThrowingKnife",
283 Self::Spear => "Spear",
284 Self::Blowpipe => "Blowpipe",
285 Self::Glowstick => "Glowstick",
286 Self::Seed => "Seed",
287 Self::WoodenBoomerang => "WoodenBoomerang",
288 Self::Aglet => "Aglet",
289 Self::StickyGlowstick => "StickyGlowstick",
290 Self::PoisonedKnife => "PoisonedKnife",
291 Self::ObsidianSkinPotion => "ObsidianSkinPotion",
292 Self::RegenerationPotion => "RegenerationPotion",
293 Self::SwiftnessPotion => "SwiftnessPotion",
294 Self::GillsPotion => "GillsPotion",
295 Self::IronskinPotion => "IronskinPotion",
296 Self::ManaRegenerationPotion => "ManaRegenerationPotion",
297 Self::MagicPowerPotion => "MagicPowerPotion",
298 Self::FeatherfallPotion => "FeatherfallPotion",
299 Self::SpelunkerPotion => "SpelunkerPotion",
300 Self::InvisibilityPotion => "InvisibilityPotion",
301 Self::ShinePotion => "ShinePotion",
302 Self::NightOwlPotion => "NightOwlPotion",
303 Self::BattlePotion => "BattlePotion",
304 Self::ThornsPotion => "ThornsPotion",
305 Self::WaterWalkingPotion => "WaterWalkingPotion",
306 Self::ArcheryPotion => "ArcheryPotion",
307 Self::HunterPotion => "HunterPotion",
308 Self::GravitationPotion => "GravitationPotion",
309 Self::GoldChest => "GoldChest",
310 Self::DaybloomSeeds => "DaybloomSeeds",
311 Self::MoonglowSeeds => "MoonglowSeeds",
312 Self::BlinkrootSeeds => "BlinkrootSeeds",
313 Self::DeathweedSeeds => "DeathweedSeeds",
314 Self::WaterleafSeeds => "WaterleafSeeds",
315 Self::FireblossomSeeds => "FireblossomSeeds",
316 Self::Daybloom => "Daybloom",
317 Self::Moonglow => "Moonglow",
318 Self::Blinkroot => "Blinkroot",
319 Self::Deathweed => "Deathweed",
320 Self::Waterleaf => "Waterleaf",
321 Self::Fireblossom => "Fireblossom",
322 Self::SharkFin => "SharkFin",
323 Self::Feather => "Feather",
324 Self::Tombstone => "Tombstone",
325 Self::MimeMask => "MimeMask",
326 Self::AntlionMandible => "AntlionMandible",
327 Self::IllegalGunParts => "IllegalGunParts",
328 Self::TheDoctorsShirt => "TheDoctorsShirt",
329 Self::TheDoctorsPants => "TheDoctorsPants",
330 Self::GoldenKey => "GoldenKey",
331 Self::ShadowChest => "ShadowChest",
332 Self::ShadowKey => "ShadowKey",
333 Self::ObsidianBrickWall => "ObsidianBrickWall",
334 Self::JungleSpores => "JungleSpores",
335 Self::Loom => "Loom",
336 Self::Piano => "Piano",
337 Self::Dresser => "Dresser",
338 Self::Bench => "Bench",
339 Self::Bathtub => "Bathtub",
340 Self::RedBanner => "RedBanner",
341 Self::GreenBanner => "GreenBanner",
342 Self::BlueBanner => "BlueBanner",
343 Self::YellowBanner => "YellowBanner",
344 Self::LampPost => "LampPost",
345 Self::TikiTorch => "TikiTorch",
346 Self::Barrel => "Barrel",
347 Self::ChineseLantern => "ChineseLantern",
348 Self::CookingPot => "CookingPot",
349 Self::Safe => "Safe",
350 Self::SkullLantern => "SkullLantern",
351 Self::TrashCan => "TrashCan",
352 Self::Candelabra => "Candelabra",
353 Self::PinkVase => "PinkVase",
354 Self::Mug => "Mug",
355 Self::Keg => "Keg",
356 Self::Ale => "Ale",
357 Self::Bookcase => "Bookcase",
358 Self::Throne => "Throne",
359 Self::Bowl => "Bowl",
360 Self::BowlOfSoup => "BowlofSoup",
361 Self::Toilet => "Toilet",
362 Self::GrandfatherClock => "GrandfatherClock",
363 Self::ArmorStatue => "ArmorStatue",
364 Self::GoblinBattleStandard => "GoblinBattleStandard",
365 Self::TatteredCloth => "TatteredCloth",
366 Self::Sawmill => "Sawmill",
367 Self::CobaltOre => "CobaltOre",
368 Self::MythrilOre => "MythrilOre",
369 Self::AdamantiteOre => "AdamantiteOre",
370 Self::Pwnhammer => "Pwnhammer",
371 Self::Excalibur => "Excalibur",
372 Self::HallowedSeeds => "HallowedSeeds",
373 Self::EbonsandBlock => "EbonsandBlock",
374 Self::CobaltHat => "CobaltHat",
375 Self::CobaltHelmet => "CobaltHelmet",
376 Self::CobaltMask => "CobaltMask",
377 Self::CobaltBreastplate => "CobaltBreastplate",
378 Self::CobaltLeggings => "CobaltLeggings",
379 Self::MythrilHood => "MythrilHood",
380 Self::MythrilHelmet => "MythrilHelmet",
381 Self::MythrilHat => "MythrilHat",
382 Self::MythrilChainmail => "MythrilChainmail",
383 Self::MythrilGreaves => "MythrilGreaves",
384 Self::CobaltBar => "CobaltBar",
385 Self::MythrilBar => "MythrilBar",
386 Self::CobaltChainsaw => "CobaltChainsaw",
387 Self::MythrilChainsaw => "MythrilChainsaw",
388 Self::CobaltDrill => "CobaltDrill",
389 Self::MythrilDrill => "MythrilDrill",
390 Self::AdamantiteChainsaw => "AdamantiteChainsaw",
391 Self::AdamantiteDrill => "AdamantiteDrill",
392 Self::DaoOfPow => "DaoofPow",
393 Self::MythrilHalberd => "MythrilHalberd",
394 Self::AdamantiteBar => "AdamantiteBar",
395 Self::GlassWall => "GlassWall",
396 Self::Compass => "Compass",
397 Self::DivingGear => "DivingGear",
398 Self::Gps => "GPS",
399 Self::ObsidianHorseshoe => "ObsidianHorseshoe",
400 Self::ObsidianShield => "ObsidianShield",
401 Self::TinkerersWorkshop => "TinkerersWorkshop",
402 Self::CloudinaBalloon => "CloudinaBalloon",
403 Self::AdamantiteHeadgear => "AdamantiteHeadgear",
404 Self::AdamantiteHelmet => "AdamantiteHelmet",
405 Self::AdamantiteMask => "AdamantiteMask",
406 Self::AdamantiteBreastplate => "AdamantiteBreastplate",
407 Self::AdamantiteLeggings => "AdamantiteLeggings",
408 Self::SpectreBoots => "SpectreBoots",
409 Self::AdamantiteGlaive => "AdamantiteGlaive",
410 Self::Toolbelt => "Toolbelt",
411 Self::PearlsandBlock => "PearlsandBlock",
412 Self::PearlstoneBlock => "PearlstoneBlock",
413 Self::MiningShirt => "MiningShirt",
414 Self::MiningPants => "MiningPants",
415 Self::PearlstoneBrick => "PearlstoneBrick",
416 Self::IridescentBrick => "IridescentBrick",
417 Self::MudstoneBlock => "MudstoneBlock",
418 Self::CobaltBrick => "CobaltBrick",
419 Self::MythrilBrick => "MythrilBrick",
420 Self::PearlstoneBrickWall => "PearlstoneBrickWall",
421 Self::IridescentBrickWall => "IridescentBrickWall",
422 Self::MudstoneBrickWall => "MudstoneBrickWall",
423 Self::CobaltBrickWall => "CobaltBrickWall",
424 Self::MythrilBrickWall => "MythrilBrickWall",
425 Self::HolyWater => "HolyWater",
426 Self::UnholyWater => "UnholyWater",
427 Self::SiltBlock => "SiltBlock",
428 Self::FairyBell => "FairyBell",
429 Self::BreakerBlade => "BreakerBlade",
430 Self::BlueTorch => "BlueTorch",
431 Self::RedTorch => "RedTorch",
432 Self::GreenTorch => "GreenTorch",
433 Self::PurpleTorch => "PurpleTorch",
434 Self::WhiteTorch => "WhiteTorch",
435 Self::YellowTorch => "YellowTorch",
436 Self::DemonTorch => "DemonTorch",
437 Self::ClockworkAssaultRifle => "ClockworkAssaultRifle",
438 Self::CobaltRepeater => "CobaltRepeater",
439 Self::MythrilRepeater => "MythrilRepeater",
440 Self::DualHook => "DualHook",
441 Self::StarStatue => "StarStatue",
442 Self::SwordStatue => "SwordStatue",
443 Self::SlimeStatue => "SlimeStatue",
444 Self::GoblinStatue => "GoblinStatue",
445 Self::ShieldStatue => "ShieldStatue",
446 Self::BatStatue => "BatStatue",
447 Self::FishStatue => "FishStatue",
448 Self::BunnyStatue => "BunnyStatue",
449 Self::SkeletonStatue => "SkeletonStatue",
450 Self::ReaperStatue => "ReaperStatue",
451 Self::WomanStatue => "WomanStatue",
452 Self::ImpStatue => "ImpStatue",
453 Self::GargoyleStatue => "GargoyleStatue",
454 Self::GloomStatue => "GloomStatue",
455 Self::HornetStatue => "HornetStatue",
456 Self::BombStatue => "BombStatue",
457 Self::CrabStatue => "CrabStatue",
458 Self::HammerStatue => "HammerStatue",
459 Self::PotionStatue => "PotionStatue",
460 Self::SpearStatue => "SpearStatue",
461 Self::CrossStatue => "CrossStatue",
462 Self::JellyfishStatue => "JellyfishStatue",
463 Self::BowStatue => "BowStatue",
464 Self::BoomerangStatue => "BoomerangStatue",
465 Self::BootStatue => "BootStatue",
466 Self::ChestStatue => "ChestStatue",
467 Self::BirdStatue => "BirdStatue",
468 Self::AxeStatue => "AxeStatue",
469 Self::CorruptStatue => "CorruptStatue",
470 Self::TreeStatue => "TreeStatue",
471 Self::AnvilStatue => "AnvilStatue",
472 Self::PickaxeStatue => "PickaxeStatue",
473 Self::MushroomStatue => "MushroomStatue",
474 Self::EyeballStatue => "EyeballStatue",
475 Self::PillarStatue => "PillarStatue",
476 Self::HeartStatue => "HeartStatue",
477 Self::PotStatue => "PotStatue",
478 Self::SunflowerStatue => "SunflowerStatue",
479 Self::KingStatue => "KingStatue",
480 Self::QueenStatue => "QueenStatue",
481 Self::PiranhaStatue => "PiranhaStatue",
482 Self::PlankedWall => "PlankedWall",
483 Self::WoodenBeam => "WoodenBeam",
484 Self::AdamantiteRepeater => "AdamantiteRepeater",
485 Self::AdamantiteSword => "AdamantiteSword",
486 Self::CobaltSword => "CobaltSword",
487 Self::MythrilSword => "MythrilSword",
488 Self::MoonCharm => "MoonCharm",
489 Self::Ruler => "Ruler",
490 Self::CrystalBall => "CrystalBall",
491 Self::DiscoBall => "DiscoBall",
492 Self::SorcererEmblem => "SorcererEmblem",
493 Self::WarriorEmblem => "WarriorEmblem",
494 Self::RangerEmblem => "RangerEmblem",
495 Self::DemonWings => "DemonWings",
496 Self::AngelWings => "AngelWings",
497 Self::MagicalHarp => "MagicalHarp",
498 Self::RainbowRod => "RainbowRod",
499 Self::IceRod => "IceRod",
500 Self::NeptunesShell => "NeptunesShell",
501 Self::Mannequin => "Mannequin",
502 Self::GreaterHealingPotion => "GreaterHealingPotion",
503 Self::GreaterManaPotion => "GreaterManaPotion",
504 Self::PixieDust => "PixieDust",
505 Self::CrystalShard => "CrystalShard",
506 Self::ClownHat => "ClownHat",
507 Self::ClownShirt => "ClownShirt",
508 Self::ClownPants => "ClownPants",
509 Self::Flamethrower => "Flamethrower",
510 Self::Bell => "Bell",
511 Self::Harp => "Harp",
512 Self::Wrench => "Wrench",
513 Self::WireCutter => "WireCutter",
514 Self::ActiveStoneBlock => "ActiveStoneBlock",
515 Self::InactiveStoneBlock => "InactiveStoneBlock",
516 Self::Lever => "Lever",
517 Self::LaserRifle => "LaserRifle",
518 Self::CrystalBullet => "CrystalBullet",
519 Self::HolyArrow => "HolyArrow",
520 Self::MagicDagger => "MagicDagger",
521 Self::CrystalStorm => "CrystalStorm",
522 Self::CursedFlames => "CursedFlames",
523 Self::SoulOfLight => "SoulofLight",
524 Self::SoulOfNight => "SoulofNight",
525 Self::CursedFlame => "CursedFlame",
526 Self::CursedTorch => "CursedTorch",
527 Self::AdamantiteForge => "AdamantiteForge",
528 Self::MythrilAnvil => "MythrilAnvil",
529 Self::UnicornHorn => "UnicornHorn",
530 Self::DarkShard => "DarkShard",
531 Self::LightShard => "LightShard",
532 Self::RedPressurePlate => "RedPressurePlate",
533 Self::Wire => "Wire",
534 Self::SpellTome => "SpellTome",
535 Self::StarCloak => "StarCloak",
536 Self::Megashark => "Megashark",
537 Self::Shotgun => "Shotgun",
538 Self::PhilosophersStone => "PhilosophersStone",
539 Self::TitanGlove => "TitanGlove",
540 Self::CobaltNaginata => "CobaltNaginata",
541 Self::Switch => "Switch",
542 Self::DartTrap => "DartTrap",
543 Self::Boulder => "Boulder",
544 Self::GreenPressurePlate => "GreenPressurePlate",
545 Self::GrayPressurePlate => "GrayPressurePlate",
546 Self::BrownPressurePlate => "BrownPressurePlate",
547 Self::MechanicalEye => "MechanicalEye",
548 Self::CursedArrow => "CursedArrow",
549 Self::CursedBullet => "CursedBullet",
550 Self::SoulOfFright => "SoulofFright",
551 Self::SoulOfMight => "SoulofMight",
552 Self::SoulOfSight => "SoulofSight",
553 Self::Gungnir => "Gungnir",
554 Self::HallowedPlateMail => "HallowedPlateMail",
555 Self::HallowedGreaves => "HallowedGreaves",
556 Self::HallowedHelmet => "HallowedHelmet",
557 Self::CrossNecklace => "CrossNecklace",
558 Self::ManaFlower => "ManaFlower",
559 Self::MechanicalWorm => "MechanicalWorm",
560 Self::MechanicalSkull => "MechanicalSkull",
561 Self::HallowedHeadgear => "HallowedHeadgear",
562 Self::HallowedMask => "HallowedMask",
563 Self::SlimeCrown => "SlimeCrown",
564 Self::LightDisc => "LightDisc",
565 Self::MusicBoxOverworldDay => "MusicBoxOverworldDay",
566 Self::MusicBoxEerie => "MusicBoxEerie",
567 Self::MusicBoxNight => "MusicBoxNight",
568 Self::MusicBoxTitle => "MusicBoxTitle",
569 Self::MusicBoxUnderground => "MusicBoxUnderground",
570 Self::MusicBoxBoss1 => "MusicBoxBoss1",
571 Self::MusicBoxJungle => "MusicBoxJungle",
572 Self::MusicBoxCorruption => "MusicBoxCorruption",
573 Self::MusicBoxUndergroundCorruption => "MusicBoxUndergroundCorruption",
574 Self::MusicBoxTheHallow => "MusicBoxTheHallow",
575 Self::MusicBoxBoss2 => "MusicBoxBoss2",
576 Self::MusicBoxUndergroundHallow => "MusicBoxUndergroundHallow",
577 Self::MusicBoxBoss3 => "MusicBoxBoss3",
578 Self::SoulOfFlight => "SoulofFlight",
579 Self::MusicBox => "MusicBox",
580 Self::DemoniteBrick => "DemoniteBrick",
581 Self::HallowedRepeater => "HallowedRepeater",
582 Self::Drax => "Drax",
583 Self::Explosives => "Explosives",
584 Self::InletPump => "InletPump",
585 Self::OutletPump => "OutletPump",
586 Self::Timer1Second => "Timer1Second",
587 Self::Timer3Second => "Timer3Second",
588 Self::Timer5Second => "Timer5Second",
589 Self::CandyCaneBlock => "CandyCaneBlock",
590 Self::CandyCaneWall => "CandyCaneWall",
591 Self::SantaHat => "SantaHat",
592 Self::SantaShirt => "SantaShirt",
593 Self::SantaPants => "SantaPants",
594 Self::GreenCandyCaneBlock => "GreenCandyCaneBlock",
595 Self::GreenCandyCaneWall => "GreenCandyCaneWall",
596 Self::SnowBlock => "SnowBlock",
597 Self::SnowBrick => "SnowBrick",
598 Self::SnowBrickWall => "SnowBrickWall",
599 Self::BlueLight => "BlueLight",
600 Self::RedLight => "RedLight",
601 Self::GreenLight => "GreenLight",
602 Self::BluePresent => "BluePresent",
603 Self::GreenPresent => "GreenPresent",
604 Self::YellowPresent => "YellowPresent",
605 Self::SnowGlobe => "SnowGlobe",
606 Self::Carrot => "Carrot",
607 Self::AdamantiteBeam => "AdamantiteBeam",
608 Self::AdamantiteBeamWall => "AdamantiteBeamWall",
609 Self::DemoniteBrickWall => "DemoniteBrickWall",
610 Self::SandstoneBrick => "SandstoneBrick",
611 Self::SandstoneBrickWall => "SandstoneBrickWall",
612 Self::EbonstoneBrick => "EbonstoneBrick",
613 Self::EbonstoneBrickWall => "EbonstoneBrickWall",
614 Self::RedStucco => "RedStucco",
615 Self::YellowStucco => "YellowStucco",
616 Self::GreenStucco => "GreenStucco",
617 Self::GrayStucco => "GrayStucco",
618 Self::RedStuccoWall => "RedStuccoWall",
619 Self::YellowStuccoWall => "YellowStuccoWall",
620 Self::GreenStuccoWall => "GreenStuccoWall",
621 Self::GrayStuccoWall => "GrayStuccoWall",
622 Self::Ebonwood => "Ebonwood",
623 Self::RichMahogany => "RichMahogany",
624 Self::Pearlwood => "Pearlwood",
625 Self::EbonwoodWall => "EbonwoodWall",
626 Self::RichMahoganyWall => "RichMahoganyWall",
627 Self::PearlwoodWall => "PearlwoodWall",
628 Self::EbonwoodChest => "EbonwoodChest",
629 Self::RichMahoganyChest => "RichMahoganyChest",
630 Self::PearlwoodChest => "PearlwoodChest",
631 Self::EbonwoodChair => "EbonwoodChair",
632 Self::RichMahoganyChair => "RichMahoganyChair",
633 Self::PearlwoodChair => "PearlwoodChair",
634 Self::EbonwoodPlatform => "EbonwoodPlatform",
635 Self::RichMahoganyPlatform => "RichMahoganyPlatform",
636 Self::PearlwoodPlatform => "PearlwoodPlatform",
637 Self::BonePlatform => "BonePlatform",
638 Self::EbonwoodWorkBench => "EbonwoodWorkBench",
639 Self::RichMahoganyWorkBench => "RichMahoganyWorkBench",
640 Self::PearlwoodWorkBench => "PearlwoodWorkBench",
641 Self::EbonwoodTable => "EbonwoodTable",
642 Self::RichMahoganyTable => "RichMahoganyTable",
643 Self::PearlwoodTable => "PearlwoodTable",
644 Self::EbonwoodPiano => "EbonwoodPiano",
645 Self::RichMahoganyPiano => "RichMahoganyPiano",
646 Self::PearlwoodPiano => "PearlwoodPiano",
647 Self::EbonwoodBed => "EbonwoodBed",
648 Self::RichMahoganyBed => "RichMahoganyBed",
649 Self::PearlwoodBed => "PearlwoodBed",
650 Self::EbonwoodDresser => "EbonwoodDresser",
651 Self::RichMahoganyDresser => "RichMahoganyDresser",
652 Self::PearlwoodDresser => "PearlwoodDresser",
653 Self::EbonwoodDoor => "EbonwoodDoor",
654 Self::RichMahoganyDoor => "RichMahoganyDoor",
655 Self::PearlwoodDoor => "PearlwoodDoor",
656 Self::EbonwoodSword => "EbonwoodSword",
657 Self::EbonwoodHammer => "EbonwoodHammer",
658 Self::EbonwoodBow => "EbonwoodBow",
659 Self::RichMahoganySword => "RichMahoganySword",
660 Self::RichMahoganyHammer => "RichMahoganyHammer",
661 Self::RichMahoganyBow => "RichMahoganyBow",
662 Self::PearlwoodSword => "PearlwoodSword",
663 Self::PearlwoodHammer => "PearlwoodHammer",
664 Self::PearlwoodBow => "PearlwoodBow",
665 Self::RainbowBrick => "RainbowBrick",
666 Self::RainbowBrickWall => "RainbowBrickWall",
667 Self::IceBlock => "IceBlock",
668 Self::RedsWings => "RedsWings",
669 Self::RedsHelmet => "RedsHelmet",
670 Self::RedsBreastplate => "RedsBreastplate",
671 Self::RedsLeggings => "RedsLeggings",
672 Self::Fish => "Fish",
673 Self::IceBoomerang => "IceBoomerang",
674 Self::Keybrand => "Keybrand",
675 Self::Cutlass => "Cutlass",
676 Self::BorealWoodWorkBench => "BorealWoodWorkBench",
677 Self::TrueExcalibur => "TrueExcalibur",
678 Self::TrueNightsEdge => "TrueNightsEdge",
679 Self::Frostbrand => "Frostbrand",
680 Self::BorealWoodTable => "BorealWoodTable",
681 Self::RedPotion => "RedPotion",
682 Self::TacticalShotgun => "TacticalShotgun",
683 Self::IvyChest => "IvyChest",
684 Self::IceChest => "IceChest",
685 Self::Marrow => "Marrow",
686 Self::UnholyTrident => "UnholyTrident",
687 Self::FrostHelmet => "FrostHelmet",
688 Self::FrostBreastplate => "FrostBreastplate",
689 Self::FrostLeggings => "FrostLeggings",
690 Self::TinHelmet => "TinHelmet",
691 Self::TinChainmail => "TinChainmail",
692 Self::TinGreaves => "TinGreaves",
693 Self::LeadHelmet => "LeadHelmet",
694 Self::LeadChainmail => "LeadChainmail",
695 Self::LeadGreaves => "LeadGreaves",
696 Self::TungstenHelmet => "TungstenHelmet",
697 Self::TungstenChainmail => "TungstenChainmail",
698 Self::TungstenGreaves => "TungstenGreaves",
699 Self::PlatinumHelmet => "PlatinumHelmet",
700 Self::PlatinumChainmail => "PlatinumChainmail",
701 Self::PlatinumGreaves => "PlatinumGreaves",
702 Self::TinOre => "TinOre",
703 Self::LeadOre => "LeadOre",
704 Self::TungstenOre => "TungstenOre",
705 Self::PlatinumOre => "PlatinumOre",
706 Self::TinBar => "TinBar",
707 Self::LeadBar => "LeadBar",
708 Self::TungstenBar => "TungstenBar",
709 Self::PlatinumBar => "PlatinumBar",
710 Self::TinWatch => "TinWatch",
711 Self::TungstenWatch => "TungstenWatch",
712 Self::PlatinumWatch => "PlatinumWatch",
713 Self::TinChandelier => "TinChandelier",
714 Self::TungstenChandelier => "TungstenChandelier",
715 Self::PlatinumChandelier => "PlatinumChandelier",
716 Self::PlatinumCandle => "PlatinumCandle",
717 Self::PlatinumCandelabra => "PlatinumCandelabra",
718 Self::PlatinumCrown => "PlatinumCrown",
719 Self::LeadAnvil => "LeadAnvil",
720 Self::TinBrick => "TinBrick",
721 Self::TungstenBrick => "TungstenBrick",
722 Self::PlatinumBrick => "PlatinumBrick",
723 Self::TinBrickWall => "TinBrickWall",
724 Self::TungstenBrickWall => "TungstenBrickWall",
725 Self::PlatinumBrickWall => "PlatinumBrickWall",
726 Self::BeamSword => "BeamSword",
727 Self::IceBlade => "IceBlade",
728 Self::IceBow => "IceBow",
729 Self::FrostStaff => "FrostStaff",
730 Self::WoodHelmet => "WoodHelmet",
731 Self::WoodBreastplate => "WoodBreastplate",
732 Self::WoodGreaves => "WoodGreaves",
733 Self::EbonwoodHelmet => "EbonwoodHelmet",
734 Self::EbonwoodBreastplate => "EbonwoodBreastplate",
735 Self::EbonwoodGreaves => "EbonwoodGreaves",
736 Self::RichMahoganyHelmet => "RichMahoganyHelmet",
737 Self::RichMahoganyBreastplate => "RichMahoganyBreastplate",
738 Self::RichMahoganyGreaves => "RichMahoganyGreaves",
739 Self::PearlwoodHelmet => "PearlwoodHelmet",
740 Self::PearlwoodBreastplate => "PearlwoodBreastplate",
741 Self::PearlwoodGreaves => "PearlwoodGreaves",
742 Self::AmethystStaff => "AmethystStaff",
743 Self::TopazStaff => "TopazStaff",
744 Self::SapphireStaff => "SapphireStaff",
745 Self::EmeraldStaff => "EmeraldStaff",
746 Self::RubyStaff => "RubyStaff",
747 Self::DiamondStaff => "DiamondStaff",
748 Self::GrassWall => "GrassWall",
749 Self::JungleWall => "JungleWall",
750 Self::FlowerWall => "FlowerWall",
751 Self::Jetpack => "Jetpack",
752 Self::ButterflyWings => "ButterflyWings",
753 Self::CactusWall => "CactusWall",
754 Self::Cloud => "Cloud",
755 Self::CloudWall => "CloudWall",
756 Self::Seaweed => "Seaweed",
757 Self::RuneHat => "RuneHat",
758 Self::RuneRobe => "RuneRobe",
759 Self::MushroomSpear => "MushroomSpear",
760 Self::TerraBlade => "TerraBlade",
761 Self::GrenadeLauncher => "GrenadeLauncher",
762 Self::RocketLauncher => "RocketLauncher",
763 Self::ProximityMineLauncher => "ProximityMineLauncher",
764 Self::FairyWings => "FairyWings",
765 Self::SlimeBlock => "SlimeBlock",
766 Self::FleshBlock => "FleshBlock",
767 Self::MushroomWall => "MushroomWall",
768 Self::RainCloud => "RainCloud",
769 Self::BoneBlock => "BoneBlock",
770 Self::FrozenSlimeBlock => "FrozenSlimeBlock",
771 Self::BoneBlockWall => "BoneBlockWall",
772 Self::SlimeBlockWall => "SlimeBlockWall",
773 Self::FleshBlockWall => "FleshBlockWall",
774 Self::RocketI => "RocketI",
775 Self::RocketII => "RocketII",
776 Self::RocketIII => "RocketIII",
777 Self::RocketIV => "RocketIV",
778 Self::AsphaltBlock => "AsphaltBlock",
779 Self::CobaltPickaxe => "CobaltPickaxe",
780 Self::MythrilPickaxe => "MythrilPickaxe",
781 Self::AdamantitePickaxe => "AdamantitePickaxe",
782 Self::Clentaminator => "Clentaminator",
783 Self::GreenSolution => "GreenSolution",
784 Self::BlueSolution => "BlueSolution",
785 Self::PurpleSolution => "PurpleSolution",
786 Self::DarkBlueSolution => "DarkBlueSolution",
787 Self::RedSolution => "RedSolution",
788 Self::HarpyWings => "HarpyWings",
789 Self::BoneWings => "BoneWings",
790 Self::Hammush => "Hammush",
791 Self::NettleBurst => "NettleBurst",
792 Self::AnkhBanner => "AnkhBanner",
793 Self::SnakeBanner => "SnakeBanner",
794 Self::OmegaBanner => "OmegaBanner",
795 Self::CrimsonHelmet => "CrimsonHelmet",
796 Self::CrimsonScalemail => "CrimsonScalemail",
797 Self::CrimsonGreaves => "CrimsonGreaves",
798 Self::BloodButcherer => "BloodButcherer",
799 Self::TendonBow => "TendonBow",
800 Self::FleshGrinder => "FleshGrinder",
801 Self::DeathbringerPickaxe => "DeathbringerPickaxe",
802 Self::BloodLustCluster => "BloodLustCluster",
803 Self::TheUndertaker => "TheUndertaker",
804 Self::TheMeatball => "TheMeatball",
805 Self::TheRottedFork => "TheRottedFork",
806 Self::EskimoHood => "EskimoHood",
807 Self::EskimoCoat => "EskimoCoat",
808 Self::EskimoPants => "EskimoPants",
809 Self::LivingWoodChair => "LivingWoodChair",
810 Self::CactusChair => "CactusChair",
811 Self::BoneChair => "BoneChair",
812 Self::FleshChair => "FleshChair",
813 Self::MushroomChair => "MushroomChair",
814 Self::BoneWorkBench => "BoneWorkBench",
815 Self::CactusWorkBench => "CactusWorkBench",
816 Self::FleshWorkBench => "FleshWorkBench",
817 Self::MushroomWorkBench => "MushroomWorkBench",
818 Self::SlimeWorkBench => "SlimeWorkBench",
819 Self::CactusDoor => "CactusDoor",
820 Self::FleshDoor => "FleshDoor",
821 Self::MushroomDoor => "MushroomDoor",
822 Self::LivingWoodDoor => "LivingWoodDoor",
823 Self::BoneDoor => "BoneDoor",
824 Self::FlameWings => "FlameWings",
825 Self::FrozenWings => "FrozenWings",
826 Self::GhostWings => "GhostWings",
827 Self::SunplateBlock => "SunplateBlock",
828 Self::DiscWall => "DiscWall",
829 Self::SkywareChair => "SkywareChair",
830 Self::BoneTable => "BoneTable",
831 Self::FleshTable => "FleshTable",
832 Self::LivingWoodTable => "LivingWoodTable",
833 Self::SkywareTable => "SkywareTable",
834 Self::LivingWoodChest => "LivingWoodChest",
835 Self::LivingWoodWand => "LivingWoodWand",
836 Self::PurpleIceBlock => "PurpleIceBlock",
837 Self::PinkIceBlock => "PinkIceBlock",
838 Self::RedIceBlock => "RedIceBlock",
839 Self::CrimstoneBlock => "CrimstoneBlock",
840 Self::SkywareDoor => "SkywareDoor",
841 Self::SkywareChest => "SkywareChest",
842 Self::SteampunkHat => "SteampunkHat",
843 Self::SteampunkShirt => "SteampunkShirt",
844 Self::SteampunkPants => "SteampunkPants",
845 Self::BeeHat => "BeeHat",
846 Self::BeeShirt => "BeeShirt",
847 Self::BeePants => "BeePants",
848 Self::WorldBanner => "WorldBanner",
849 Self::SunBanner => "SunBanner",
850 Self::GravityBanner => "GravityBanner",
851 Self::PharaohsMask => "PharaohsMask",
852 Self::Actuator => "Actuator",
853 Self::BlueWrench => "BlueWrench",
854 Self::GreenWrench => "GreenWrench",
855 Self::BluePressurePlate => "BluePressurePlate",
856 Self::YellowPressurePlate => "YellowPressurePlate",
857 Self::DiscountCard => "DiscountCard",
858 Self::LuckyCoin => "LuckyCoin",
859 Self::UnicornOnAStick => "UnicornonaStick",
860 Self::SandstormInABottle => "SandstorminaBottle",
861 Self::BorealWoodSofa => "BorealWoodSofa",
862 Self::BeachBall => "BeachBall",
863 Self::CharmOfMyths => "CharmofMyths",
864 Self::MoonShell => "MoonShell",
865 Self::StarVeil => "StarVeil",
866 Self::WaterWalkingBoots => "WaterWalkingBoots",
867 Self::Tiara => "Tiara",
868 Self::PrincessDress => "PrincessDress",
869 Self::PharaohsRobe => "PharaohsRobe",
870 Self::GreenCap => "GreenCap",
871 Self::MushroomCap => "MushroomCap",
872 Self::TamOShanter => "TamOShanter",
873 Self::MummyMask => "MummyMask",
874 Self::MummyShirt => "MummyShirt",
875 Self::MummyPants => "MummyPants",
876 Self::CowboyHat => "CowboyHat",
877 Self::CowboyJacket => "CowboyJacket",
878 Self::CowboyPants => "CowboyPants",
879 Self::PirateHat => "PirateHat",
880 Self::PirateShirt => "PirateShirt",
881 Self::PiratePants => "PiratePants",
882 Self::VikingHelmet => "VikingHelmet",
883 Self::CrimtaneOre => "CrimtaneOre",
884 Self::CactusSword => "CactusSword",
885 Self::CactusPickaxe => "CactusPickaxe",
886 Self::IceBrick => "IceBrick",
887 Self::IceBrickWall => "IceBrickWall",
888 Self::AdhesiveBandage => "AdhesiveBandage",
889 Self::ArmorPolish => "ArmorPolish",
890 Self::Bezoar => "Bezoar",
891 Self::Blindfold => "Blindfold",
892 Self::FastClock => "FastClock",
893 Self::Megaphone => "Megaphone",
894 Self::Nazar => "Nazar",
895 Self::Vitamins => "Vitamins",
896 Self::TrifoldMap => "TrifoldMap",
897 Self::CactusHelmet => "CactusHelmet",
898 Self::CactusBreastplate => "CactusBreastplate",
899 Self::CactusLeggings => "CactusLeggings",
900 Self::PowerGlove => "PowerGlove",
901 Self::LightningBoots => "LightningBoots",
902 Self::SunStone => "SunStone",
903 Self::MoonStone => "MoonStone",
904 Self::ArmorBracing => "ArmorBracing",
905 Self::MedicatedBandage => "MedicatedBandage",
906 Self::ThePlan => "ThePlan",
907 Self::CountercurseMantra => "CountercurseMantra",
908 Self::CoinGun => "CoinGun",
909 Self::LavaCharm => "LavaCharm",
910 Self::ObsidianWaterWalkingBoots => "ObsidianWaterWalkingBoots",
911 Self::LavaWaders => "LavaWaders",
912 Self::PureWaterFountain => "PureWaterFountain",
913 Self::DesertWaterFountain => "DesertWaterFountain",
914 Self::Shadewood => "Shadewood",
915 Self::ShadewoodDoor => "ShadewoodDoor",
916 Self::ShadewoodPlatform => "ShadewoodPlatform",
917 Self::ShadewoodChest => "ShadewoodChest",
918 Self::ShadewoodChair => "ShadewoodChair",
919 Self::ShadewoodWorkBench => "ShadewoodWorkBench",
920 Self::ShadewoodTable => "ShadewoodTable",
921 Self::ShadewoodDresser => "ShadewoodDresser",
922 Self::ShadewoodPiano => "ShadewoodPiano",
923 Self::ShadewoodBed => "ShadewoodBed",
924 Self::ShadewoodSword => "ShadewoodSword",
925 Self::ShadewoodHammer => "ShadewoodHammer",
926 Self::ShadewoodBow => "ShadewoodBow",
927 Self::ShadewoodHelmet => "ShadewoodHelmet",
928 Self::ShadewoodBreastplate => "ShadewoodBreastplate",
929 Self::ShadewoodGreaves => "ShadewoodGreaves",
930 Self::ShadewoodWall => "ShadewoodWall",
931 Self::Cannon => "Cannon",
932 Self::Cannonball => "Cannonball",
933 Self::FlareGun => "FlareGun",
934 Self::Flare => "Flare",
935 Self::BoneWand => "BoneWand",
936 Self::LeafWand => "LeafWand",
937 Self::FlyingCarpet => "FlyingCarpet",
938 Self::AvengerEmblem => "AvengerEmblem",
939 Self::MechanicalGlove => "MechanicalGlove",
940 Self::LandMine => "LandMine",
941 Self::PaladinsShield => "PaladinsShield",
942 Self::WebSlinger => "WebSlinger",
943 Self::JungleWaterFountain => "JungleWaterFountain",
944 Self::IcyWaterFountain => "IcyWaterFountain",
945 Self::CorruptWaterFountain => "CorruptWaterFountain",
946 Self::CrimsonWaterFountain => "CrimsonWaterFountain",
947 Self::HallowedWaterFountain => "HallowedWaterFountain",
948 Self::BloodWaterFountain => "BloodWaterFountain",
949 Self::Umbrella => "Umbrella",
950 Self::ChlorophyteOre => "ChlorophyteOre",
951 Self::SteampunkWings => "SteampunkWings",
952 Self::Snowball => "Snowball",
953 Self::IceSkates => "IceSkates",
954 Self::SnowballLauncher => "SnowballLauncher",
955 Self::WebCoveredChest => "WebCoveredChest",
956 Self::ClimbingClaws => "ClimbingClaws",
957 Self::AncientIronHelmet => "AncientIronHelmet",
958 Self::AncientGoldHelmet => "AncientGoldHelmet",
959 Self::AncientShadowHelmet => "AncientShadowHelmet",
960 Self::AncientShadowScalemail => "AncientShadowScalemail",
961 Self::AncientShadowGreaves => "AncientShadowGreaves",
962 Self::AncientNecroHelmet => "AncientNecroHelmet",
963 Self::AncientCobaltHelmet => "AncientCobaltHelmet",
964 Self::AncientCobaltBreastplate => "AncientCobaltBreastplate",
965 Self::AncientCobaltLeggings => "AncientCobaltLeggings",
966 Self::BlackBelt => "BlackBelt",
967 Self::Boomstick => "Boomstick",
968 Self::Rope => "Rope",
969 Self::Campfire => "Campfire",
970 Self::Marshmallow => "Marshmallow",
971 Self::MarshmallowOnAStick => "MarshmallowonaStick",
972 Self::CookedMarshmallow => "CookedMarshmallow",
973 Self::RedRocket => "RedRocket",
974 Self::GreenRocket => "GreenRocket",
975 Self::BlueRocket => "BlueRocket",
976 Self::YellowRocket => "YellowRocket",
977 Self::IceTorch => "IceTorch",
978 Self::ShoeSpikes => "ShoeSpikes",
979 Self::TigerClimbingGear => "TigerClimbingGear",
980 Self::Tabi => "Tabi",
981 Self::PinkEskimoHood => "PinkEskimoHood",
982 Self::PinkEskimoCoat => "PinkEskimoCoat",
983 Self::PinkEskimoPants => "PinkEskimoPants",
984 Self::PinkThread => "PinkThread",
985 Self::ManaRegenerationBand => "ManaRegenerationBand",
986 Self::SandstormInABalloon => "SandstorminaBalloon",
987 Self::MasterNinjaGear => "MasterNinjaGear",
988 Self::RopeCoil => "RopeCoil",
989 Self::Blowgun => "Blowgun",
990 Self::BlizzardInABottle => "BlizzardinaBottle",
991 Self::FrostburnArrow => "FrostburnArrow",
992 Self::EnchantedSword => "EnchantedSword",
993 Self::PickaxeAxe => "PickaxeAxe",
994 Self::CobaltWaraxe => "CobaltWaraxe",
995 Self::MythrilWaraxe => "MythrilWaraxe",
996 Self::AdamantiteWaraxe => "AdamantiteWaraxe",
997 Self::EatersBone => "EatersBone",
998 Self::BlendOMatic => "BlendOMatic",
999 Self::MeatGrinder => "MeatGrinder",
1000 Self::Extractinator => "Extractinator",
1001 Self::Solidifier => "Solidifier",
1002 Self::Amber => "Amber",
1003 Self::ConfettiGun => "ConfettiGun",
1004 Self::ChlorophyteMask => "ChlorophyteMask",
1005 Self::ChlorophyteHelmet => "ChlorophyteHelmet",
1006 Self::ChlorophyteHeadgear => "ChlorophyteHeadgear",
1007 Self::ChlorophytePlateMail => "ChlorophytePlateMail",
1008 Self::ChlorophyteGreaves => "ChlorophyteGreaves",
1009 Self::ChlorophyteBar => "ChlorophyteBar",
1010 Self::RedDye => "RedDye",
1011 Self::OrangeDye => "OrangeDye",
1012 Self::YellowDye => "YellowDye",
1013 Self::LimeDye => "LimeDye",
1014 Self::GreenDye => "GreenDye",
1015 Self::TealDye => "TealDye",
1016 Self::CyanDye => "CyanDye",
1017 Self::SkyBlueDye => "SkyBlueDye",
1018 Self::BlueDye => "BlueDye",
1019 Self::PurpleDye => "PurpleDye",
1020 Self::VioletDye => "VioletDye",
1021 Self::PinkDye => "PinkDye",
1022 Self::RedAndBlackDye => "RedandBlackDye",
1023 Self::OrangeAndBlackDye => "OrangeandBlackDye",
1024 Self::YellowAndBlackDye => "YellowandBlackDye",
1025 Self::LimeAndBlackDye => "LimeandBlackDye",
1026 Self::GreenAndBlackDye => "GreenandBlackDye",
1027 Self::TealAndBlackDye => "TealandBlackDye",
1028 Self::CyanAndBlackDye => "CyanandBlackDye",
1029 Self::SkyBlueAndBlackDye => "SkyBlueandBlackDye",
1030 Self::BlueAndBlackDye => "BlueandBlackDye",
1031 Self::PurpleAndBlackDye => "PurpleandBlackDye",
1032 Self::VioletAndBlackDye => "VioletandBlackDye",
1033 Self::PinkAndBlackDye => "PinkandBlackDye",
1034 Self::FlameDye => "FlameDye",
1035 Self::FlameAndBlackDye => "FlameAndBlackDye",
1036 Self::GreenFlameDye => "GreenFlameDye",
1037 Self::GreenFlameAndBlackDye => "GreenFlameAndBlackDye",
1038 Self::BlueFlameDye => "BlueFlameDye",
1039 Self::BlueFlameAndBlackDye => "BlueFlameAndBlackDye",
1040 Self::SilverDye => "SilverDye",
1041 Self::BrightRedDye => "BrightRedDye",
1042 Self::BrightOrangeDye => "BrightOrangeDye",
1043 Self::BrightYellowDye => "BrightYellowDye",
1044 Self::BrightLimeDye => "BrightLimeDye",
1045 Self::BrightGreenDye => "BrightGreenDye",
1046 Self::BrightTealDye => "BrightTealDye",
1047 Self::BrightCyanDye => "BrightCyanDye",
1048 Self::BrightSkyBlueDye => "BrightSkyBlueDye",
1049 Self::BrightBlueDye => "BrightBlueDye",
1050 Self::BrightPurpleDye => "BrightPurpleDye",
1051 Self::BrightVioletDye => "BrightVioletDye",
1052 Self::BrightPinkDye => "BrightPinkDye",
1053 Self::BlackDye => "BlackDye",
1054 Self::RedAndSilverDye => "RedandSilverDye",
1055 Self::OrangeAndSilverDye => "OrangeandSilverDye",
1056 Self::YellowAndSilverDye => "YellowandSilverDye",
1057 Self::LimeAndSilverDye => "LimeandSilverDye",
1058 Self::GreenAndSilverDye => "GreenandSilverDye",
1059 Self::TealAndSilverDye => "TealandSilverDye",
1060 Self::CyanAndSilverDye => "CyanandSilverDye",
1061 Self::SkyBlueAndSilverDye => "SkyBlueandSilverDye",
1062 Self::BlueAndSilverDye => "BlueandSilverDye",
1063 Self::PurpleAndSilverDye => "PurpleandSilverDye",
1064 Self::VioletAndSilverDye => "VioletandSilverDye",
1065 Self::PinkAndSilverDye => "PinkandSilverDye",
1066 Self::IntenseFlameDye => "IntenseFlameDye",
1067 Self::IntenseGreenFlameDye => "IntenseGreenFlameDye",
1068 Self::IntenseBlueFlameDye => "IntenseBlueFlameDye",
1069 Self::RainbowDye => "RainbowDye",
1070 Self::IntenseRainbowDye => "IntenseRainbowDye",
1071 Self::YellowGradientDye => "YellowGradientDye",
1072 Self::CyanGradientDye => "CyanGradientDye",
1073 Self::VioletGradientDye => "VioletGradientDye",
1074 Self::Paintbrush => "Paintbrush",
1075 Self::PaintRoller => "PaintRoller",
1076 Self::RedPaint => "RedPaint",
1077 Self::OrangePaint => "OrangePaint",
1078 Self::YellowPaint => "YellowPaint",
1079 Self::LimePaint => "LimePaint",
1080 Self::GreenPaint => "GreenPaint",
1081 Self::TealPaint => "TealPaint",
1082 Self::CyanPaint => "CyanPaint",
1083 Self::SkyBluePaint => "SkyBluePaint",
1084 Self::BluePaint => "BluePaint",
1085 Self::PurplePaint => "PurplePaint",
1086 Self::VioletPaint => "VioletPaint",
1087 Self::PinkPaint => "PinkPaint",
1088 Self::DeepRedPaint => "DeepRedPaint",
1089 Self::DeepOrangePaint => "DeepOrangePaint",
1090 Self::DeepYellowPaint => "DeepYellowPaint",
1091 Self::DeepLimePaint => "DeepLimePaint",
1092 Self::DeepGreenPaint => "DeepGreenPaint",
1093 Self::DeepTealPaint => "DeepTealPaint",
1094 Self::DeepCyanPaint => "DeepCyanPaint",
1095 Self::DeepSkyBluePaint => "DeepSkyBluePaint",
1096 Self::DeepBluePaint => "DeepBluePaint",
1097 Self::DeepPurplePaint => "DeepPurplePaint",
1098 Self::DeepVioletPaint => "DeepVioletPaint",
1099 Self::DeepPinkPaint => "DeepPinkPaint",
1100 Self::BlackPaint => "BlackPaint",
1101 Self::WhitePaint => "WhitePaint",
1102 Self::GrayPaint => "GrayPaint",
1103 Self::PaintScraper => "PaintScraper",
1104 Self::LihzahrdBrick => "LihzahrdBrick",
1105 Self::LihzahrdBrickWall => "LihzahrdBrickWall",
1106 Self::SlushBlock => "SlushBlock",
1107 Self::PalladiumOre => "PalladiumOre",
1108 Self::OrichalcumOre => "OrichalcumOre",
1109 Self::TitaniumOre => "TitaniumOre",
1110 Self::TealMushroom => "TealMushroom",
1111 Self::GreenMushroom => "GreenMushroom",
1112 Self::SkyBlueFlower => "SkyBlueFlower",
1113 Self::YellowMarigold => "YellowMarigold",
1114 Self::BlueBerries => "BlueBerries",
1115 Self::LimeKelp => "LimeKelp",
1116 Self::PinkPricklyPear => "PinkPricklyPear",
1117 Self::OrangeBloodroot => "OrangeBloodroot",
1118 Self::RedHusk => "RedHusk",
1119 Self::CyanHusk => "CyanHusk",
1120 Self::VioletHusk => "VioletHusk",
1121 Self::PurpleMucus => "PurpleMucos",
1122 Self::BlackInk => "BlackInk",
1123 Self::DyeVat => "DyeVat",
1124 Self::BeeGun => "BeeGun",
1125 Self::PossessedHatchet => "PossessedHatchet",
1126 Self::BeeKeeper => "BeeKeeper",
1127 Self::Hive => "Hive",
1128 Self::HoneyBlock => "HoneyBlock",
1129 Self::HiveWall => "HiveWall",
1130 Self::CrispyHoneyBlock => "CrispyHoneyBlock",
1131 Self::HoneyBucket => "HoneyBucket",
1132 Self::HiveWand => "HiveWand",
1133 Self::Beenade => "Beenade",
1134 Self::GravityGlobe => "GravityGlobe",
1135 Self::HoneyComb => "HoneyComb",
1136 Self::Abeemination => "Abeemination",
1137 Self::BottledHoney => "BottledHoney",
1138 Self::RainHat => "RainHat",
1139 Self::RainCoat => "RainCoat",
1140 Self::LihzahrdDoor => "LihzahrdDoor",
1141 Self::DungeonDoor => "DungeonDoor",
1142 Self::LeadDoor => "LeadDoor",
1143 Self::IronDoor => "IronDoor",
1144 Self::TempleKey => "TempleKey",
1145 Self::LihzahrdChest => "LihzahrdChest",
1146 Self::LihzahrdChair => "LihzahrdChair",
1147 Self::LihzahrdTable => "LihzahrdTable",
1148 Self::LihzahrdWorkBench => "LihzahrdWorkBench",
1149 Self::SuperDartTrap => "SuperDartTrap",
1150 Self::FlameTrap => "FlameTrap",
1151 Self::SpikyBallTrap => "SpikyBallTrap",
1152 Self::SpearTrap => "SpearTrap",
1153 Self::WoodenSpike => "WoodenSpike",
1154 Self::LihzahrdPressurePlate => "LihzahrdPressurePlate",
1155 Self::LihzahrdStatue => "LihzahrdStatue",
1156 Self::LihzahrdWatcherStatue => "LihzahrdWatcherStatue",
1157 Self::LihzahrdGuardianStatue => "LihzahrdGuardianStatue",
1158 Self::WaspGun => "WaspGun",
1159 Self::PiranhaGun => "PiranhaGun",
1160 Self::PygmyStaff => "PygmyStaff",
1161 Self::PygmyNecklace => "PygmyNecklace",
1162 Self::TikiMask => "TikiMask",
1163 Self::TikiShirt => "TikiShirt",
1164 Self::TikiPants => "TikiPants",
1165 Self::LeafWings => "LeafWings",
1166 Self::BlizzardInABalloon => "BlizzardinaBalloon",
1167 Self::BundleOfBalloons => "BundleofBalloons",
1168 Self::BatWings => "BatWings",
1169 Self::BoneSword => "BoneSword",
1170 Self::HerculesBeetle => "HerculesBeetle",
1171 Self::SmokeBomb => "SmokeBomb",
1172 Self::BoneKey => "BoneKey",
1173 Self::Nectar => "Nectar",
1174 Self::TikiTotem => "TikiTotem",
1175 Self::LizardEgg => "LizardEgg",
1176 Self::GraveMarker => "GraveMarker",
1177 Self::CrossGraveMarker => "CrossGraveMarker",
1178 Self::Headstone => "Headstone",
1179 Self::Gravestone => "Gravestone",
1180 Self::Obelisk => "Obelisk",
1181 Self::LeafBlower => "LeafBlower",
1182 Self::ChlorophyteBullet => "ChlorophyteBullet",
1183 Self::ParrotCracker => "ParrotCracker",
1184 Self::StrangeGlowingMushroom => "StrangeGlowingMushroom",
1185 Self::Seedling => "Seedling",
1186 Self::WispInABottle => "WispinaBottle",
1187 Self::PalladiumBar => "PalladiumBar",
1188 Self::PalladiumSword => "PalladiumSword",
1189 Self::PalladiumPike => "PalladiumPike",
1190 Self::PalladiumRepeater => "PalladiumRepeater",
1191 Self::PalladiumPickaxe => "PalladiumPickaxe",
1192 Self::PalladiumDrill => "PalladiumDrill",
1193 Self::PalladiumChainsaw => "PalladiumChainsaw",
1194 Self::OrichalcumBar => "OrichalcumBar",
1195 Self::OrichalcumSword => "OrichalcumSword",
1196 Self::OrichalcumHalberd => "OrichalcumHalberd",
1197 Self::OrichalcumRepeater => "OrichalcumRepeater",
1198 Self::OrichalcumPickaxe => "OrichalcumPickaxe",
1199 Self::OrichalcumDrill => "OrichalcumDrill",
1200 Self::OrichalcumChainsaw => "OrichalcumChainsaw",
1201 Self::TitaniumBar => "TitaniumBar",
1202 Self::TitaniumSword => "TitaniumSword",
1203 Self::TitaniumTrident => "TitaniumTrident",
1204 Self::TitaniumRepeater => "TitaniumRepeater",
1205 Self::TitaniumPickaxe => "TitaniumPickaxe",
1206 Self::TitaniumDrill => "TitaniumDrill",
1207 Self::TitaniumChainsaw => "TitaniumChainsaw",
1208 Self::PalladiumMask => "PalladiumMask",
1209 Self::PalladiumHelmet => "PalladiumHelmet",
1210 Self::PalladiumHeadgear => "PalladiumHeadgear",
1211 Self::PalladiumBreastplate => "PalladiumBreastplate",
1212 Self::PalladiumLeggings => "PalladiumLeggings",
1213 Self::OrichalcumMask => "OrichalcumMask",
1214 Self::OrichalcumHelmet => "OrichalcumHelmet",
1215 Self::OrichalcumHeadgear => "OrichalcumHeadgear",
1216 Self::OrichalcumBreastplate => "OrichalcumBreastplate",
1217 Self::OrichalcumLeggings => "OrichalcumLeggings",
1218 Self::TitaniumMask => "TitaniumMask",
1219 Self::TitaniumHelmet => "TitaniumHelmet",
1220 Self::TitaniumHeadgear => "TitaniumHeadgear",
1221 Self::TitaniumBreastplate => "TitaniumBreastplate",
1222 Self::TitaniumLeggings => "TitaniumLeggings",
1223 Self::OrichalcumAnvil => "OrichalcumAnvil",
1224 Self::TitaniumForge => "TitaniumForge",
1225 Self::PalladiumWaraxe => "PalladiumWaraxe",
1226 Self::OrichalcumWaraxe => "OrichalcumWaraxe",
1227 Self::TitaniumWaraxe => "TitaniumWaraxe",
1228 Self::HallowedBar => "HallowedBar",
1229 Self::ChlorophyteClaymore => "ChlorophyteClaymore",
1230 Self::ChlorophyteSaber => "ChlorophyteSaber",
1231 Self::ChlorophytePartisan => "ChlorophytePartisan",
1232 Self::ChlorophyteShotbow => "ChlorophyteShotbow",
1233 Self::ChlorophytePickaxe => "ChlorophytePickaxe",
1234 Self::ChlorophyteDrill => "ChlorophyteDrill",
1235 Self::ChlorophyteChainsaw => "ChlorophyteChainsaw",
1236 Self::ChlorophyteGreataxe => "ChlorophyteGreataxe",
1237 Self::ChlorophyteWarhammer => "ChlorophyteWarhammer",
1238 Self::ChlorophyteArrow => "ChlorophyteArrow",
1239 Self::AmethystHook => "AmethystHook",
1240 Self::TopazHook => "TopazHook",
1241 Self::SapphireHook => "SapphireHook",
1242 Self::EmeraldHook => "EmeraldHook",
1243 Self::RubyHook => "RubyHook",
1244 Self::DiamondHook => "DiamondHook",
1245 Self::AmberMosquito => "AmberMosquito",
1246 Self::UmbrellaHat => "UmbrellaHat",
1247 Self::NimbusRod => "NimbusRod",
1248 Self::OrangeTorch => "OrangeTorch",
1249 Self::CrimsandBlock => "CrimsandBlock",
1250 Self::BeeCloak => "BeeCloak",
1251 Self::EyeOfTheGolem => "EyeoftheGolem",
1252 Self::HoneyBalloon => "HoneyBalloon",
1253 Self::BlueHorseshoeBalloon => "BlueHorseshoeBalloon",
1254 Self::WhiteHorseshoeBalloon => "WhiteHorseshoeBalloon",
1255 Self::YellowHorseshoeBalloon => "YellowHorseshoeBalloon",
1256 Self::FrozenTurtleShell => "FrozenTurtleShell",
1257 Self::SniperRifle => "SniperRifle",
1258 Self::VenusMagnum => "VenusMagnum",
1259 Self::CrimsonRod => "CrimsonRod",
1260 Self::CrimtaneBar => "CrimtaneBar",
1261 Self::Stynger => "Stynger",
1262 Self::FlowerPow => "FlowerPow",
1263 Self::RainbowGun => "RainbowGun",
1264 Self::StyngerBolt => "StyngerBolt",
1265 Self::ChlorophyteJackhammer => "ChlorophyteJackhammer",
1266 Self::Teleporter => "Teleporter",
1267 Self::FlowerOfFrost => "FlowerofFrost",
1268 Self::Uzi => "Uzi",
1269 Self::MagnetSphere => "MagnetSphere",
1270 Self::PurpleStainedGlass => "PurpleStainedGlass",
1271 Self::YellowStainedGlass => "YellowStainedGlass",
1272 Self::BlueStainedGlass => "BlueStainedGlass",
1273 Self::GreenStainedGlass => "GreenStainedGlass",
1274 Self::RedStainedGlass => "RedStainedGlass",
1275 Self::MulticoloredStainedGlass => "MulticoloredStainedGlass",
1276 Self::SkeletronHand => "SkeletronHand",
1277 Self::Skull => "Skull",
1278 Self::BallaHat => "BallaHat",
1279 Self::GangstaHat => "GangstaHat",
1280 Self::SailorHat => "SailorHat",
1281 Self::EyePatch => "EyePatch",
1282 Self::SailorShirt => "SailorShirt",
1283 Self::SailorPants => "SailorPants",
1284 Self::SkeletronMask => "SkeletronMask",
1285 Self::AmethystRobe => "AmethystRobe",
1286 Self::TopazRobe => "TopazRobe",
1287 Self::SapphireRobe => "SapphireRobe",
1288 Self::EmeraldRobe => "EmeraldRobe",
1289 Self::RubyRobe => "RubyRobe",
1290 Self::DiamondRobe => "DiamondRobe",
1291 Self::WhiteTuxedoShirt => "WhiteTuxedoShirt",
1292 Self::WhiteTuxedoPants => "WhiteTuxedoPants",
1293 Self::PanicNecklace => "PanicNecklace",
1294 Self::LifeFruit => "LifeFruit",
1295 Self::LihzahrdAltar => "LihzahrdAltar",
1296 Self::LihzahrdPowerCell => "LihzahrdPowerCell",
1297 Self::Picksaw => "Picksaw",
1298 Self::HeatRay => "HeatRay",
1299 Self::StaffOfEarth => "StaffofEarth",
1300 Self::GolemFist => "GolemFist",
1301 Self::WaterChest => "WaterChest",
1302 Self::Binoculars => "Binoculars",
1303 Self::RifleScope => "RifleScope",
1304 Self::DestroyerEmblem => "DestroyerEmblem",
1305 Self::HighVelocityBullet => "HighVelocityBullet",
1306 Self::JellyfishNecklace => "JellyfishNecklace",
1307 Self::ZombieArm => "ZombieArm",
1308 Self::TheAxe => "TheAxe",
1309 Self::IceSickle => "IceSickle",
1310 Self::ClothierVoodooDoll => "ClothierVoodooDoll",
1311 Self::PoisonStaff => "PoisonStaff",
1312 Self::SlimeStaff => "SlimeStaff",
1313 Self::PoisonDart => "PoisonDart",
1314 Self::EyeSpring => "EyeSpring",
1315 Self::ToySled => "ToySled",
1316 Self::BookOfSkulls => "BookofSkulls",
1317 Self::KOCannon => "KOCannon",
1318 Self::PirateMap => "PirateMap",
1319 Self::TurtleHelmet => "TurtleHelmet",
1320 Self::TurtleScaleMail => "TurtleScaleMail",
1321 Self::TurtleLeggings => "TurtleLeggings",
1322 Self::SnowballCannon => "SnowballCannon",
1323 Self::BonePickaxe => "BonePickaxe",
1324 Self::MagicQuiver => "MagicQuiver",
1325 Self::MagmaStone => "MagmaStone",
1326 Self::ObsidianRose => "ObsidianRose",
1327 Self::Bananarang => "Bananarang",
1328 Self::ChainKnife => "ChainKnife",
1329 Self::RodOfDiscord => "RodofDiscord",
1330 Self::DeathSickle => "DeathSickle",
1331 Self::TurtleShell => "TurtleShell",
1332 Self::TissueSample => "TissueSample",
1333 Self::Vertebrae => "Vertebrae",
1334 Self::BloodySpine => "BloodySpine",
1335 Self::Ichor => "Ichor",
1336 Self::IchorTorch => "IchorTorch",
1337 Self::IchorArrow => "IchorArrow",
1338 Self::IchorBullet => "IchorBullet",
1339 Self::GoldenShower => "GoldenShower",
1340 Self::BunnyCannon => "BunnyCannon",
1341 Self::ExplosiveBunny => "ExplosiveBunny",
1342 Self::VialOfVenom => "VialofVenom",
1343 Self::FlaskOfVenom => "FlaskofVenom",
1344 Self::VenomArrow => "VenomArrow",
1345 Self::VenomBullet => "VenomBullet",
1346 Self::FireGauntlet => "FireGauntlet",
1347 Self::Cog => "Cog",
1348 Self::Confetti => "Confetti",
1349 Self::Nanites => "Nanites",
1350 Self::ExplosivePowder => "ExplosivePowder",
1351 Self::GoldDust => "GoldDust",
1352 Self::PartyBullet => "PartyBullet",
1353 Self::NanoBullet => "NanoBullet",
1354 Self::ExplodingBullet => "ExplodingBullet",
1355 Self::GoldenBullet => "GoldenBullet",
1356 Self::FlaskOfCursedFlames => "FlaskofCursedFlames",
1357 Self::FlaskOfFire => "FlaskofFire",
1358 Self::FlaskOfGold => "FlaskofGold",
1359 Self::FlaskOfIchor => "FlaskofIchor",
1360 Self::FlaskOfNanites => "FlaskofNanites",
1361 Self::FlaskOfParty => "FlaskofParty",
1362 Self::FlaskOfPoison => "FlaskofPoison",
1363 Self::EyeOfCthulhuTrophy => "EyeofCthulhuTrophy",
1364 Self::EaterOfWorldsTrophy => "EaterofWorldsTrophy",
1365 Self::BrainOfCthulhuTrophy => "BrainofCthulhuTrophy",
1366 Self::SkeletronTrophy => "SkeletronTrophy",
1367 Self::QueenBeeTrophy => "QueenBeeTrophy",
1368 Self::WallOfFleshTrophy => "WallofFleshTrophy",
1369 Self::DestroyerTrophy => "DestroyerTrophy",
1370 Self::SkeletronPrimeTrophy => "SkeletronPrimeTrophy",
1371 Self::RetinazerTrophy => "RetinazerTrophy",
1372 Self::SpazmatismTrophy => "SpazmatismTrophy",
1373 Self::PlanteraTrophy => "PlanteraTrophy",
1374 Self::GolemTrophy => "GolemTrophy",
1375 Self::BloodMoonRising => "BloodMoonRising",
1376 Self::TheHangedMan => "TheHangedMan",
1377 Self::GloryOfTheFire => "GloryoftheFire",
1378 Self::BoneWarp => "BoneWarp",
1379 Self::WallSkeleton => "WallSkeleton",
1380 Self::HangingSkeleton => "HangingSkeleton",
1381 Self::BlueSlabWall => "BlueSlabWall",
1382 Self::BlueTiledWall => "BlueTiledWall",
1383 Self::PinkSlabWall => "PinkSlabWall",
1384 Self::PinkTiledWall => "PinkTiledWall",
1385 Self::GreenSlabWall => "GreenSlabWall",
1386 Self::GreenTiledWall => "GreenTiledWall",
1387 Self::BlueBrickPlatform => "BlueBrickPlatform",
1388 Self::PinkBrickPlatform => "PinkBrickPlatform",
1389 Self::GreenBrickPlatform => "GreenBrickPlatform",
1390 Self::MetalShelf => "MetalShelf",
1391 Self::BrassShelf => "BrassShelf",
1392 Self::WoodShelf => "WoodShelf",
1393 Self::BrassLantern => "BrassLantern",
1394 Self::CagedLantern => "CagedLantern",
1395 Self::CarriageLantern => "CarriageLantern",
1396 Self::AlchemyLantern => "AlchemyLantern",
1397 Self::DiablostLamp => "DiablostLamp",
1398 Self::OilRagSconse => "OilRagSconse",
1399 Self::BlueDungeonChair => "BlueDungeonChair",
1400 Self::BlueDungeonTable => "BlueDungeonTable",
1401 Self::BlueDungeonWorkBench => "BlueDungeonWorkBench",
1402 Self::GreenDungeonChair => "GreenDungeonChair",
1403 Self::GreenDungeonTable => "GreenDungeonTable",
1404 Self::GreenDungeonWorkBench => "GreenDungeonWorkBench",
1405 Self::PinkDungeonChair => "PinkDungeonChair",
1406 Self::PinkDungeonTable => "PinkDungeonTable",
1407 Self::PinkDungeonWorkBench => "PinkDungeonWorkBench",
1408 Self::BlueDungeonCandle => "BlueDungeonCandle",
1409 Self::GreenDungeonCandle => "GreenDungeonCandle",
1410 Self::PinkDungeonCandle => "PinkDungeonCandle",
1411 Self::BlueDungeonVase => "BlueDungeonVase",
1412 Self::GreenDungeonVase => "GreenDungeonVase",
1413 Self::PinkDungeonVase => "PinkDungeonVase",
1414 Self::BlueDungeonDoor => "BlueDungeonDoor",
1415 Self::GreenDungeonDoor => "GreenDungeonDoor",
1416 Self::PinkDungeonDoor => "PinkDungeonDoor",
1417 Self::BlueDungeonBookcase => "BlueDungeonBookcase",
1418 Self::GreenDungeonBookcase => "GreenDungeonBookcase",
1419 Self::PinkDungeonBookcase => "PinkDungeonBookcase",
1420 Self::Catacomb => "Catacomb",
1421 Self::DungeonShelf => "DungeonShelf",
1422 Self::SkellingtonJSkellingsworth => "SkellingtonJSkellingsworth",
1423 Self::TheCursedMan => "TheCursedMan",
1424 Self::TheEyeSeesTheEnd => "TheEyeSeestheEnd",
1425 Self::SomethingEvilIsWatchingYou => "SomethingEvilisWatchingYou",
1426 Self::TheTwinsHaveAwoken => "TheTwinsHaveAwoken",
1427 Self::TheScreamer => "TheScreamer",
1428 Self::GoblinsPlayingPoker => "GoblinsPlayingPoker",
1429 Self::Dryadisque => "Dryadisque",
1430 Self::Sunflowers => "Sunflowers",
1431 Self::TerrarianGothic => "TerrarianGothic",
1432 Self::Beanie => "Beanie",
1433 Self::ImbuingStation => "ImbuingStation",
1434 Self::StarInABottle => "StarinaBottle",
1435 Self::EmptyBullet => "EmptyBullet",
1436 Self::Impact => "Impact",
1437 Self::PoweredByBirds => "PoweredbyBirds",
1438 Self::TheDestroyer => "TheDestroyer",
1439 Self::ThePersistencyOfEyes => "ThePersistencyofEyes",
1440 Self::UnicornCrossingTheHallows => "UnicornCrossingtheHallows",
1441 Self::GreatWave => "GreatWave",
1442 Self::StarryNight => "StarryNight",
1443 Self::GuidePicasso => "GuidePicasso",
1444 Self::TheGuardiansGaze => "TheGuardiansGaze",
1445 Self::FatherOfSomeone => "FatherofSomeone",
1446 Self::NurseLisa => "NurseLisa",
1447 Self::ShadowbeamStaff => "ShadowbeamStaff",
1448 Self::InfernoFork => "InfernoFork",
1449 Self::SpectreStaff => "SpectreStaff",
1450 Self::WoodenFence => "WoodenFence",
1451 Self::LeadFence => "LeadFence",
1452 Self::BubbleMachine => "BubbleMachine",
1453 Self::BubbleWand => "BubbleWand",
1454 Self::MarchingBonesBanner => "MarchingBonesBanner",
1455 Self::NecromanticSign => "NecromanticSign",
1456 Self::RustedCompanyStandard => "RustedCompanyStandard",
1457 Self::RaggedBrotherhoodSigil => "RaggedBrotherhoodSigil",
1458 Self::MoltenLegionFlag => "MoltenLegionFlag",
1459 Self::DiabolicSigil => "DiabolicSigil",
1460 Self::ObsidianPlatform => "ObsidianPlatform",
1461 Self::ObsidianDoor => "ObsidianDoor",
1462 Self::ObsidianChair => "ObsidianChair",
1463 Self::ObsidianTable => "ObsidianTable",
1464 Self::ObsidianWorkBench => "ObsidianWorkBench",
1465 Self::ObsidianVase => "ObsidianVase",
1466 Self::ObsidianBookcase => "ObsidianBookcase",
1467 Self::HellboundBanner => "HellboundBanner",
1468 Self::HellHammerBanner => "HellHammerBanner",
1469 Self::HelltowerBanner => "HelltowerBanner",
1470 Self::LostHopesOfManBanner => "LostHopesofManBanner",
1471 Self::ObsidianWatcherBanner => "ObsidianWatcherBanner",
1472 Self::LavaEruptsBanner => "LavaEruptsBanner",
1473 Self::BlueDungeonBed => "BlueDungeonBed",
1474 Self::GreenDungeonBed => "GreenDungeonBed",
1475 Self::PinkDungeonBed => "PinkDungeonBed",
1476 Self::ObsidianBed => "ObsidianBed",
1477 Self::Waldo => "Waldo",
1478 Self::Darkness => "Darkness",
1479 Self::DarkSoulReaper => "DarkSoulReaper",
1480 Self::Land => "Land",
1481 Self::TrappedGhost => "TrappedGhost",
1482 Self::DemonsEye => "DemonsEye",
1483 Self::FindingGold => "FindingGold",
1484 Self::FirstEncounter => "FirstEncounter",
1485 Self::GoodMorning => "GoodMorning",
1486 Self::UndergroundReward => "UndergroundReward",
1487 Self::ThroughTheWindow => "ThroughtheWindow",
1488 Self::PlaceAboveTheClouds => "PlaceAbovetheClouds",
1489 Self::DoNotStepOnTheGrass => "DoNotStepontheGrass",
1490 Self::ColdWatersInTheWhiteLand => "ColdWatersintheWhiteLand",
1491 Self::LightlessChasms => "LightlessChasms",
1492 Self::TheLandOfDeceivingLooks => "TheLandofDeceivingLooks",
1493 Self::Daylight => "Daylight",
1494 Self::SecretOfTheSands => "SecretoftheSands",
1495 Self::DeadlandComesAlive => "DeadlandComesAlive",
1496 Self::EvilPresence => "EvilPresence",
1497 Self::SkyGuardian => "SkyGuardian",
1498 Self::AmericanExplosive => "AmericanExplosive",
1499 Self::Discover => "Discover",
1500 Self::HandEarth => "HandEarth",
1501 Self::OldMiner => "OldMiner",
1502 Self::Skelehead => "Skelehead",
1503 Self::FacingTheCerebralMastermind => "FacingtheCerebralMastermind",
1504 Self::LakeOfFire => "LakeofFire",
1505 Self::TrioSuperHeroes => "TrioSuperHeroes",
1506 Self::SpectreHood => "SpectreHood",
1507 Self::SpectreRobe => "SpectreRobe",
1508 Self::SpectrePants => "SpectrePants",
1509 Self::SpectrePickaxe => "SpectrePickaxe",
1510 Self::SpectreHamaxe => "SpectreHamaxe",
1511 Self::Ectoplasm => "Ectoplasm",
1512 Self::GothicChair => "GothicChair",
1513 Self::GothicTable => "GothicTable",
1514 Self::GothicWorkBench => "GothicWorkBench",
1515 Self::GothicBookcase => "GothicBookcase",
1516 Self::PaladinsHammer => "PaladinsHammer",
1517 Self::SWATHelmet => "SWATHelmet",
1518 Self::BeeWings => "BeeWings",
1519 Self::GiantHarpyFeather => "GiantHarpyFeather",
1520 Self::BoneFeather => "BoneFeather",
1521 Self::FireFeather => "FireFeather",
1522 Self::IceFeather => "IceFeather",
1523 Self::BrokenBatWing => "BrokenBatWing",
1524 Self::TatteredBeeWing => "TatteredBeeWing",
1525 Self::LargeAmethyst => "LargeAmethyst",
1526 Self::LargeTopaz => "LargeTopaz",
1527 Self::LargeSapphire => "LargeSapphire",
1528 Self::LargeEmerald => "LargeEmerald",
1529 Self::LargeRuby => "LargeRuby",
1530 Self::LargeDiamond => "LargeDiamond",
1531 Self::JungleChest => "JungleChest",
1532 Self::CorruptionChest => "CorruptionChest",
1533 Self::CrimsonChest => "CrimsonChest",
1534 Self::HallowedChest => "HallowedChest",
1535 Self::FrozenChest => "FrozenChest",
1536 Self::JungleKey => "JungleKey",
1537 Self::CorruptionKey => "CorruptionKey",
1538 Self::CrimsonKey => "CrimsonKey",
1539 Self::HallowedKey => "HallowedKey",
1540 Self::FrozenKey => "FrozenKey",
1541 Self::ImpFace => "ImpFace",
1542 Self::OminousPresence => "OminousPresence",
1543 Self::ShiningMoon => "ShiningMoon",
1544 Self::LivingGore => "LivingGore",
1545 Self::FlowingMagma => "FlowingMagma",
1546 Self::SpectrePaintbrush => "SpectrePaintbrush",
1547 Self::SpectrePaintRoller => "SpectrePaintRoller",
1548 Self::SpectrePaintScraper => "SpectrePaintScraper",
1549 Self::ShroomiteHeadgear => "ShroomiteHeadgear",
1550 Self::ShroomiteMask => "ShroomiteMask",
1551 Self::ShroomiteHelmet => "ShroomiteHelmet",
1552 Self::ShroomiteBreastplate => "ShroomiteBreastplate",
1553 Self::ShroomiteLeggings => "ShroomiteLeggings",
1554 Self::Autohammer => "Autohammer",
1555 Self::ShroomiteBar => "ShroomiteBar",
1556 Self::Sdmg => "SDMG",
1557 Self::CenxsTiara => "CenxsTiara",
1558 Self::CenxsBreastplate => "CenxsBreastplate",
1559 Self::CenxsLeggings => "CenxsLeggings",
1560 Self::CrownosMask => "CrownosMask",
1561 Self::CrownosBreastplate => "CrownosBreastplate",
1562 Self::CrownosLeggings => "CrownosLeggings",
1563 Self::WillsHelmet => "WillsHelmet",
1564 Self::WillsBreastplate => "WillsBreastplate",
1565 Self::WillsLeggings => "WillsLeggings",
1566 Self::JimsHelmet => "JimsHelmet",
1567 Self::JimsBreastplate => "JimsBreastplate",
1568 Self::JimsLeggings => "JimsLeggings",
1569 Self::AaronsHelmet => "AaronsHelmet",
1570 Self::AaronsBreastplate => "AaronsBreastplate",
1571 Self::AaronsLeggings => "AaronsLeggings",
1572 Self::VampireKnives => "VampireKnives",
1573 Self::BrokenHeroSword => "BrokenHeroSword",
1574 Self::ScourgeOfTheCorruptor => "ScourgeoftheCorruptor",
1575 Self::StaffOfTheFrostHydra => "StaffoftheFrostHydra",
1576 Self::TheCreationOfTheGuide => "TheCreationoftheGuide",
1577 Self::TheMerchant => "TheMerchant",
1578 Self::CrownoDevoursHisLunch => "CrownoDevoursHisLunch",
1579 Self::RareEnchantment => "RareEnchantment",
1580 Self::GloriousNight => "GloriousNight",
1581 Self::SweetheartNecklace => "SweetheartNecklace",
1582 Self::FlurryBoots => "FlurryBoots",
1583 Self::DTownsHelmet => "DTownsHelmet",
1584 Self::DTownsBreastplate => "DTownsBreastplate",
1585 Self::DTownsLeggings => "DTownsLeggings",
1586 Self::DTownsWings => "DTownsWings",
1587 Self::WillsWings => "WillsWings",
1588 Self::CrownosWings => "CrownosWings",
1589 Self::CenxsWings => "CenxsWings",
1590 Self::CenxsDress => "CenxsDress",
1591 Self::CenxsDressPants => "CenxsDressPants",
1592 Self::PalladiumColumn => "PalladiumColumn",
1593 Self::PalladiumColumnWall => "PalladiumColumnWall",
1594 Self::BubblegumBlock => "BubblegumBlock",
1595 Self::BubblegumBlockWall => "BubblegumBlockWall",
1596 Self::TitanstoneBlock => "TitanstoneBlock",
1597 Self::TitanstoneBlockWall => "TitanstoneBlockWall",
1598 Self::MagicCuffs => "MagicCuffs",
1599 Self::MusicBoxSnow => "MusicBoxSnow",
1600 Self::MusicBoxSpace => "MusicBoxSpace",
1601 Self::MusicBoxCrimson => "MusicBoxCrimson",
1602 Self::MusicBoxBoss4 => "MusicBoxBoss4",
1603 Self::MusicBoxAltOverworldDay => "MusicBoxAltOverworldDay",
1604 Self::MusicBoxRain => "MusicBoxRain",
1605 Self::MusicBoxIce => "MusicBoxIce",
1606 Self::MusicBoxDesert => "MusicBoxDesert",
1607 Self::MusicBoxOcean => "MusicBoxOcean",
1608 Self::MusicBoxDungeon => "MusicBoxDungeon",
1609 Self::MusicBoxPlantera => "MusicBoxPlantera",
1610 Self::MusicBoxBoss5 => "MusicBoxBoss5",
1611 Self::MusicBoxTemple => "MusicBoxTemple",
1612 Self::MusicBoxEclipse => "MusicBoxEclipse",
1613 Self::MusicBoxMushrooms => "MusicBoxMushrooms",
1614 Self::ButterflyDust => "ButterflyDust",
1615 Self::AnkhCharm => "AnkhCharm",
1616 Self::AnkhShield => "AnkhShield",
1617 Self::BlueFlare => "BlueFlare",
1618 Self::AnglerFishBanner => "AnglerFishBanner",
1619 Self::AngryNimbusBanner => "AngryNimbusBanner",
1620 Self::AnomuraFungusBanner => "AnomuraFungusBanner",
1621 Self::AntlionBanner => "AntlionBanner",
1622 Self::ArapaimaBanner => "ArapaimaBanner",
1623 Self::ArmoredSkeletonBanner => "ArmoredSkeletonBanner",
1624 Self::BatBanner => "BatBanner",
1625 Self::BirdBanner => "BirdBanner",
1626 Self::BlackRecluseBanner => "BlackRecluseBanner",
1627 Self::BloodFeederBanner => "BloodFeederBanner",
1628 Self::BloodJellyBanner => "BloodJellyBanner",
1629 Self::BloodCrawlerBanner => "BloodCrawlerBanner",
1630 Self::BoneSerpentBanner => "BoneSerpentBanner",
1631 Self::BunnyBanner => "BunnyBanner",
1632 Self::ChaosElementalBanner => "ChaosElementalBanner",
1633 Self::MimicBanner => "MimicBanner",
1634 Self::ClownBanner => "ClownBanner",
1635 Self::CorruptBunnyBanner => "CorruptBunnyBanner",
1636 Self::CorruptGoldfishBanner => "CorruptGoldfishBanner",
1637 Self::CrabBanner => "CrabBanner",
1638 Self::CrimeraBanner => "CrimeraBanner",
1639 Self::CrimsonAxeBanner => "CrimsonAxeBanner",
1640 Self::CursedHammerBanner => "CursedHammerBanner",
1641 Self::DemonBanner => "DemonBanner",
1642 Self::DemonEyeBanner => "DemonEyeBanner",
1643 Self::DerplingBanner => "DerplingBanner",
1644 Self::EaterOfSoulsBanner => "EaterofSoulsBanner",
1645 Self::EnchantedSwordBanner => "EnchantedSwordBanner",
1646 Self::ZombieEskimoBanner => "ZombieEskimoBanner",
1647 Self::FaceMonsterBanner => "FaceMonsterBanner",
1648 Self::FloatyGrossBanner => "FloatyGrossBanner",
1649 Self::FlyingFishBanner => "FlyingFishBanner",
1650 Self::FlyingSnakeBanner => "FlyingSnakeBanner",
1651 Self::FrankensteinBanner => "FrankensteinBanner",
1652 Self::FungiBulbBanner => "FungiBulbBanner",
1653 Self::FungoFishBanner => "FungoFishBanner",
1654 Self::GastropodBanner => "GastropodBanner",
1655 Self::GoblinThiefBanner => "GoblinThiefBanner",
1656 Self::GoblinSorcererBanner => "GoblinSorcererBanner",
1657 Self::GoblinPeonBanner => "GoblinPeonBanner",
1658 Self::GoblinScoutBanner => "GoblinScoutBanner",
1659 Self::GoblinWarriorBanner => "GoblinWarriorBanner",
1660 Self::GoldfishBanner => "GoldfishBanner",
1661 Self::HarpyBanner => "HarpyBanner",
1662 Self::HellbatBanner => "HellbatBanner",
1663 Self::HerplingBanner => "HerplingBanner",
1664 Self::HornetBanner => "HornetBanner",
1665 Self::IceElementalBanner => "IceElementalBanner",
1666 Self::IcyMermanBanner => "IcyMermanBanner",
1667 Self::FireImpBanner => "FireImpBanner",
1668 Self::JellyfishBanner => "JellyfishBanner",
1669 Self::JungleCreeperBanner => "JungleCreeperBanner",
1670 Self::LihzahrdBanner => "LihzahrdBanner",
1671 Self::ManEaterBanner => "ManEaterBanner",
1672 Self::MeteorHeadBanner => "MeteorHeadBanner",
1673 Self::MothBanner => "MothBanner",
1674 Self::MummyBanner => "MummyBanner",
1675 Self::MushiLadybugBanner => "MushiLadybugBanner",
1676 Self::ParrotBanner => "ParrotBanner",
1677 Self::PigronBanner => "PigronBanner",
1678 Self::PiranhaBanner => "PiranhaBanner",
1679 Self::PirateBanner => "PirateBanner",
1680 Self::PixieBanner => "PixieBanner",
1681 Self::RaincoatZombieBanner => "RaincoatZombieBanner",
1682 Self::ReaperBanner => "ReaperBanner",
1683 Self::SharkBanner => "SharkBanner",
1684 Self::SkeletonBanner => "SkeletonBanner",
1685 Self::SkeletonMageBanner => "SkeletonMageBanner",
1686 Self::SlimeBanner => "SlimeBanner",
1687 Self::SnowFlinxBanner => "SnowFlinxBanner",
1688 Self::SpiderBanner => "SpiderBanner",
1689 Self::SporeZombieBanner => "SporeZombieBanner",
1690 Self::SwampThingBanner => "SwampThingBanner",
1691 Self::TortoiseBanner => "TortoiseBanner",
1692 Self::ToxicSludgeBanner => "ToxicSludgeBanner",
1693 Self::UmbrellaSlimeBanner => "UmbrellaSlimeBanner",
1694 Self::UnicornBanner => "UnicornBanner",
1695 Self::VampireBanner => "VampireBanner",
1696 Self::VultureBanner => "VultureBanner",
1697 Self::NypmhBanner => "NypmhBanner",
1698 Self::WerewolfBanner => "WerewolfBanner",
1699 Self::WolfBanner => "WolfBanner",
1700 Self::WorldFeederBanner => "WorldFeederBanner",
1701 Self::WormBanner => "WormBanner",
1702 Self::WraithBanner => "WraithBanner",
1703 Self::WyvernBanner => "WyvernBanner",
1704 Self::ZombieBanner => "ZombieBanner",
1705 Self::GlassPlatform => "GlassPlatform",
1706 Self::GlassChair => "GlassChair",
1707 Self::GoldenChair => "GoldenChair",
1708 Self::GoldenToilet => "GoldenToilet",
1709 Self::BarStool => "BarStool",
1710 Self::HoneyChair => "HoneyChair",
1711 Self::SteampunkChair => "SteampunkChair",
1712 Self::GlassDoor => "GlassDoor",
1713 Self::GoldenDoor => "GoldenDoor",
1714 Self::HoneyDoor => "HoneyDoor",
1715 Self::SteampunkDoor => "SteampunkDoor",
1716 Self::GlassTable => "GlassTable",
1717 Self::BanquetTable => "BanquetTable",
1718 Self::Bar => "Bar",
1719 Self::GoldenTable => "GoldenTable",
1720 Self::HoneyTable => "HoneyTable",
1721 Self::SteampunkTable => "SteampunkTable",
1722 Self::GlassBed => "GlassBed",
1723 Self::GoldenBed => "GoldenBed",
1724 Self::HoneyBed => "HoneyBed",
1725 Self::SteampunkBed => "SteampunkBed",
1726 Self::LivingWoodWall => "LivingWoodWall",
1727 Self::FartInAJar => "FartinaJar",
1728 Self::Pumpkin => "Pumpkin",
1729 Self::PumpkinWall => "PumpkinWall",
1730 Self::Hay => "Hay",
1731 Self::HayWall => "HayWall",
1732 Self::SpookyWood => "SpookyWood",
1733 Self::SpookyWoodWall => "SpookyWoodWall",
1734 Self::PumpkinHelmet => "PumpkinHelmet",
1735 Self::PumpkinBreastplate => "PumpkinBreastplate",
1736 Self::PumpkinLeggings => "PumpkinLeggings",
1737 Self::CandyApple => "CandyApple",
1738 Self::SoulCake => "SoulCake",
1739 Self::NurseHat => "NurseHat",
1740 Self::NurseShirt => "NurseShirt",
1741 Self::NursePants => "NursePants",
1742 Self::WizardsHat => "WizardsHat",
1743 Self::GuyFawkesMask => "GuyFawkesMask",
1744 Self::DyeTraderRobe => "DyeTraderRobe",
1745 Self::SteampunkGoggles => "SteampunkGoggles",
1746 Self::CyborgHelmet => "CyborgHelmet",
1747 Self::CyborgShirt => "CyborgShirt",
1748 Self::CyborgPants => "CyborgPants",
1749 Self::CreeperMask => "CreeperMask",
1750 Self::CreeperShirt => "CreeperShirt",
1751 Self::CreeperPants => "CreeperPants",
1752 Self::CatMask => "CatMask",
1753 Self::CatShirt => "CatShirt",
1754 Self::CatPants => "CatPants",
1755 Self::GhostMask => "GhostMask",
1756 Self::GhostShirt => "GhostShirt",
1757 Self::PumpkinMask => "PumpkinMask",
1758 Self::PumpkinShirt => "PumpkinShirt",
1759 Self::PumpkinPants => "PumpkinPants",
1760 Self::RobotMask => "RobotMask",
1761 Self::RobotShirt => "RobotShirt",
1762 Self::RobotPants => "RobotPants",
1763 Self::UnicornMask => "UnicornMask",
1764 Self::UnicornShirt => "UnicornShirt",
1765 Self::UnicornPants => "UnicornPants",
1766 Self::VampireMask => "VampireMask",
1767 Self::VampireShirt => "VampireShirt",
1768 Self::VampirePants => "VampirePants",
1769 Self::WitchHat => "WitchHat",
1770 Self::LeprechaunHat => "LeprechaunHat",
1771 Self::LeprechaunShirt => "LeprechaunShirt",
1772 Self::LeprechaunPants => "LeprechaunPants",
1773 Self::PixieShirt => "PixieShirt",
1774 Self::PixiePants => "PixiePants",
1775 Self::PrincessHat => "PrincessHat",
1776 Self::PrincessDressNew => "PrincessDressNew",
1777 Self::GoodieBag => "GoodieBag",
1778 Self::WitchDress => "WitchDress",
1779 Self::WitchBoots => "WitchBoots",
1780 Self::BrideOfFrankensteinMask => "BrideofFrankensteinMask",
1781 Self::BrideOfFrankensteinDress => "BrideofFrankensteinDress",
1782 Self::KarateTortoiseMask => "KarateTortoiseMask",
1783 Self::KarateTortoiseShirt => "KarateTortoiseShirt",
1784 Self::KarateTortoisePants => "KarateTortoisePants",
1785 Self::CandyCornRifle => "CandyCornRifle",
1786 Self::CandyCorn => "CandyCorn",
1787 Self::JackOLanternLauncher => "JackOLanternLauncher",
1788 Self::ExplosiveJackOLantern => "ExplosiveJackOLantern",
1789 Self::Sickle => "Sickle",
1790 Self::PumpkinPie => "PumpkinPie",
1791 Self::ScarecrowHat => "ScarecrowHat",
1792 Self::ScarecrowShirt => "ScarecrowShirt",
1793 Self::ScarecrowPants => "ScarecrowPants",
1794 Self::Cauldron => "Cauldron",
1795 Self::PumpkinChair => "PumpkinChair",
1796 Self::PumpkinDoor => "PumpkinDoor",
1797 Self::PumpkinTable => "PumpkinTable",
1798 Self::PumpkinWorkBench => "PumpkinWorkBench",
1799 Self::PumpkinPlatform => "PumpkinPlatform",
1800 Self::TatteredFairyWings => "TatteredFairyWings",
1801 Self::SpiderEgg => "SpiderEgg",
1802 Self::MagicalPumpkinSeed => "MagicalPumpkinSeed",
1803 Self::BatHook => "BatHook",
1804 Self::BatScepter => "BatScepter",
1805 Self::RavenStaff => "RavenStaff",
1806 Self::JungleKeyMold => "JungleKeyMold",
1807 Self::CorruptionKeyMold => "CorruptionKeyMold",
1808 Self::CrimsonKeyMold => "CrimsonKeyMold",
1809 Self::HallowedKeyMold => "HallowedKeyMold",
1810 Self::FrozenKeyMold => "FrozenKeyMold",
1811 Self::HangingJackOLantern => "HangingJackOLantern",
1812 Self::RottenEgg => "RottenEgg",
1813 Self::UnluckyYarn => "UnluckyYarn",
1814 Self::BlackFairyDust => "BlackFairyDust",
1815 Self::Jackelier => "Jackelier",
1816 Self::JackOLantern => "JackOLantern",
1817 Self::SpookyChair => "SpookyChair",
1818 Self::SpookyDoor => "SpookyDoor",
1819 Self::SpookyTable => "SpookyTable",
1820 Self::SpookyWorkBench => "SpookyWorkBench",
1821 Self::SpookyPlatform => "SpookyPlatform",
1822 Self::ReaperHood => "ReaperHood",
1823 Self::ReaperRobe => "ReaperRobe",
1824 Self::FoxMask => "FoxMask",
1825 Self::FoxShirt => "FoxShirt",
1826 Self::FoxPants => "FoxPants",
1827 Self::CatEars => "CatEars",
1828 Self::BloodyMachete => "BloodyMachete",
1829 Self::TheHorsemansBlade => "TheHorsemansBlade",
1830 Self::BladedGlove => "BladedGlove",
1831 Self::PumpkinSeed => "PumpkinSeed",
1832 Self::SpookyHook => "SpookyHook",
1833 Self::SpookyWings => "SpookyWings",
1834 Self::SpookyTwig => "SpookyTwig",
1835 Self::SpookyHelmet => "SpookyHelmet",
1836 Self::SpookyBreastplate => "SpookyBreastplate",
1837 Self::SpookyLeggings => "SpookyLeggings",
1838 Self::StakeLauncher => "StakeLauncher",
1839 Self::Stake => "Stake",
1840 Self::CursedSapling => "CursedSapling",
1841 Self::SpaceCreatureMask => "SpaceCreatureMask",
1842 Self::SpaceCreatureShirt => "SpaceCreatureShirt",
1843 Self::SpaceCreaturePants => "SpaceCreaturePants",
1844 Self::WolfMask => "WolfMask",
1845 Self::WolfShirt => "WolfShirt",
1846 Self::WolfPants => "WolfPants",
1847 Self::PumpkinMoonMedallion => "PumpkinMoonMedallion",
1848 Self::NecromanticScroll => "NecromanticScroll",
1849 Self::JackingSkeletron => "JackingSkeletron",
1850 Self::BitterHarvest => "BitterHarvest",
1851 Self::BloodMoonCountess => "BloodMoonCountess",
1852 Self::HallowsEve => "HallowsEve",
1853 Self::MorbidCuriosity => "MorbidCuriosity",
1854 Self::TreasureHunterShirt => "TreasureHunterShirt",
1855 Self::TreasureHunterPants => "TreasureHunterPants",
1856 Self::DryadCoverings => "DryadCoverings",
1857 Self::DryadLoincloth => "DryadLoincloth",
1858 Self::MourningWoodTrophy => "MourningWoodTrophy",
1859 Self::PumpkingTrophy => "PumpkingTrophy",
1860 Self::JackOLanternMask => "JackOLanternMask",
1861 Self::SniperScope => "SniperScope",
1862 Self::HeartLantern => "HeartLantern",
1863 Self::JellyfishDivingGear => "JellyfishDivingGear",
1864 Self::ArcticDivingGear => "ArcticDivingGear",
1865 Self::FrostsparkBoots => "FrostsparkBoots",
1866 Self::FartInABalloon => "FartInABalloon",
1867 Self::PapyrusScarab => "PapyrusScarab",
1868 Self::CelestialStone => "CelestialStone",
1869 Self::Hoverboard => "Hoverboard",
1870 Self::CandyCane => "CandyCane",
1871 Self::SugarPlum => "SugarPlum",
1872 Self::Present => "Present",
1873 Self::RedRyder => "RedRyder",
1874 Self::FestiveWings => "FestiveWings",
1875 Self::PineTreeBlock => "PineTreeBlock",
1876 Self::ChristmasTree => "ChristmasTree",
1877 Self::StarTopper1 => "StarTopper1",
1878 Self::StarTopper2 => "StarTopper2",
1879 Self::StarTopper3 => "StarTopper3",
1880 Self::BowTopper => "BowTopper",
1881 Self::WhiteGarland => "WhiteGarland",
1882 Self::WhiteAndRedGarland => "WhiteAndRedGarland",
1883 Self::RedGarland => "RedGardland",
1884 Self::RedAndGreenGarland => "RedAndGreenGardland",
1885 Self::GreenGarland => "GreenGardland",
1886 Self::GreenAndWhiteGarland => "GreenAndWhiteGarland",
1887 Self::MulticoloredBulb => "MulticoloredBulb",
1888 Self::RedBulb => "RedBulb",
1889 Self::YellowBulb => "YellowBulb",
1890 Self::GreenBulb => "GreenBulb",
1891 Self::RedAndGreenBulb => "RedAndGreenBulb",
1892 Self::YellowAndGreenBulb => "YellowAndGreenBulb",
1893 Self::RedAndYellowBulb => "RedAndYellowBulb",
1894 Self::WhiteBulb => "WhiteBulb",
1895 Self::WhiteAndRedBulb => "WhiteAndRedBulb",
1896 Self::WhiteAndYellowBulb => "WhiteAndYellowBulb",
1897 Self::WhiteAndGreenBulb => "WhiteAndGreenBulb",
1898 Self::MulticoloredLights => "MulticoloredLights",
1899 Self::RedLights => "RedLights",
1900 Self::GreenLights => "GreenLights",
1901 Self::BlueLights => "BlueLights",
1902 Self::YellowLights => "YellowLights",
1903 Self::RedAndYellowLights => "RedAndYellowLights",
1904 Self::RedAndGreenLights => "RedAndGreenLights",
1905 Self::YellowAndGreenLights => "YellowAndGreenLights",
1906 Self::BlueAndGreenLights => "BlueAndGreenLights",
1907 Self::RedAndBlueLights => "RedAndBlueLights",
1908 Self::BlueAndYellowLights => "BlueAndYellowLights",
1909 Self::GiantBow => "GiantBow",
1910 Self::ReindeerAntlers => "ReindeerAntlers",
1911 Self::Holly => "Holly",
1912 Self::CandyCaneSword => "CandyCaneSword",
1913 Self::ElfMelter => "ElfMelter",
1914 Self::ChristmasPudding => "ChristmasPudding",
1915 Self::Eggnog => "Eggnog",
1916 Self::StarAnise => "StarAnise",
1917 Self::ReindeerBells => "ReindeerBells",
1918 Self::CandyCaneHook => "CandyCaneHook",
1919 Self::ChristmasHook => "ChristmasHook",
1920 Self::CnadyCanePickaxe => "CnadyCanePickaxe",
1921 Self::FruitcakeChakram => "FruitcakeChakram",
1922 Self::SugarCookie => "SugarCookie",
1923 Self::GingerbreadCookie => "GingerbreadCookie",
1924 Self::HandWarmer => "HandWarmer",
1925 Self::Coal => "Coal",
1926 Self::Toolbox => "Toolbox",
1927 Self::PineDoor => "PineDoor",
1928 Self::PineChair => "PineChair",
1929 Self::PineTable => "PineTable",
1930 Self::DogWhistle => "DogWhistle",
1931 Self::ChristmasTreeSword => "ChristmasTreeSword",
1932 Self::ChainGun => "ChainGun",
1933 Self::Razorpine => "Razorpine",
1934 Self::BlizzardStaff => "BlizzardStaff",
1935 Self::MrsClauseHat => "MrsClauseHat",
1936 Self::MrsClauseShirt => "MrsClauseShirt",
1937 Self::MrsClauseHeels => "MrsClauseHeels",
1938 Self::ParkaHood => "ParkaHood",
1939 Self::ParkaCoat => "ParkaCoat",
1940 Self::ParkaPants => "ParkaPants",
1941 Self::SnowHat => "SnowHat",
1942 Self::UglySweater => "UglySweater",
1943 Self::TreeMask => "TreeMask",
1944 Self::TreeShirt => "TreeShirt",
1945 Self::TreeTrunks => "TreeTrunks",
1946 Self::ElfHat => "ElfHat",
1947 Self::ElfShirt => "ElfShirt",
1948 Self::ElfPants => "ElfPants",
1949 Self::SnowmanCannon => "SnowmanCannon",
1950 Self::NorthPole => "NorthPole",
1951 Self::ChristmasTreeWallpaper => "ChristmasTreeWallpaper",
1952 Self::OrnamentWallpaper => "OrnamentWallpaper",
1953 Self::CandyCaneWallpaper => "CandyCaneWallpaper",
1954 Self::FestiveWallpaper => "FestiveWallpaper",
1955 Self::StarsWallpaper => "StarsWallpaper",
1956 Self::SquigglesWallpaper => "SquigglesWallpaper",
1957 Self::SnowflakeWallpaper => "SnowflakeWallpaper",
1958 Self::KrampusHornWallpaper => "KrampusHornWallpaper",
1959 Self::BluegreenWallpaper => "BluegreenWallpaper",
1960 Self::GrinchFingerWallpaper => "GrinchFingerWallpaper",
1961 Self::NaughtyPresent => "NaughtyPresent",
1962 Self::BabyGrinchMischiefWhistle => "BabyGrinchMischiefWhistle",
1963 Self::IceQueenTrophy => "IceQueenTrophy",
1964 Self::SantaNK1Trophy => "SantaNK1Trophy",
1965 Self::EverscreamTrophy => "EverscreamTrophy",
1966 Self::MusicBoxPumpkinMoon => "MusicBoxPumpkinMoon",
1967 Self::MusicBoxAltUnderground => "MusicBoxAltUnderground",
1968 Self::MusicBoxFrostMoon => "MusicBoxFrostMoon",
1969 Self::BrownPaint => "BrownPaint",
1970 Self::ShadowPaint => "ShadowPaint",
1971 Self::NegativePaint => "NegativePaint",
1972 Self::TeamDye => "TeamDye",
1973 Self::AmethystGemsparkBlock => "AmethystGemsparkBlock",
1974 Self::TopazGemsparkBlock => "TopazGemsparkBlock",
1975 Self::SapphireGemsparkBlock => "SapphireGemsparkBlock",
1976 Self::EmeraldGemsparkBlock => "EmeraldGemsparkBlock",
1977 Self::RubyGemsparkBlock => "RubyGemsparkBlock",
1978 Self::DiamondGemsparkBlock => "DiamondGemsparkBlock",
1979 Self::AmberGemsparkBlock => "AmberGemsparkBlock",
1980 Self::LifeHairDye => "LifeHairDye",
1981 Self::ManaHairDye => "ManaHairDye",
1982 Self::DepthHairDye => "DepthHairDye",
1983 Self::MoneyHairDye => "MoneyHairDye",
1984 Self::TimeHairDye => "TimeHairDye",
1985 Self::TeamHairDye => "TeamHairDye",
1986 Self::BiomeHairDye => "BiomeHairDye",
1987 Self::PartyHairDye => "PartyHairDye",
1988 Self::RainbowHairDye => "RainbowHairDye",
1989 Self::SpeedHairDye => "SpeedHairDye",
1990 Self::AngelHalo => "AngelHalo",
1991 Self::Fez => "Fez",
1992 Self::Womannequin => "Womannquin",
1993 Self::HairDyeRemover => "HairDyeRemover",
1994 Self::BugNet => "BugNet",
1995 Self::Firefly => "Firefly",
1996 Self::FireflyInABottle => "FireflyinaBottle",
1997 Self::MonarchButterfly => "MonarchButterfly",
1998 Self::PurpleEmperorButterfly => "PurpleEmperorButterfly",
1999 Self::RedAdmiralButterfly => "RedAdmiralButterfly",
2000 Self::UlyssesButterfly => "UlyssesButterfly",
2001 Self::SulphurButterfly => "SulphurButterfly",
2002 Self::TreeNymphButterfly => "TreeNymphButterfly",
2003 Self::ZebraSwallowtailButterfly => "ZebraSwallowtailButterfly",
2004 Self::JuliaButterfly => "JuliaButterfly",
2005 Self::Worm => "Worm",
2006 Self::Mouse => "Mouse",
2007 Self::LightningBug => "LightningBug",
2008 Self::LightningBugInABottle => "LightningBuginaBottle",
2009 Self::Snail => "Snail",
2010 Self::GlowingSnail => "GlowingSnail",
2011 Self::FancyGreyWallpaper => "FancyGreyWallpaper",
2012 Self::IceFloeWallpaper => "IceFloeWallpaper",
2013 Self::MusicWallpaper => "MusicWallpaper",
2014 Self::PurpleRainWallpaper => "PurpleRainWallpaper",
2015 Self::RainbowWallpaper => "RainbowWallpaper",
2016 Self::SparkleStoneWallpaper => "SparkleStoneWallpaper",
2017 Self::StarlitHeavenWallpaper => "StarlitHeavenWallpaper",
2018 Self::Bird => "Bird",
2019 Self::BlueJay => "BlueJay",
2020 Self::Cardinal => "Cardinal",
2021 Self::Squirrel => "Squirrel",
2022 Self::Bunny => "Bunny",
2023 Self::CactusBookcase => "CactusBookcase",
2024 Self::EbonwoodBookcase => "EbonwoodBookcase",
2025 Self::FleshBookcase => "FleshBookcase",
2026 Self::HoneyBookcase => "HoneyBookcase",
2027 Self::SteampunkBookcase => "SteampunkBookcase",
2028 Self::GlassBookcase => "GlassBookcase",
2029 Self::RichMahoganyBookcase => "RichMahoganyBookcase",
2030 Self::PearlwoodBookcase => "PearlwoodBookcase",
2031 Self::SpookyBookcase => "SpookyBookcase",
2032 Self::SkywareBookcase => "SkywareBookcase",
2033 Self::LihzahrdBookcase => "LihzahrdBookcase",
2034 Self::FrozenBookcase => "FrozenBookcase",
2035 Self::CactusLantern => "CactusLantern",
2036 Self::EbonwoodLantern => "EbonwoodLantern",
2037 Self::FleshLantern => "FleshLantern",
2038 Self::HoneyLantern => "HoneyLantern",
2039 Self::SteampunkLantern => "SteampunkLantern",
2040 Self::GlassLantern => "GlassLantern",
2041 Self::RichMahoganyLantern => "RichMahoganyLantern",
2042 Self::PearlwoodLantern => "PearlwoodLantern",
2043 Self::FrozenLantern => "FrozenLantern",
2044 Self::LihzahrdLantern => "LihzahrdLantern",
2045 Self::SkywareLantern => "SkywareLantern",
2046 Self::SpookyLantern => "SpookyLantern",
2047 Self::FrozenDoor => "FrozenDoor",
2048 Self::CactusCandle => "CactusCandle",
2049 Self::EbonwoodCandle => "EbonwoodCandle",
2050 Self::FleshCandle => "FleshCandle",
2051 Self::GlassCandle => "GlassCandle",
2052 Self::FrozenCandle => "FrozenCandle",
2053 Self::RichMahoganyCandle => "RichMahoganyCandle",
2054 Self::PearlwoodCandle => "PearlwoodCandle",
2055 Self::LihzahrdCandle => "LihzahrdCandle",
2056 Self::SkywareCandle => "SkywareCandle",
2057 Self::PumpkinCandle => "PumpkinCandle",
2058 Self::CactusChandelier => "CactusChandelier",
2059 Self::EbonwoodChandelier => "EbonwoodChandelier",
2060 Self::FleshChandelier => "FleshChandelier",
2061 Self::HoneyChandelier => "HoneyChandelier",
2062 Self::FrozenChandelier => "FrozenChandelier",
2063 Self::RichMahoganyChandelier => "RichMahoganyChandelier",
2064 Self::PearlwoodChandelier => "PearlwoodChandelier",
2065 Self::LihzahrdChandelier => "LihzahrdChandelier",
2066 Self::SkywareChandelier => "SkywareChandelier",
2067 Self::SpookyChandelier => "SpookyChandelier",
2068 Self::GlassChandelier => "GlassChandelier",
2069 Self::CactusBed => "CactusBed",
2070 Self::FleshBed => "FleshBed",
2071 Self::FrozenBed => "FrozenBed",
2072 Self::LihzahrdBed => "LihzahrdBed",
2073 Self::SkywareBed => "SkywareBed",
2074 Self::SpookyBed => "SpookyBed",
2075 Self::CactusBathtub => "CactusBathtub",
2076 Self::EbonwoodBathtub => "EbonwoodBathtub",
2077 Self::FleshBathtub => "FleshBathtub",
2078 Self::GlassBathtub => "GlassBathtub",
2079 Self::FrozenBathtub => "FrozenBathtub",
2080 Self::RichMahoganyBathtub => "RichMahoganyBathtub",
2081 Self::PearlwoodBathtub => "PearlwoodBathtub",
2082 Self::LihzahrdBathtub => "LihzahrdBathtub",
2083 Self::SkywareBathtub => "SkywareBathtub",
2084 Self::SpookyBathtub => "SpookyBathtub",
2085 Self::CactusLamp => "CactusLamp",
2086 Self::EbonwoodLamp => "EbonwoodLamp",
2087 Self::FleshLamp => "FleshLamp",
2088 Self::GlassLamp => "GlassLamp",
2089 Self::FrozenLamp => "FrozenLamp",
2090 Self::RichMahoganyLamp => "RichMahoganyLamp",
2091 Self::PearlwoodLamp => "PearlwoodLamp",
2092 Self::LihzahrdLamp => "LihzahrdLamp",
2093 Self::SkywareLamp => "SkywareLamp",
2094 Self::SpookyLamp => "SpookyLamp",
2095 Self::CactusCandelabra => "CactusCandelabra",
2096 Self::EbonwoodCandelabra => "EbonwoodCandelabra",
2097 Self::FleshCandelabra => "FleshCandelabra",
2098 Self::HoneyCandelabra => "HoneyCandelabra",
2099 Self::SteampunkCandelabra => "SteampunkCandelabra",
2100 Self::GlassCandelabra => "GlassCandelabra",
2101 Self::RichMahoganyCandelabra => "RichMahoganyCandelabra",
2102 Self::PearlwoodCandelabra => "PearlwoodCandelabra",
2103 Self::FrozenCandelabra => "FrozenCandelabra",
2104 Self::LihzahrdCandelabra => "LihzahrdCandelabra",
2105 Self::SkywareCandelabra => "SkywareCandelabra",
2106 Self::SpookyCandelabra => "SpookyCandelabra",
2107 Self::BrainMask => "BrainMask",
2108 Self::FleshMask => "FleshMask",
2109 Self::TwinMask => "TwinMask",
2110 Self::SkeletronPrimeMask => "SkeletronPrimeMask",
2111 Self::BeeMask => "BeeMask",
2112 Self::PlanteraMask => "PlanteraMask",
2113 Self::GolemMask => "GolemMask",
2114 Self::EaterMask => "EaterMask",
2115 Self::EyeMask => "EyeMask",
2116 Self::DestroyerMask => "DestroyerMask",
2117 Self::BlacksmithRack => "BlacksmithRack",
2118 Self::CarpentryRack => "CarpentryRack",
2119 Self::HelmetRack => "HelmetRack",
2120 Self::SpearRack => "SpearRack",
2121 Self::SwordRack => "SwordRack",
2122 Self::StoneSlab => "StoneSlab",
2123 Self::SandstoneSlab => "SandstoneSlab",
2124 Self::Frog => "Frog",
2125 Self::MallardDuck => "MallardDuck",
2126 Self::Duck => "Duck",
2127 Self::HoneyBathtub => "HoneyBathtub",
2128 Self::SteampunkBathtub => "SteampunkBathtub",
2129 Self::LivingWoodBathtub => "LivingWoodBathtub",
2130 Self::ShadewoodBathtub => "ShadewoodBathtub",
2131 Self::BoneBathtub => "BoneBathtub",
2132 Self::HoneyLamp => "HoneyLamp",
2133 Self::SteampunkLamp => "SteampunkLamp",
2134 Self::LivingWoodLamp => "LivingWoodLamp",
2135 Self::ShadewoodLamp => "ShadewoodLamp",
2136 Self::GoldenLamp => "GoldenLamp",
2137 Self::BoneLamp => "BoneLamp",
2138 Self::LivingWoodBookcase => "LivingWoodBookcase",
2139 Self::ShadewoodBookcase => "ShadewoodBookcase",
2140 Self::GoldenBookcase => "GoldenBookcase",
2141 Self::BoneBookcase => "BoneBookcase",
2142 Self::LivingWoodBed => "LivingWoodBed",
2143 Self::BoneBed => "BoneBed",
2144 Self::LivingWoodChandelier => "LivingWoodChandelier",
2145 Self::ShadewoodChandelier => "ShadewoodChandelier",
2146 Self::GoldenChandelier => "GoldenChandelier",
2147 Self::BoneChandelier => "BoneChandelier",
2148 Self::LivingWoodLantern => "LivingWoodLantern",
2149 Self::ShadewoodLantern => "ShadewoodLantern",
2150 Self::GoldenLantern => "GoldenLantern",
2151 Self::BoneLantern => "BoneLantern",
2152 Self::LivingWoodCandelabra => "LivingWoodCandelabra",
2153 Self::ShadewoodCandelabra => "ShadewoodCandelabra",
2154 Self::GoldenCandelabra => "GoldenCandelabra",
2155 Self::BoneCandelabra => "BoneCandelabra",
2156 Self::LivingWoodCandle => "LivingWoodCandle",
2157 Self::ShadewoodCandle => "ShadewoodCandle",
2158 Self::GoldenCandle => "GoldenCandle",
2159 Self::BlackScorpion => "BlackScorpion",
2160 Self::Scorpion => "Scorpion",
2161 Self::BubbleWallpaper => "BubbleWallpaper",
2162 Self::CopperPipeWallpaper => "CopperPipeWallpaper",
2163 Self::DuckyWallpaper => "DuckyWallpaper",
2164 Self::FrostCore => "FrostCore",
2165 Self::BunnyCage => "BunnyCage",
2166 Self::SquirrelCage => "SquirrelCage",
2167 Self::MallardDuckCage => "MallardDuckCage",
2168 Self::DuckCage => "DuckCage",
2169 Self::BirdCage => "BirdCage",
2170 Self::BlueJayCage => "BlueJayCage",
2171 Self::CardinalCage => "CardinalCage",
2172 Self::WaterfallWall => "WaterfallWall",
2173 Self::LavafallWall => "LavafallWall",
2174 Self::CrimsonSeeds => "CrimsonSeeds",
2175 Self::HeavyWorkBench => "HeavyWorkBench",
2176 Self::CopperPlating => "CopperPlating",
2177 Self::SnailCage => "SnailCage",
2178 Self::GlowingSnailCage => "GlowingSnailCage",
2179 Self::ShroomiteDiggingClaw => "ShroomiteDiggingClaw",
2180 Self::AmmoBox => "AmmoBox",
2181 Self::MonarchButterflyJar => "MonarchButterflyJar",
2182 Self::PurpleEmperorButterflyJar => "PurpleEmperorButterflyJar",
2183 Self::RedAdmiralButterflyJar => "RedAdmiralButterflyJar",
2184 Self::UlyssesButterflyJar => "UlyssesButterflyJar",
2185 Self::SulphurButterflyJar => "SulphurButterflyJar",
2186 Self::TreeNymphButterflyJar => "TreeNymphButterflyJar",
2187 Self::ZebraSwallowtailButterflyJar => "ZebraSwallowtailButterflyJar",
2188 Self::JuliaButterflyJar => "JuliaButterflyJar",
2189 Self::ScorpionCage => "ScorpionCage",
2190 Self::BlackScorpionCage => "BlackScorpionCage",
2191 Self::VenomStaff => "VenomStaff",
2192 Self::SpectreMask => "SpectreMask",
2193 Self::FrogCage => "FrogCage",
2194 Self::MouseCage => "MouseCage",
2195 Self::BoneWelder => "BoneWelder",
2196 Self::FleshCloningVaat => "FleshCloningVaat",
2197 Self::GlassKiln => "GlassKiln",
2198 Self::LihzahrdFurnace => "LihzahrdFurnace",
2199 Self::LivingLoom => "LivingLoom",
2200 Self::SkyMill => "SkyMill",
2201 Self::IceMachine => "IceMachine",
2202 Self::BeetleHelmet => "BeetleHelmet",
2203 Self::BeetleScaleMail => "BeetleScaleMail",
2204 Self::BeetleShell => "BeetleShell",
2205 Self::BeetleLeggings => "BeetleLeggings",
2206 Self::SteampunkBoiler => "SteampunkBoiler",
2207 Self::HoneyDispenser => "HoneyDispenser",
2208 Self::Penguin => "Penguin",
2209 Self::PenguinCage => "PenguinCage",
2210 Self::WormCage => "WormCage",
2211 Self::Terrarium => "Terrarium",
2212 Self::SuperManaPotion => "SuperManaPotion",
2213 Self::EbonwoodFence => "EbonwoodFence",
2214 Self::RichMahoganyFence => "RichMahoganyFence",
2215 Self::PearlwoodFence => "PearlwoodFence",
2216 Self::ShadewoodFence => "ShadewoodFence",
2217 Self::BrickLayer => "BrickLayer",
2218 Self::ExtendoGrip => "ExtendoGrip",
2219 Self::PaintSprayer => "PaintSprayer",
2220 Self::PortableCementMixer => "PortableCementMixer",
2221 Self::BeetleHusk => "BeetleHusk",
2222 Self::CelestialMagnet => "CelestialMagnet",
2223 Self::CelestialEmblem => "CelestialEmblem",
2224 Self::CelestialCuffs => "CelestialCuffs",
2225 Self::PeddlersHat => "PeddlersHat",
2226 Self::PulseBow => "PulseBow",
2227 Self::DynastyChandelier => "DynastyChandelier",
2228 Self::DynastyLamp => "DynastyLamp",
2229 Self::DynastyLantern => "DynastyLantern",
2230 Self::DynastyCandelabra => "DynastyCandelabra",
2231 Self::DynastyChair => "DynastyChair",
2232 Self::DynastyWorkBench => "DynastyWorkBench",
2233 Self::DynastyChest => "DynastyChest",
2234 Self::DynastyBed => "DynastyBed",
2235 Self::DynastyBathtub => "DynastyBathtub",
2236 Self::DynastyBookcase => "DynastyBookcase",
2237 Self::DynastyCup => "DynastyCup",
2238 Self::DynastyBowl => "DynastyBowl",
2239 Self::DynastyCandle => "DynastyCandle",
2240 Self::DynastyClock => "DynastyClock",
2241 Self::GoldenClock => "GoldenClock",
2242 Self::GlassClock => "GlassClock",
2243 Self::HoneyClock => "HoneyClock",
2244 Self::SteampunkClock => "SteampunkClock",
2245 Self::FancyDishes => "FancyDishes",
2246 Self::GlassBowl => "GlassBowl",
2247 Self::WineGlass => "WineGlass",
2248 Self::LivingWoodPiano => "LivingWoodPiano",
2249 Self::FleshPiano => "FleshPiano",
2250 Self::FrozenPiano => "FrozenPiano",
2251 Self::FrozenTable => "FrozenTable",
2252 Self::HoneyChest => "HoneyChest",
2253 Self::SteampunkChest => "SteampunkChest",
2254 Self::HoneyWorkBench => "HoneyWorkBench",
2255 Self::FrozenWorkBench => "FrozenWorkBench",
2256 Self::SteampunkWorkBench => "SteampunkWorkBench",
2257 Self::GlassPiano => "GlassPiano",
2258 Self::HoneyPiano => "HoneyPiano",
2259 Self::SteampunkPiano => "SteampunkPiano",
2260 Self::HoneyCup => "HoneyCup",
2261 Self::SteampunkCup => "SteampunkCup",
2262 Self::DynastyTable => "DynastyTable",
2263 Self::DynastyWood => "DynastyWood",
2264 Self::RedDynastyShingles => "RedDynastyShingles",
2265 Self::BlueDynastyShingles => "BlueDynastyShingles",
2266 Self::WhiteDynastyWall => "WhiteDynastyWall",
2267 Self::BlueDynastyWall => "BlueDynastyWall",
2268 Self::DynastyDoor => "DynastyDoor",
2269 Self::Sake => "Sake",
2270 Self::PadThai => "PadThai",
2271 Self::Pho => "Pho",
2272 Self::Revolver => "Revolver",
2273 Self::Gatligator => "Gatligator",
2274 Self::ArcaneRuneWall => "ArcaneRuneWall",
2275 Self::WaterGun => "WaterGun",
2276 Self::Katana => "Katana",
2277 Self::UltrabrightTorch => "UltrabrightTorch",
2278 Self::MagicHat => "MagicHat",
2279 Self::DiamondRing => "DiamondRing",
2280 Self::Gi => "Gi",
2281 Self::Kimono => "Kimono",
2282 Self::GypsyRobe => "GypsyRobe",
2283 Self::BeetleWings => "BeetleWings",
2284 Self::TigerSkin => "TigerSkin",
2285 Self::LeopardSkin => "LeopardSkin",
2286 Self::ZebraSkin => "ZebraSkin",
2287 Self::CrimsonCloak => "CrimsonCloak",
2288 Self::MysteriousCape => "MysteriousCape",
2289 Self::RedCape => "RedCape",
2290 Self::WinterCape => "WinterCape",
2291 Self::FrozenChair => "FrozenChair",
2292 Self::WoodFishingPole => "WoodFishingPole",
2293 Self::Bass => "Bass",
2294 Self::ReinforcedFishingPole => "ReinforcedFishingPole",
2295 Self::FiberglassFishingPole => "FiberglassFishingPole",
2296 Self::FisherOfSouls => "FisherofSouls",
2297 Self::GoldenFishingRod => "GoldenFishingRod",
2298 Self::MechanicsRod => "MechanicsRod",
2299 Self::SittingDucksFishingRod => "SittingDucksFishingRod",
2300 Self::Trout => "Trout",
2301 Self::Salmon => "Salmon",
2302 Self::AtlanticCod => "AtlanticCod",
2303 Self::Tuna => "Tuna",
2304 Self::RedSnapper => "RedSnapper",
2305 Self::NeonTetra => "NeonTetra",
2306 Self::ArmoredCavefish => "ArmoredCavefish",
2307 Self::Damselfish => "Damselfish",
2308 Self::CrimsonTigerfish => "CrimsonTigerfish",
2309 Self::FrostMinnow => "FrostMinnow",
2310 Self::PrincessFish => "PrincessFish",
2311 Self::GoldenCarp => "GoldenCarp",
2312 Self::SpecularFish => "SpecularFish",
2313 Self::Prismite => "Prismite",
2314 Self::VariegatedLardfish => "VariegatedLardfish",
2315 Self::FlarefinKoi => "FlarefinKoi",
2316 Self::DoubleCod => "DoubleCod",
2317 Self::Honeyfin => "Honeyfin",
2318 Self::Obsidifish => "Obsidifish",
2319 Self::Shrimp => "Shrimp",
2320 Self::ChaosFish => "ChaosFish",
2321 Self::Ebonkoi => "Ebonkoi",
2322 Self::Hemopiranha => "Hemopiranha",
2323 Self::Rockfish => "Rockfish",
2324 Self::Stinkfish => "Stinkfish",
2325 Self::MiningPotion => "MiningPotion",
2326 Self::HeartreachPotion => "HeartreachPotion",
2327 Self::CalmingPotion => "CalmingPotion",
2328 Self::BuilderPotion => "BuilderPotion",
2329 Self::TitanPotion => "TitanPotion",
2330 Self::FlipperPotion => "FlipperPotion",
2331 Self::SummoningPotion => "SummoningPotion",
2332 Self::TrapsightPotion => "TrapsightPotion",
2333 Self::PurpleClubberfish => "PurpleClubberfish",
2334 Self::ObsidianSwordfish => "ObsidianSwordfish",
2335 Self::Swordfish => "Swordfish",
2336 Self::IronFence => "IronFence",
2337 Self::WoodenCrate => "WoodenCrate",
2338 Self::IronCrate => "IronCrate",
2339 Self::GoldenCrate => "GoldenCrate",
2340 Self::OldShoe => "OldShoe",
2341 Self::FishingSeaweed => "FishingSeaweed",
2342 Self::TinCan => "TinCan",
2343 Self::MinecartTrack => "MinecartTrack",
2344 Self::ReaverShark => "ReaverShark",
2345 Self::SawtoothShark => "SawtoothShark",
2346 Self::Minecart => "Minecart",
2347 Self::AmmoReservationPotion => "AmmoReservationPotion",
2348 Self::LifeforcePotion => "LifeforcePotion",
2349 Self::EndurancePotion => "EndurancePotion",
2350 Self::RagePotion => "RagePotion",
2351 Self::InfernoPotion => "InfernoPotion",
2352 Self::WrathPotion => "WrathPotion",
2353 Self::RecallPotion => "RecallPotion",
2354 Self::TeleportationPotion => "TeleportationPotion",
2355 Self::LovePotion => "LovePotion",
2356 Self::StinkPotion => "StinkPotion",
2357 Self::FishingPotion => "FishingPotion",
2358 Self::SonarPotion => "SonarPotion",
2359 Self::CratePotion => "CratePotion",
2360 Self::ShiverthornSeeds => "ShiverthornSeeds",
2361 Self::Shiverthorn => "Shiverthorn",
2362 Self::WarmthPotion => "WarmthPotion",
2363 Self::FishHook => "FishHook",
2364 Self::BeeHeadgear => "BeeHeadgear",
2365 Self::BeeBreastplate => "BeeBreastplate",
2366 Self::BeeGreaves => "BeeGreaves",
2367 Self::HornetStaff => "HornetStaff",
2368 Self::ImpStaff => "ImpStaff",
2369 Self::QueenSpiderStaff => "QueenSpiderStaff",
2370 Self::AnglerHat => "AnglerHat",
2371 Self::AnglerVest => "AnglerVest",
2372 Self::AnglerPants => "AnglerPants",
2373 Self::SpiderMask => "SpiderMask",
2374 Self::SpiderBreastplate => "SpiderBreastplate",
2375 Self::SpiderGreaves => "SpiderGreaves",
2376 Self::HighTestFishingLine => "HighTestFishingLine",
2377 Self::AnglerEarring => "AnglerEarring",
2378 Self::TackleBox => "TackleBox",
2379 Self::BlueDungeonPiano => "BlueDungeonPiano",
2380 Self::GreenDungeonPiano => "GreenDungeonPiano",
2381 Self::PinkDungeonPiano => "PinkDungeonPiano",
2382 Self::GoldenPiano => "GoldenPiano",
2383 Self::ObsidianPiano => "ObsidianPiano",
2384 Self::BonePiano => "BonePiano",
2385 Self::CactusPiano => "CactusPiano",
2386 Self::SpookyPiano => "SpookyPiano",
2387 Self::SkywarePiano => "SkywarePiano",
2388 Self::LihzahrdPiano => "LihzahrdPiano",
2389 Self::BlueDungeonDresser => "BlueDungeonDresser",
2390 Self::GreenDungeonDresser => "GreenDungeonDresser",
2391 Self::PinkDungeonDresser => "PinkDungeonDresser",
2392 Self::GoldenDresser => "GoldenDresser",
2393 Self::ObsidianDresser => "ObsidianDresser",
2394 Self::BoneDresser => "BoneDresser",
2395 Self::CactusDresser => "CactusDresser",
2396 Self::SpookyDresser => "SpookyDresser",
2397 Self::SkywareDresser => "SkywareDresser",
2398 Self::HoneyDresser => "HoneyDresser",
2399 Self::LihzahrdDresser => "LihzahrdDresser",
2400 Self::Sofa => "Sofa",
2401 Self::EbonwoodSofa => "EbonwoodSofa",
2402 Self::RichMahoganySofa => "RichMahoganySofa",
2403 Self::PearlwoodSofa => "PearlwoodSofa",
2404 Self::ShadewoodSofa => "ShadewoodSofa",
2405 Self::BlueDungeonSofa => "BlueDungeonSofa",
2406 Self::GreenDungeonSofa => "GreenDungeonSofa",
2407 Self::PinkDungeonSofa => "PinkDungeonSofa",
2408 Self::GoldenSofa => "GoldenSofa",
2409 Self::ObsidianSofa => "ObsidianSofa",
2410 Self::BoneSofa => "BoneSofa",
2411 Self::CactusSofa => "CactusSofa",
2412 Self::SpookySofa => "SpookySofa",
2413 Self::SkywareSofa => "SkywareSofa",
2414 Self::HoneySofa => "HoneySofa",
2415 Self::SteampunkSofa => "SteampunkSofa",
2416 Self::MushroomSofa => "MushroomSofa",
2417 Self::GlassSofa => "GlassSofa",
2418 Self::PumpkinSofa => "PumpkinSofa",
2419 Self::LihzahrdSofa => "LihzahrdSofa",
2420 Self::SeashellHairpin => "SeashellHairpin",
2421 Self::MermaidAdornment => "MermaidAdornment",
2422 Self::MermaidTail => "MermaidTail",
2423 Self::ZephyrFish => "ZephyrFish",
2424 Self::Fleshcatcher => "Fleshcatcher",
2425 Self::HotlineFishingHook => "HotlineFishingHook",
2426 Self::FrogLeg => "FrogLeg",
2427 Self::Anchor => "Anchor",
2428 Self::CookedFish => "CookedFish",
2429 Self::CookedShrimp => "CookedShrimp",
2430 Self::Sashimi => "Sashimi",
2431 Self::FuzzyCarrot => "FuzzyCarrot",
2432 Self::ScalyTruffle => "ScalyTruffle",
2433 Self::SlimySaddle => "SlimySaddle",
2434 Self::BeeWax => "BeeWax",
2435 Self::CopperPlatingWall => "CopperPlatingWall",
2436 Self::StoneSlabWall => "StoneSlabWall",
2437 Self::Sail => "Sail",
2438 Self::CoralstoneBlock => "CoralstoneBlock",
2439 Self::BlueJellyfish => "BlueJellyfish",
2440 Self::GreenJellyfish => "GreenJellyfish",
2441 Self::PinkJellyfish => "PinkJellyfish",
2442 Self::BlueJellyfishJar => "BlueJellyfishJar",
2443 Self::GreenJellyfishJar => "GreenJellyfishJar",
2444 Self::PinkJellyfishJar => "PinkJellyfishJar",
2445 Self::LifePreserver => "LifePreserver",
2446 Self::ShipsWheel => "ShipsWheel",
2447 Self::CompassRose => "CompassRose",
2448 Self::WallAnchor => "WallAnchor",
2449 Self::GoldfishTrophy => "GoldfishTrophy",
2450 Self::BunnyfishTrophy => "BunnyfishTrophy",
2451 Self::SwordfishTrophy => "SwordfishTrophy",
2452 Self::SharkteethTrophy => "SharkteethTrophy",
2453 Self::Batfish => "Batfish",
2454 Self::BumblebeeTuna => "BumblebeeTuna",
2455 Self::Catfish => "Catfish",
2456 Self::Cloudfish => "Cloudfish",
2457 Self::Cursedfish => "Cursedfish",
2458 Self::Dirtfish => "Dirtfish",
2459 Self::DynamiteFish => "DynamiteFish",
2460 Self::EaterOfPlankton => "EaterofPlankton",
2461 Self::FallenStarfish => "FallenStarfish",
2462 Self::TheFishOfCthulu => "TheFishofCthulu",
2463 Self::Fishotron => "Fishotron",
2464 Self::Harpyfish => "Harpyfish",
2465 Self::Hungerfish => "Hungerfish",
2466 Self::Ichorfish => "Ichorfish",
2467 Self::Jewelfish => "Jewelfish",
2468 Self::MirageFish => "MirageFish",
2469 Self::MutantFlinxfin => "MutantFlinxfin",
2470 Self::Pengfish => "Pengfish",
2471 Self::Pixiefish => "Pixiefish",
2472 Self::Spiderfish => "Spiderfish",
2473 Self::TundraTrout => "TundraTrout",
2474 Self::UnicornFish => "UnicornFish",
2475 Self::GuideVoodooFish => "GuideVoodooFish",
2476 Self::Wyverntail => "Wyverntail",
2477 Self::ZombieFish => "ZombieFish",
2478 Self::AmanitaFungifin => "AmanitaFungifin",
2479 Self::Angelfish => "Angelfish",
2480 Self::BloodyManowar => "BloodyManowar",
2481 Self::Bonefish => "Bonefish",
2482 Self::Bunnyfish => "Bunnyfish",
2483 Self::CapnTunabeard => "CapnTunabeard",
2484 Self::Clownfish => "Clownfish",
2485 Self::DemonicHellfish => "DemonicHellfish",
2486 Self::Derpfish => "Derpfish",
2487 Self::Fishron => "Fishron",
2488 Self::InfectedScabbardfish => "InfectedScabbardfish",
2489 Self::Mudfish => "Mudfish",
2490 Self::Slimefish => "Slimefish",
2491 Self::TropicalBarracuda => "TropicalBarracuda",
2492 Self::KingSlimeTrophy => "KingSlimeTrophy",
2493 Self::ShipInABottle => "ShipInABottle",
2494 Self::HardySaddle => "HardySaddle",
2495 Self::PressureTrack => "PressureTrack",
2496 Self::KingSlimeMask => "KingSlimeMask",
2497 Self::FinWings => "FinWings",
2498 Self::TreasureMap => "TreasureMap",
2499 Self::SeaweedPlanter => "SeaweedPlanter",
2500 Self::PillaginMePixels => "PillaginMePixels",
2501 Self::FishCostumeMask => "FishCostumeMask",
2502 Self::FishCostumeShirt => "FishCostumeShirt",
2503 Self::FishCostumeFinskirt => "FishCostumeFinskirt",
2504 Self::GingerBeard => "GingerBeard",
2505 Self::HoneyedGoggles => "HoneyedGoggles",
2506 Self::BorealWood => "BorealWood",
2507 Self::PalmWood => "PalmWood",
2508 Self::BorealWoodWall => "BorealWoodWall",
2509 Self::PalmWoodWall => "PalmWoodWall",
2510 Self::BorealWoodFence => "BorealWoodFence",
2511 Self::PalmWoodFence => "PalmWoodFence",
2512 Self::BorealWoodHelmet => "BorealWoodHelmet",
2513 Self::BorealWoodBreastplate => "BorealWoodBreastplate",
2514 Self::BorealWoodGreaves => "BorealWoodGreaves",
2515 Self::PalmWoodHelmet => "PalmWoodHelmet",
2516 Self::PalmWoodBreastplate => "PalmWoodBreastplate",
2517 Self::PalmWoodGreaves => "PalmWoodGreaves",
2518 Self::PalmWoodBow => "PalmWoodBow",
2519 Self::PalmWoodHammer => "PalmWoodHammer",
2520 Self::PalmWoodSword => "PalmWoodSword",
2521 Self::PalmWoodPlatform => "PalmWoodPlatform",
2522 Self::PalmWoodBathtub => "PalmWoodBathtub",
2523 Self::PalmWoodBed => "PalmWoodBed",
2524 Self::PalmWoodBench => "PalmWoodBench",
2525 Self::PalmWoodCandelabra => "PalmWoodCandelabra",
2526 Self::PalmWoodCandle => "PalmWoodCandle",
2527 Self::PalmWoodChair => "PalmWoodChair",
2528 Self::PalmWoodChandelier => "PalmWoodChandelier",
2529 Self::PalmWoodChest => "PalmWoodChest",
2530 Self::PalmWoodSofa => "PalmWoodSofa",
2531 Self::PalmWoodDoor => "PalmWoodDoor",
2532 Self::PalmWoodDresser => "PalmWoodDresser",
2533 Self::PalmWoodLantern => "PalmWoodLantern",
2534 Self::PalmWoodPiano => "PalmWoodPiano",
2535 Self::PalmWoodTable => "PalmWoodTable",
2536 Self::PalmWoodLamp => "PalmWoodLamp",
2537 Self::PalmWoodWorkBench => "PalmWoodWorkBench",
2538 Self::OpticStaff => "OpticStaff",
2539 Self::PalmWoodBookcase => "PalmWoodBookcase",
2540 Self::MushroomBathtub => "MushroomBathtub",
2541 Self::MushroomBed => "MushroomBed",
2542 Self::MushroomBench => "MushroomBench",
2543 Self::MushroomBookcase => "MushroomBookcase",
2544 Self::MushroomCandelabra => "MushroomCandelabra",
2545 Self::MushroomCandle => "MushroomCandle",
2546 Self::MushroomChandelier => "MushroomChandelier",
2547 Self::MushroomChest => "MushroomChest",
2548 Self::MushroomDresser => "MushroomDresser",
2549 Self::MushroomLantern => "MushroomLantern",
2550 Self::MushroomLamp => "MushroomLamp",
2551 Self::MushroomPiano => "MushroomPiano",
2552 Self::MushroomPlatform => "MushroomPlatform",
2553 Self::MushroomTable => "MushroomTable",
2554 Self::SpiderStaff => "SpiderStaff",
2555 Self::BorealWoodBathtub => "BorealWoodBathtub",
2556 Self::BorealWoodBed => "BorealWoodBed",
2557 Self::BorealWoodBookcase => "BorealWoodBookcase",
2558 Self::BorealWoodCandelabra => "BorealWoodCandelabra",
2559 Self::BorealWoodCandle => "BorealWoodCandle",
2560 Self::BorealWoodChair => "BorealWoodChair",
2561 Self::BorealWoodChandelier => "BorealWoodChandelier",
2562 Self::BorealWoodChest => "BorealWoodChest",
2563 Self::BorealWoodClock => "BorealWoodClock",
2564 Self::BorealWoodDoor => "BorealWoodDoor",
2565 Self::BorealWoodDresser => "BorealWoodDresser",
2566 Self::BorealWoodLamp => "BorealWoodLamp",
2567 Self::BorealWoodLantern => "BorealWoodLantern",
2568 Self::BorealWoodPiano => "BorealWoodPiano",
2569 Self::BorealWoodPlatform => "BorealWoodPlatform",
2570 Self::SlimeBathtub => "SlimeBathtub",
2571 Self::SlimeBed => "SlimeBed",
2572 Self::SlimeBookcase => "SlimeBookcase",
2573 Self::SlimeCandelabra => "SlimeCandelabra",
2574 Self::SlimeCandle => "SlimeCandle",
2575 Self::SlimeChair => "SlimeChair",
2576 Self::SlimeChandelier => "SlimeChandelier",
2577 Self::SlimeChest => "SlimeChest",
2578 Self::SlimeClock => "SlimeClock",
2579 Self::SlimeDoor => "SlimeDoor",
2580 Self::SlimeDresser => "SlimeDresser",
2581 Self::SlimeLamp => "SlimeLamp",
2582 Self::SlimeLantern => "SlimeLantern",
2583 Self::SlimePiano => "SlimePiano",
2584 Self::SlimePlatform => "SlimePlatform",
2585 Self::SlimeSofa => "SlimeSofa",
2586 Self::SlimeTable => "SlimeTable",
2587 Self::PirateStaff => "PirateStaff",
2588 Self::SlimeHook => "SlimeHook",
2589 Self::StickyGrenade => "StickyGrenade",
2590 Self::TartarSauce => "TartarSauce",
2591 Self::DukeFishronMask => "DukeFishronMask",
2592 Self::DukeFishronTrophy => "DukeFishronTrophy",
2593 Self::MolotovCocktail => "MolotovCocktail",
2594 Self::BoneClock => "BoneClock",
2595 Self::CactusClock => "CactusClock",
2596 Self::EbonwoodClock => "EbonwoodClock",
2597 Self::FrozenClock => "FrozenClock",
2598 Self::LihzahrdClock => "LihzahrdClock",
2599 Self::LivingWoodClock => "LivingWoodClock",
2600 Self::RichMahoganyClock => "RichMahoganyClock",
2601 Self::FleshClock => "FleshClock",
2602 Self::MushroomClock => "MushroomClock",
2603 Self::ObsidianClock => "ObsidianClock",
2604 Self::PalmWoodClock => "PalmWoodClock",
2605 Self::PearlwoodClock => "PearlwoodClock",
2606 Self::PumpkinClock => "PumpkinClock",
2607 Self::ShadewoodClock => "ShadewoodClock",
2608 Self::SpookyClock => "SpookyClock",
2609 Self::SkywareClock => "SkywareClock",
2610 Self::SpiderFang => "SpiderFang",
2611 Self::FalconBlade => "FalconBlade",
2612 Self::FishronWings => "FishronWings",
2613 Self::SlimeGun => "SlimeGun",
2614 Self::Flairon => "Flairon",
2615 Self::GreenDungeonChest => "GreenDungeonChest",
2616 Self::PinkDungeonChest => "PinkDungeonChest",
2617 Self::BlueDungeonChest => "BlueDungeonChest",
2618 Self::BoneChest => "BoneChest",
2619 Self::CactusChest => "CactusChest",
2620 Self::FleshChest => "FleshChest",
2621 Self::ObsidianChest => "ObsidianChest",
2622 Self::PumpkinChest => "PumpkinChest",
2623 Self::SpookyChest => "SpookyChest",
2624 Self::TempestStaff => "TempestStaff",
2625 Self::RazorbladeTyphoon => "RazorbladeTyphoon",
2626 Self::BubbleGun => "BubbleGun",
2627 Self::Tsunami => "Tsunami",
2628 Self::Seashell => "Seashell",
2629 Self::Starfish => "Starfish",
2630 Self::SteampunkPlatform => "SteampunkPlatform",
2631 Self::SkywarePlatform => "SkywarePlatform",
2632 Self::LivingWoodPlatform => "LivingWoodPlatform",
2633 Self::HoneyPlatform => "HoneyPlatform",
2634 Self::SkywareWorkbench => "SkywareWorkbench",
2635 Self::GlassWorkBench => "GlassWorkBench",
2636 Self::LivingWoodWorkBench => "LivingWoodWorkBench",
2637 Self::FleshSofa => "FleshSofa",
2638 Self::FrozenSofa => "FrozenSofa",
2639 Self::LivingWoodSofa => "LivingWoodSofa",
2640 Self::PumpkinDresser => "PumpkinDresser",
2641 Self::SteampunkDresser => "SteampunkDresser",
2642 Self::GlassDresser => "GlassDresser",
2643 Self::FleshDresser => "FleshDresser",
2644 Self::PumpkinLantern => "PumpkinLantern",
2645 Self::ObsidianLantern => "ObsidianLantern",
2646 Self::PumpkinLamp => "PumpkinLamp",
2647 Self::ObsidianLamp => "ObsidianLamp",
2648 Self::BlueDungeonLamp => "BlueDungeonLamp",
2649 Self::GreenDungeonLamp => "GreenDungeonLamp",
2650 Self::PinkDungeonLamp => "PinkDungeonLamp",
2651 Self::HoneyCandle => "HoneyCandle",
2652 Self::SteampunkCandle => "SteampunkCandle",
2653 Self::SpookyCandle => "SpookyCandle",
2654 Self::ObsidianCandle => "ObsidianCandle",
2655 Self::BlueDungeonChandelier => "BlueDungeonChandelier",
2656 Self::GreenDungeonChandelier => "GreenDungeonChandelier",
2657 Self::PinkDungeonChandelier => "PinkDungeonChandelier",
2658 Self::SteampunkChandelier => "SteampunkChandelier",
2659 Self::PumpkinChandelier => "PumpkinChandelier",
2660 Self::ObsidianChandelier => "ObsidianChandelier",
2661 Self::BlueDungeonBathtub => "BlueDungeonBathtub",
2662 Self::GreenDungeonBathtub => "GreenDungeonBathtub",
2663 Self::PinkDungeonBathtub => "PinkDungeonBathtub",
2664 Self::PumpkinBathtub => "PumpkinBathtub",
2665 Self::ObsidianBathtub => "ObsidianBathtub",
2666 Self::GoldenBathtub => "GoldenBathtub",
2667 Self::BlueDungeonCandelabra => "BlueDungeonCandelabra",
2668 Self::GreenDungeonCandelabra => "GreenDungeonCandelabra",
2669 Self::PinkDungeonCandelabra => "PinkDungeonCandelabra",
2670 Self::ObsidianCandelabra => "ObsidianCandelabra",
2671 Self::PumpkinCandelabra => "PumpkinCandelabra",
2672 Self::PumpkinBed => "PumpkinBed",
2673 Self::PumpkinBookcase => "PumpkinBookcase",
2674 Self::PumpkinPiano => "PumpkinPiano",
2675 Self::SharkStatue => "SharkStatue",
2676 Self::TruffleWorm => "TruffleWorm",
2677 Self::ApprenticeBait => "ApprenticeBait",
2678 Self::JourneymanBait => "JourneymanBait",
2679 Self::MasterBait => "MasterBait",
2680 Self::AmberGemsparkWall => "AmberGemsparkWall",
2681 Self::AmberGemsparkWallOff => "AmberGemsparkWallOff",
2682 Self::AmethystGemsparkWall => "AmethystGemsparkWall",
2683 Self::AmethystGemsparkWallOff => "AmethystGemsparkWallOff",
2684 Self::DiamondGemsparkWall => "DiamondGemsparkWall",
2685 Self::DiamondGemsparkWallOff => "DiamondGemsparkWallOff",
2686 Self::EmeraldGemsparkWall => "EmeraldGemsparkWall",
2687 Self::EmeraldGemsparkWallOff => "EmeraldGemsparkWallOff",
2688 Self::RubyGemsparkWall => "RubyGemsparkWall",
2689 Self::RubyGemsparkWallOff => "RubyGemsparkWallOff",
2690 Self::SapphireGemsparkWall => "SapphireGemsparkWall",
2691 Self::SapphireGemsparkWallOff => "SapphireGemsparkWallOff",
2692 Self::TopazGemsparkWall => "TopazGemsparkWall",
2693 Self::TopazGemsparkWallOff => "TopazGemsparkWallOff",
2694 Self::TinPlatingWall => "TinPlatingWall",
2695 Self::TinPlating => "TinPlating",
2696 Self::WaterfallBlock => "WaterfallBlock",
2697 Self::LavafallBlock => "LavafallBlock",
2698 Self::ConfettiBlock => "ConfettiBlock",
2699 Self::ConfettiWall => "ConfettiWall",
2700 Self::ConfettiBlockBlack => "ConfettiBlockBlack",
2701 Self::ConfettiWallBlack => "ConfettiWallBlack",
2702 Self::WeaponRack => "WeaponRack",
2703 Self::FireworksBox => "FireworksBox",
2704 Self::LivingFireBlock => "LivingFireBlock",
2705 Self::AlphabetStatue0 => "AlphabetStatue0",
2706 Self::AlphabetStatue1 => "AlphabetStatue1",
2707 Self::AlphabetStatue2 => "AlphabetStatue2",
2708 Self::AlphabetStatue3 => "AlphabetStatue3",
2709 Self::AlphabetStatue4 => "AlphabetStatue4",
2710 Self::AlphabetStatue5 => "AlphabetStatue5",
2711 Self::AlphabetStatue6 => "AlphabetStatue6",
2712 Self::AlphabetStatue7 => "AlphabetStatue7",
2713 Self::AlphabetStatue8 => "AlphabetStatue8",
2714 Self::AlphabetStatue9 => "AlphabetStatue9",
2715 Self::AlphabetStatueA => "AlphabetStatueA",
2716 Self::AlphabetStatueB => "AlphabetStatueB",
2717 Self::AlphabetStatueC => "AlphabetStatueC",
2718 Self::AlphabetStatueD => "AlphabetStatueD",
2719 Self::AlphabetStatueE => "AlphabetStatueE",
2720 Self::AlphabetStatueF => "AlphabetStatueF",
2721 Self::AlphabetStatueG => "AlphabetStatueG",
2722 Self::AlphabetStatueH => "AlphabetStatueH",
2723 Self::AlphabetStatueI => "AlphabetStatueI",
2724 Self::AlphabetStatueJ => "AlphabetStatueJ",
2725 Self::AlphabetStatueK => "AlphabetStatueK",
2726 Self::AlphabetStatueL => "AlphabetStatueL",
2727 Self::AlphabetStatueM => "AlphabetStatueM",
2728 Self::AlphabetStatueN => "AlphabetStatueN",
2729 Self::AlphabetStatueO => "AlphabetStatueO",
2730 Self::AlphabetStatueP => "AlphabetStatueP",
2731 Self::AlphabetStatueQ => "AlphabetStatueQ",
2732 Self::AlphabetStatueR => "AlphabetStatueR",
2733 Self::AlphabetStatueS => "AlphabetStatueS",
2734 Self::AlphabetStatueT => "AlphabetStatueT",
2735 Self::AlphabetStatueU => "AlphabetStatueU",
2736 Self::AlphabetStatueV => "AlphabetStatueV",
2737 Self::AlphabetStatueW => "AlphabetStatueW",
2738 Self::AlphabetStatueX => "AlphabetStatueX",
2739 Self::AlphabetStatueY => "AlphabetStatueY",
2740 Self::AlphabetStatueZ => "AlphabetStatueZ",
2741 Self::FireworkFountain => "FireworkFountain",
2742 Self::BoosterTrack => "BoosterTrack",
2743 Self::Grasshopper => "Grasshopper",
2744 Self::GrasshopperCage => "GrasshopperCage",
2745 Self::MusicBoxUndergroundCrimson => "MusicBoxUndergroundCrimson",
2746 Self::CactusTable => "CactusTable",
2747 Self::CactusPlatform => "CactusPlatform",
2748 Self::BorealWoodSword => "BorealWoodSword",
2749 Self::BorealWoodHammer => "BorealWoodHammer",
2750 Self::BorealWoodBow => "BorealWoodBow",
2751 Self::GlassChest => "GlassChest",
2752 Self::XenoStaff => "XenoStaff",
2753 Self::MeteorStaff => "MeteorStaff",
2754 Self::LivingCursedFireBlock => "LivingCursedFireBlock",
2755 Self::LivingDemonFireBlock => "LivingDemonFireBlock",
2756 Self::LivingFrostFireBlock => "LivingFrostFireBlock",
2757 Self::LivingIchorBlock => "LivingIchorBlock",
2758 Self::LivingUltrabrightFireBlock => "LivingUltrabrightFireBlock",
2759 Self::GenderChangePotion => "GenderChangePotion",
2760 Self::VortexHelmet => "VortexHelmet",
2761 Self::VortexBreastplate => "VortexBreastplate",
2762 Self::VortexLeggings => "VortexLeggings",
2763 Self::NebulaHelmet => "NebulaHelmet",
2764 Self::NebulaBreastplate => "NebulaBreastplate",
2765 Self::NebulaLeggings => "NebulaLeggings",
2766 Self::SolarFlareHelmet => "SolarFlareHelmet",
2767 Self::SolarFlareBreastplate => "SolarFlareBreastplate",
2768 Self::SolarFlareLeggings => "SolarFlareLeggings",
2769 Self::LunarTabletFragment => "LunarTabletFragment",
2770 Self::SolarTablet => "SolarTablet",
2771 Self::DrillContainmentUnit => "DrillContainmentUnit",
2772 Self::CosmicCarKey => "CosmicCarKey",
2773 Self::MothronWings => "MothronWings",
2774 Self::BrainScrambler => "BrainScrambler",
2775 Self::VortexAxe => "VortexAxe",
2776 Self::VortexChainsaw => "VortexChainsaw",
2777 Self::VortexDrill => "VortexDrill",
2778 Self::VortexHammer => "VortexHammer",
2779 Self::VortexPickaxe => "VortexPickaxe",
2780 Self::NebulaAxe => "NebulaAxe",
2781 Self::NebulaChainsaw => "NebulaChainsaw",
2782 Self::NebulaDrill => "NebulaDrill",
2783 Self::NebulaHammer => "NebulaHammer",
2784 Self::NebulaPickaxe => "NebulaPickaxe",
2785 Self::SolarFlareAxe => "SolarFlareAxe",
2786 Self::SolarFlareChainsaw => "SolarFlareChainsaw",
2787 Self::SolarFlareDrill => "SolarFlareDrill",
2788 Self::SolarFlareHammer => "SolarFlareHammer",
2789 Self::SolarFlarePickaxe => "SolarFlarePickaxe",
2790 Self::HoneyfallBlock => "HoneyfallBlock",
2791 Self::HoneyfallWall => "HoneyfallWall",
2792 Self::ChlorophyteBrickWall => "ChlorophyteBrickWall",
2793 Self::CrimtaneBrickWall => "CrimtaneBrickWall",
2794 Self::ShroomitePlatingWall => "ShroomitePlatingWall",
2795 Self::ChlorophyteBrick => "ChlorophyteBrick",
2796 Self::CrimtaneBrick => "CrimtaneBrick",
2797 Self::ShroomitePlating => "ShroomitePlating",
2798 Self::LaserMachinegun => "LaserMachinegun",
2799 Self::ElectrosphereLauncher => "ElectrosphereLauncher",
2800 Self::Xenopopper => "Xenopopper",
2801 Self::LaserDrill => "LaserDrill",
2802 Self::LaserRuler => "LaserRuler",
2803 Self::AntiGravityHook => "AntiGravityHook",
2804 Self::MoonMask => "MoonMask",
2805 Self::SunMask => "SunMask",
2806 Self::MartianCostumeMask => "MartianCostumeMask",
2807 Self::MartianCostumeShirt => "MartianCostumeShirt",
2808 Self::MartianCostumePants => "MartianCostumePants",
2809 Self::MartianUniformHelmet => "MartianUniformHelmet",
2810 Self::MartianUniformTorso => "MartianUniformTorso",
2811 Self::MartianUniformPants => "MartianUniformPants",
2812 Self::MartianAstroClock => "MartianAstroClock",
2813 Self::MartianBathtub => "MartianBathtub",
2814 Self::MartianBed => "MartianBed",
2815 Self::MartianHoverChair => "MartianHoverChair",
2816 Self::MartianChandelier => "MartianChandelier",
2817 Self::MartianChest => "MartianChest",
2818 Self::MartianDoor => "MartianDoor",
2819 Self::MartianDresser => "MartianDresser",
2820 Self::MartianHolobookcase => "MartianHolobookcase",
2821 Self::MartianHoverCandle => "MartianHoverCandle",
2822 Self::MartianLamppost => "MartianLamppost",
2823 Self::MartianLantern => "MartianLantern",
2824 Self::MartianPiano => "MartianPiano",
2825 Self::MartianPlatform => "MartianPlatform",
2826 Self::MartianSofa => "MartianSofa",
2827 Self::MartianTable => "MartianTable",
2828 Self::MartianTableLamp => "MartianTableLamp",
2829 Self::MartianWorkBench => "MartianWorkBench",
2830 Self::WoodenSink => "WoodenSink",
2831 Self::EbonwoodSink => "EbonwoodSink",
2832 Self::RichMahoganySink => "RichMahoganySink",
2833 Self::PearlwoodSink => "PearlwoodSink",
2834 Self::BoneSink => "BoneSink",
2835 Self::FleshSink => "FleshSink",
2836 Self::LivingWoodSink => "LivingWoodSink",
2837 Self::SkywareSink => "SkywareSink",
2838 Self::ShadewoodSink => "ShadewoodSink",
2839 Self::LihzahrdSink => "LihzahrdSink",
2840 Self::BlueDungeonSink => "BlueDungeonSink",
2841 Self::GreenDungeonSink => "GreenDungeonSink",
2842 Self::PinkDungeonSink => "PinkDungeonSink",
2843 Self::ObsidianSink => "ObsidianSink",
2844 Self::MetalSink => "MetalSink",
2845 Self::GlassSink => "GlassSink",
2846 Self::GoldenSink => "GoldenSink",
2847 Self::HoneySink => "HoneySink",
2848 Self::SteampunkSink => "SteampunkSink",
2849 Self::PumpkinSink => "PumpkinSink",
2850 Self::SpookySink => "SpookySink",
2851 Self::FrozenSink => "FrozenSink",
2852 Self::DynastySink => "DynastySink",
2853 Self::PalmWoodSink => "PalmWoodSink",
2854 Self::MushroomSink => "MushroomSink",
2855 Self::BorealWoodSink => "BorealWoodSink",
2856 Self::SlimeSink => "SlimeSink",
2857 Self::CactusSink => "CactusSink",
2858 Self::MartianSink => "MartianSink",
2859 Self::WhiteLunaticHood => "WhiteLunaticHood",
2860 Self::BlueLunaticHood => "BlueLunaticHood",
2861 Self::WhiteLunaticRobe => "WhiteLunaticRobe",
2862 Self::BlueLunaticRobe => "BlueLunaticRobe",
2863 Self::MartianConduitPlating => "MartianConduitPlating",
2864 Self::MartianConduitWall => "MartianConduitWall",
2865 Self::HiTekSunglasses => "HiTekSunglasses",
2866 Self::MartianHairDye => "MartianHairDye",
2867 Self::MartianArmorDye => "MartianArmorDye",
2868 Self::PaintingCastleMarsberg => "PaintingCastleMarsberg",
2869 Self::PaintingMartiaLisa => "PaintingMartiaLisa",
2870 Self::PaintingTheTruthIsUpThere => "PaintingTheTruthIsUpThere",
2871 Self::SmokeBlock => "SmokeBlock",
2872 Self::LivingFlameDye => "LivingFlameDye",
2873 Self::LivingRainbowDye => "LivingRainbowDye",
2874 Self::ShadowDye => "ShadowDye",
2875 Self::NegativeDye => "NegativeDye",
2876 Self::LivingOceanDye => "LivingOceanDye",
2877 Self::BrownDye => "BrownDye",
2878 Self::BrownAndBlackDye => "BrownAndBlackDye",
2879 Self::BrightBrownDye => "BrightBrownDye",
2880 Self::BrownAndSilverDye => "BrownAndSilverDye",
2881 Self::WispDye => "WispDye",
2882 Self::PixieDye => "PixieDye",
2883 Self::InfluxWaver => "InfluxWaver",
2884 Self::PhasicWarpEjector => "PhasicWarpEjector",
2885 Self::ChargedBlasterCannon => "ChargedBlasterCannon",
2886 Self::ChlorophyteDye => "ChlorophyteDye",
2887 Self::UnicornWispDye => "UnicornWispDye",
2888 Self::InfernalWispDye => "InfernalWispDye",
2889 Self::ViciousPowder => "ViciousPowder",
2890 Self::ViciousMushroom => "ViciousMushroom",
2891 Self::BeesKnees => "BeesKnees",
2892 Self::GoldBird => "GoldBird",
2893 Self::GoldBunny => "GoldBunny",
2894 Self::GoldButterfly => "GoldButterfly",
2895 Self::GoldFrog => "GoldFrog",
2896 Self::GoldGrasshopper => "GoldGrasshopper",
2897 Self::GoldMouse => "GoldMouse",
2898 Self::GoldWorm => "GoldWorm",
2899 Self::StickyDynamite => "StickyDynamite",
2900 Self::AngryTrapperBanner => "AngryTrapperBanner",
2901 Self::ArmoredVikingBanner => "ArmoredVikingBanner",
2902 Self::BlackSlimeBanner => "BlackSlimeBanner",
2903 Self::BlueArmoredBonesBanner => "BlueArmoredBonesBanner",
2904 Self::BlueCultistArcherBanner => "BlueCultistArcherBanner",
2905 Self::BlueCultistCasterBanner => "BlueCultistCasterBanner",
2906 Self::BlueCultistFighterBanner => "BlueCultistFighterBanner",
2907 Self::BoneLeeBanner => "BoneLeeBanner",
2908 Self::ClingerBanner => "ClingerBanner",
2909 Self::CochinealBeetleBanner => "CochinealBeetleBanner",
2910 Self::CorruptPenguinBanner => "CorruptPenguinBanner",
2911 Self::CorruptSlimeBanner => "CorruptSlimeBanner",
2912 Self::CorruptorBanner => "CorruptorBanner",
2913 Self::CrimslimeBanner => "CrimslimeBanner",
2914 Self::CursedSkullBanner => "CursedSkullBanner",
2915 Self::CyanBeetleBanner => "CyanBeetleBanner",
2916 Self::DevourerBanner => "DevourerBanner",
2917 Self::DiablolistBanner => "DiablolistBanner",
2918 Self::DoctorBonesBanner => "DoctorBonesBanner",
2919 Self::DungeonSlimeBanner => "DungeonSlimeBanner",
2920 Self::DungeonSpiritBanner => "DungeonSpiritBanner",
2921 Self::ElfArcherBanner => "ElfArcherBanner",
2922 Self::ElfCopterBanner => "ElfCopterBanner",
2923 Self::EyezorBanner => "EyezorBanner",
2924 Self::FlockoBanner => "FlockoBanner",
2925 Self::GhostBanner => "GhostBanner",
2926 Self::GiantBatBanner => "GiantBatBanner",
2927 Self::GiantCursedSkullBanner => "GiantCursedSkullBanner",
2928 Self::GiantFlyingFoxBanner => "GiantFlyingFoxBanner",
2929 Self::GingerbreadManBanner => "GingerbreadManBanner",
2930 Self::GoblinArcherBanner => "GoblinArcherBanner",
2931 Self::GreenSlimeBanner => "GreenSlimeBanner",
2932 Self::HeadlessHorsemanBanner => "HeadlessHorsemanBanner",
2933 Self::HellArmoredBonesBanner => "HellArmoredBonesBanner",
2934 Self::HellhoundBanner => "HellhoundBanner",
2935 Self::HoppinJackBanner => "HoppinJackBanner",
2936 Self::IceBatBanner => "IceBatBanner",
2937 Self::IceGolemBanner => "IceGolemBanner",
2938 Self::IceSlimeBanner => "IceSlimeBanner",
2939 Self::IchorStickerBanner => "IchorStickerBanner",
2940 Self::IlluminantBatBanner => "IlluminantBatBanner",
2941 Self::IlluminantSlimeBanner => "IlluminantSlimeBanner",
2942 Self::JungleBatBanner => "JungleBatBanner",
2943 Self::JungleSlimeBanner => "JungleSlimeBanner",
2944 Self::KrampusBanner => "KrampusBanner",
2945 Self::LacBeetleBanner => "LacBeetleBanner",
2946 Self::LavaBatBanner => "LavaBatBanner",
2947 Self::LavaSlimeBanner => "LavaSlimeBanner",
2948 Self::MartianBrainscramblerBanner => "MartianBrainscramblerBanner",
2949 Self::MartianDroneBanner => "MartianDroneBanner",
2950 Self::MartianEngineerBanner => "MartianEngineerBanner",
2951 Self::MartianGigazapperBanner => "MartianGigazapperBanner",
2952 Self::MartianGreyGruntBanner => "MartianGreyGruntBanner",
2953 Self::MartianOfficerBanner => "MartianOfficerBanner",
2954 Self::MartianRaygunnerBanner => "MartianRaygunnerBanner",
2955 Self::MartianScutlixGunnerBanner => "MartianScutlixGunnerBanner",
2956 Self::MartianTeslaTurretBanner => "MartianTeslaTurretBanner",
2957 Self::MisterStabbyBanner => "MisterStabbyBanner",
2958 Self::MotherSlimeBanner => "MotherSlimeBanner",
2959 Self::NecromancerBanner => "NecromancerBanner",
2960 Self::NutcrackerBanner => "NutcrackerBanner",
2961 Self::PaladinBanner => "PaladinBanner",
2962 Self::PenguinBanner => "PenguinBanner",
2963 Self::PinkyBanner => "PinkyBanner",
2964 Self::PoltergeistBanner => "PoltergeistBanner",
2965 Self::PossessedArmorBanner => "PossessedArmorBanner",
2966 Self::PresentMimicBanner => "PresentMimicBanner",
2967 Self::PurpleSlimeBanner => "PurpleSlimeBanner",
2968 Self::RaggedCasterBanner => "RaggedCasterBanner",
2969 Self::RainbowSlimeBanner => "RainbowSlimeBanner",
2970 Self::RavenBanner => "RavenBanner",
2971 Self::RedSlimeBanner => "RedSlimeBanner",
2972 Self::RuneWizardBanner => "RuneWizardBanner",
2973 Self::RustyArmoredBonesBanner => "RustyArmoredBonesBanner",
2974 Self::ScarecrowBanner => "ScarecrowBanner",
2975 Self::ScutlixBanner => "ScutlixBanner",
2976 Self::SkeletonArcherBanner => "SkeletonArcherBanner",
2977 Self::SkeletonCommandoBanner => "SkeletonCommandoBanner",
2978 Self::SkeletonSniperBanner => "SkeletonSniperBanner",
2979 Self::SlimerBanner => "SlimerBanner",
2980 Self::SnatcherBanner => "SnatcherBanner",
2981 Self::SnowBallaBanner => "SnowBallaBanner",
2982 Self::SnowmanGangstaBanner => "SnowmanGangstaBanner",
2983 Self::SpikedIceSlimeBanner => "SpikedIceSlimeBanner",
2984 Self::SpikedJungleSlimeBanner => "SpikedJungleSlimeBanner",
2985 Self::SplinterlingBanner => "SplinterlingBanner",
2986 Self::SquidBanner => "SquidBanner",
2987 Self::TacticalSkeletonBanner => "TacticalSkeletonBanner",
2988 Self::TheGroomBanner => "TheGroomBanner",
2989 Self::TimBanner => "TimBanner",
2990 Self::UndeadMinerBanner => "UndeadMinerBanner",
2991 Self::UndeadVikingBanner => "UndeadVikingBanner",
2992 Self::WhiteCultistArcherBanner => "WhiteCultistArcherBanner",
2993 Self::WhiteCultistCasterBanner => "WhiteCultistCasterBanner",
2994 Self::WhiteCultistFighterBanner => "WhiteCultistFighterBanner",
2995 Self::YellowSlimeBanner => "YellowSlimeBanner",
2996 Self::YetiBanner => "YetiBanner",
2997 Self::ZombieElfBanner => "ZombieElfBanner",
2998 Self::SparkyPainting => "SparkyPainting",
2999 Self::VineRope => "VineRope",
3000 Self::WormholePotion => "WormholePotion",
3001 Self::SummonerEmblem => "SummonerEmblem",
3002 Self::BewitchingTable => "BewitchingTable",
3003 Self::AlchemyTable => "AlchemyTable",
3004 Self::StrangeBrew => "StrangeBrew",
3005 Self::SpelunkerGlowstick => "SpelunkerGlowstick",
3006 Self::BoneArrow => "BoneArrow",
3007 Self::BoneTorch => "BoneTorch",
3008 Self::VineRopeCoil => "VineRopeCoil",
3009 Self::SoulDrain => "SoulDrain",
3010 Self::DartPistol => "DartPistol",
3011 Self::DartRifle => "DartRifle",
3012 Self::CrystalDart => "CrystalDart",
3013 Self::CursedDart => "CursedDart",
3014 Self::IchorDart => "IchorDart",
3015 Self::ChainGuillotines => "ChainGuillotines",
3016 Self::FetidBaghnakhs => "FetidBaghnakhs",
3017 Self::ClingerStaff => "ClingerStaff",
3018 Self::PutridScent => "PutridScent",
3019 Self::FleshKnuckles => "FleshKnuckles",
3020 Self::FlowerBoots => "FlowerBoots",
3021 Self::Seedler => "Seedler",
3022 Self::HellwingBow => "HellwingBow",
3023 Self::TendonHook => "TendonHook",
3024 Self::ThornHook => "ThornHook",
3025 Self::IlluminantHook => "IlluminantHook",
3026 Self::WormHook => "WormHook",
3027 Self::DevDye => "DevDye",
3028 Self::PurpleOozeDye => "PurpleOozeDye",
3029 Self::ReflectiveSilverDye => "ReflectiveSilverDye",
3030 Self::ReflectiveGoldDye => "ReflectiveGoldDye",
3031 Self::BlueAcidDye => "BlueAcidDye",
3032 Self::DaedalusStormbow => "DaedalusStormbow",
3033 Self::FlyingKnife => "FlyingKnife",
3034 Self::BottomlessBucket => "BottomlessBucket",
3035 Self::SuperAbsorbantSponge => "SuperAbsorbantSponge",
3036 Self::GoldRing => "GoldRing",
3037 Self::CoinRing => "CoinRing",
3038 Self::GreedyRing => "GreedyRing",
3039 Self::FishFinder => "FishFinder",
3040 Self::WeatherRadio => "WeatherRadio",
3041 Self::HadesDye => "HadesDye",
3042 Self::TwilightDye => "TwilightDye",
3043 Self::AcidDye => "AcidDye",
3044 Self::MushroomDye => "MushroomDye",
3045 Self::PhaseDye => "PhaseDye",
3046 Self::MagicLantern => "MagicLantern",
3047 Self::MusicBoxLunarBoss => "MusicBoxLunarBoss",
3048 Self::RainbowTorch => "RainbowTorch",
3049 Self::CursedCampfire => "CursedCampfire",
3050 Self::DemonCampfire => "DemonCampfire",
3051 Self::FrozenCampfire => "FrozenCampfire",
3052 Self::IchorCampfire => "IchorCampfire",
3053 Self::RainbowCampfire => "RainbowCampfire",
3054 Self::CrystalVileShard => "CrystalVileShard",
3055 Self::ShadowFlameBow => "ShadowFlameBow",
3056 Self::ShadowFlameHexDoll => "ShadowFlameHexDoll",
3057 Self::ShadowFlameKnife => "ShadowFlameKnife",
3058 Self::PaintingAcorns => "PaintingAcorns",
3059 Self::PaintingColdSnap => "PaintingColdSnap",
3060 Self::PaintingCursedSaint => "PaintingCursedSaint",
3061 Self::PaintingSnowfellas => "PaintingSnowfellas",
3062 Self::PaintingTheSeason => "PaintingTheSeason",
3063 Self::BoneRattle => "BoneRattle",
3064 Self::ArchitectGizmoPack => "ArchitectGizmoPack",
3065 Self::CrimsonHeart => "CrimsonHeart",
3066 Self::Meowmere => "Meowmere",
3067 Self::Sundial => "Sundial",
3068 Self::StarWrath => "StarWrath",
3069 Self::MarbleBlock => "MarbleBlock",
3070 Self::HellstoneBrickWall => "HellstoneBrickWall",
3071 Self::CordageGuide => "CordageGuide",
3072 Self::WandOfSparking => "WandofSparking",
3073 Self::GoldBirdCage => "GoldBirdCage",
3074 Self::GoldBunnyCage => "GoldBunnyCage",
3075 Self::GoldButterflyCage => "GoldButterflyCage",
3076 Self::GoldFrogCage => "GoldFrogCage",
3077 Self::GoldGrasshopperCage => "GoldGrasshopperCage",
3078 Self::GoldMouseCage => "GoldMouseCage",
3079 Self::GoldWormCage => "GoldWormCage",
3080 Self::SilkRope => "SilkRope",
3081 Self::WebRope => "WebRope",
3082 Self::SilkRopeCoil => "SilkRopeCoil",
3083 Self::WebRopeCoil => "WebRopeCoil",
3084 Self::Marble => "Marble",
3085 Self::MarbleWall => "MarbleWall",
3086 Self::MarbleBlockWall => "MarbleBlockWall",
3087 Self::Radar => "Radar",
3088 Self::LockBox => "LockBox",
3089 Self::Granite => "Granite",
3090 Self::GraniteBlock => "GraniteBlock",
3091 Self::GraniteWall => "GraniteWall",
3092 Self::GraniteBlockWall => "GraniteBlockWall",
3093 Self::RoyalGel => "RoyalGel",
3094 Self::NightKey => "NightKey",
3095 Self::LightKey => "LightKey",
3096 Self::HerbBag => "HerbBag",
3097 Self::Javelin => "Javelin",
3098 Self::TallyCounter => "TallyCounter",
3099 Self::Sextant => "Sextant",
3100 Self::EoCShield => "EoCShield",
3101 Self::ButchersChainsaw => "ButchersChainsaw",
3102 Self::Stopwatch => "Stopwatch",
3103 Self::MeteoriteBrick => "MeteoriteBrick",
3104 Self::MeteoriteBrickWall => "MeteoriteBrickWall",
3105 Self::MetalDetector => "MetalDetector",
3106 Self::EndlessQuiver => "EndlessQuiver",
3107 Self::EndlessMusketPouch => "EndlessMusketPouch",
3108 Self::ToxicFlask => "ToxicFlask",
3109 Self::PsychoKnife => "PsychoKnife",
3110 Self::NailGun => "NailGun",
3111 Self::Nail => "Nail",
3112 Self::NightVisionHelmet => "NightVisionHelmet",
3113 Self::CelestialShell => "CelestialShell",
3114 Self::PinkGel => "PinkGel",
3115 Self::BouncyGlowstick => "BouncyGlowstick",
3116 Self::PinkSlimeBlock => "PinkSlimeBlock",
3117 Self::PinkTorch => "PinkTorch",
3118 Self::BouncyBomb => "BouncyBomb",
3119 Self::BouncyGrenade => "BouncyGrenade",
3120 Self::PeaceCandle => "PeaceCandle",
3121 Self::LifeformAnalyzer => "LifeformAnalyzer",
3122 Self::DPSMeter => "DPSMeter",
3123 Self::FishermansGuide => "FishermansGuide",
3124 Self::GoblinTech => "GoblinTech",
3125 Self::Rek => "REK",
3126 Self::Pda => "PDA",
3127 Self::CellPhone => "CellPhone",
3128 Self::GraniteChest => "GraniteChest",
3129 Self::MeteoriteClock => "MeteoriteClock",
3130 Self::MarbleClock => "MarbleClock",
3131 Self::GraniteClock => "GraniteClock",
3132 Self::MeteoriteDoor => "MeteoriteDoor",
3133 Self::MarbleDoor => "MarbleDoor",
3134 Self::GraniteDoor => "GraniteDoor",
3135 Self::MeteoriteDresser => "MeteoriteDresser",
3136 Self::MarbleDresser => "MarbleDresser",
3137 Self::GraniteDresser => "GraniteDresser",
3138 Self::MeteoriteLamp => "MeteoriteLamp",
3139 Self::MarbleLamp => "MarbleLamp",
3140 Self::GraniteLamp => "GraniteLamp",
3141 Self::MeteoriteLantern => "MeteoriteLantern",
3142 Self::MarbleLantern => "MarbleLantern",
3143 Self::GraniteLantern => "GraniteLantern",
3144 Self::MeteoritePiano => "MeteoritePiano",
3145 Self::MarblePiano => "MarblePiano",
3146 Self::GranitePiano => "GranitePiano",
3147 Self::MeteoritePlatform => "MeteoritePlatform",
3148 Self::MarblePlatform => "MarblePlatform",
3149 Self::GranitePlatform => "GranitePlatform",
3150 Self::MeteoriteSink => "MeteoriteSink",
3151 Self::MarbleSink => "MarbleSink",
3152 Self::GraniteSink => "GraniteSink",
3153 Self::MeteoriteSofa => "MeteoriteSofa",
3154 Self::MarbleSofa => "MarbleSofa",
3155 Self::GraniteSofa => "GraniteSofa",
3156 Self::MeteoriteTable => "MeteoriteTable",
3157 Self::MarbleTable => "MarbleTable",
3158 Self::GraniteTable => "GraniteTable",
3159 Self::MeteoriteWorkBench => "MeteoriteWorkBench",
3160 Self::MarbleWorkBench => "MarbleWorkBench",
3161 Self::GraniteWorkBench => "GraniteWorkBench",
3162 Self::MeteoriteBathtub => "MeteoriteBathtub",
3163 Self::MarbleBathtub => "MarbleBathtub",
3164 Self::GraniteBathtub => "GraniteBathtub",
3165 Self::MeteoriteBed => "MeteoriteBed",
3166 Self::MarbleBed => "MarbleBed",
3167 Self::GraniteBed => "GraniteBed",
3168 Self::MeteoriteBookcase => "MeteoriteBookcase",
3169 Self::MarbleBookcase => "MarbleBookcase",
3170 Self::GraniteBookcase => "GraniteBookcase",
3171 Self::MeteoriteCandelabra => "MeteoriteCandelabra",
3172 Self::MarbleCandelabra => "MarbleCandelabra",
3173 Self::GraniteCandelabra => "GraniteCandelabra",
3174 Self::MeteoriteCandle => "MeteoriteCandle",
3175 Self::MarbleCandle => "MarbleCandle",
3176 Self::GraniteCandle => "GraniteCandle",
3177 Self::MeteoriteChair => "MeteoriteChair",
3178 Self::MarbleChair => "MarbleChair",
3179 Self::GraniteChair => "GraniteChair",
3180 Self::MeteoriteChandelier => "MeteoriteChandelier",
3181 Self::MarbleChandelier => "MarbleChandelier",
3182 Self::GraniteChandelier => "GraniteChandelier",
3183 Self::MeteoriteChest => "MeteoriteChest",
3184 Self::MarbleChest => "MarbleChest",
3185 Self::MagicWaterDropper => "MagicWaterDropper",
3186 Self::GoldenBugNet => "GoldenBugNet",
3187 Self::MagicLavaDropper => "MagicLavaDropper",
3188 Self::MagicHoneyDropper => "MagicHoneyDropper",
3189 Self::EmptyDropper => "EmptyDropper",
3190 Self::GladiatorHelmet => "GladiatorHelmet",
3191 Self::GladiatorBreastplate => "GladiatorBreastplate",
3192 Self::GladiatorLeggings => "GladiatorLeggings",
3193 Self::ReflectiveDye => "ReflectiveDye",
3194 Self::EnchantedNightcrawler => "EnchantedNightcrawler",
3195 Self::Grubby => "Grubby",
3196 Self::Sluggy => "Sluggy",
3197 Self::Buggy => "Buggy",
3198 Self::GrubSoup => "GrubSoup",
3199 Self::BombFish => "BombFish",
3200 Self::FrostDaggerfish => "FrostDaggerfish",
3201 Self::SharpeningStation => "SharpeningStation",
3202 Self::IceMirror => "IceMirror",
3203 Self::SailfishBoots => "SailfishBoots",
3204 Self::TsunamiInABottle => "TsunamiInABottle",
3205 Self::TargetDummy => "TargetDummy",
3206 Self::CorruptFishingCrate => "CorruptFishingCrate",
3207 Self::CrimsonFishingCrate => "CrimsonFishingCrate",
3208 Self::DungeonFishingCrate => "DungeonFishingCrate",
3209 Self::FloatingIslandFishingCrate => "FloatingIslandFishingCrate",
3210 Self::HallowedFishingCrate => "HallowedFishingCrate",
3211 Self::JungleFishingCrate => "JungleFishingCrate",
3212 Self::CrystalSerpent => "CrystalSerpent",
3213 Self::Toxikarp => "Toxikarp",
3214 Self::Bladetongue => "Bladetongue",
3215 Self::SharkToothNecklace => "SharkToothNecklace",
3216 Self::MoneyTrough => "MoneyTrough",
3217 Self::Bubble => "Bubble",
3218 Self::DayBloomPlanterBox => "DayBloomPlanterBox",
3219 Self::MoonglowPlanterBox => "MoonglowPlanterBox",
3220 Self::CorruptPlanterBox => "CorruptPlanterBox",
3221 Self::CrimsonPlanterBox => "CrimsonPlanterBox",
3222 Self::BlinkrootPlanterBox => "BlinkrootPlanterBox",
3223 Self::WaterleafPlanterBox => "WaterleafPlanterBox",
3224 Self::ShiverthornPlanterBox => "ShiverthornPlanterBox",
3225 Self::FireBlossomPlanterBox => "FireBlossomPlanterBox",
3226 Self::BrainOfConfusion => "BrainOfConfusion",
3227 Self::WormScarf => "WormScarf",
3228 Self::BalloonPufferfish => "BalloonPufferfish",
3229 Self::BejeweledValkyrieHead => "BejeweledValkyrieHead",
3230 Self::BejeweledValkyrieBody => "BejeweledValkyrieBody",
3231 Self::BejeweledValkyrieWing => "BejeweledValkyrieWing",
3232 Self::RichGravestone1 => "RichGravestone1",
3233 Self::RichGravestone2 => "RichGravestone2",
3234 Self::RichGravestone3 => "RichGravestone3",
3235 Self::RichGravestone4 => "RichGravestone4",
3236 Self::RichGravestone5 => "RichGravestone5",
3237 Self::CrystalBlock => "CrystalBlock",
3238 Self::MusicBoxMartians => "MusicBoxMartians",
3239 Self::MusicBoxPirates => "MusicBoxPirates",
3240 Self::MusicBoxHell => "MusicBoxHell",
3241 Self::CrystalBlockWall => "CrystalBlockWall",
3242 Self::Trapdoor => "Trapdoor",
3243 Self::TallGate => "TallGate",
3244 Self::SharkronBalloon => "SharkronBalloon",
3245 Self::TaxCollectorHat => "TaxCollectorHat",
3246 Self::TaxCollectorSuit => "TaxCollectorSuit",
3247 Self::TaxCollectorPants => "TaxCollectorPants",
3248 Self::BoneGlove => "BoneGlove",
3249 Self::ClothierJacket => "ClothierJacket",
3250 Self::ClothierPants => "ClothierPants",
3251 Self::DyeTraderTurban => "DyeTraderTurban",
3252 Self::DeadlySphereStaff => "DeadlySphereStaff",
3253 Self::BalloonHorseshoeFart => "BalloonHorseshoeFart",
3254 Self::BalloonHorseshoeHoney => "BalloonHorseshoeHoney",
3255 Self::BalloonHorseshoeSharkron => "BalloonHorseshoeSharkron",
3256 Self::LavaLamp => "LavaLamp",
3257 Self::CageEnchantedNightcrawler => "CageEnchantedNightcrawler",
3258 Self::CageBuggy => "CageBuggy",
3259 Self::CageGrubby => "CageGrubby",
3260 Self::CageSluggy => "CageSluggy",
3261 Self::SlapHand => "SlapHand",
3262 Self::TwilightHairDye => "TwilightHairDye",
3263 Self::BlessedApple => "BlessedApple",
3264 Self::SpectreBar => "SpectreBar",
3265 Self::Code1 => "Code1",
3266 Self::BuccaneerBandana => "BuccaneerBandana",
3267 Self::BuccaneerShirt => "BuccaneerShirt",
3268 Self::BuccaneerPants => "BuccaneerPants",
3269 Self::ObsidianHelm => "ObsidianHelm",
3270 Self::ObsidianShirt => "ObsidianShirt",
3271 Self::ObsidianPants => "ObsidianPants",
3272 Self::MedusaHead => "MedusaHead",
3273 Self::ItemFrame => "ItemFrame",
3274 Self::Sandstone => "Sandstone",
3275 Self::HardenedSand => "HardenedSand",
3276 Self::SandstoneWall => "SandstoneWall",
3277 Self::CorruptHardenedSand => "CorruptHardenedSand",
3278 Self::CrimsonHardenedSand => "CrimsonHardenedSand",
3279 Self::CorruptSandstone => "CorruptSandstone",
3280 Self::CrimsonSandstone => "CrimsonSandstone",
3281 Self::WoodYoyo => "WoodYoyo",
3282 Self::CorruptYoyo => "CorruptYoyo",
3283 Self::CrimsonYoyo => "CrimsonYoyo",
3284 Self::JungleYoyo => "JungleYoyo",
3285 Self::Cascade => "Cascade",
3286 Self::Chik => "Chik",
3287 Self::Code2 => "Code2",
3288 Self::Rally => "Rally",
3289 Self::Yelets => "Yelets",
3290 Self::RedsYoyo => "RedsYoyo",
3291 Self::ValkyrieYoyo => "ValkyrieYoyo",
3292 Self::Amarok => "Amarok",
3293 Self::HelFire => "HelFire",
3294 Self::Kraken => "Kraken",
3295 Self::TheEyeOfCthulhu => "TheEyeOfCthulhu",
3296 Self::RedString => "RedString",
3297 Self::OrangeString => "OrangeString",
3298 Self::YellowString => "YellowString",
3299 Self::LimeString => "LimeString",
3300 Self::GreenString => "GreenString",
3301 Self::TealString => "TealString",
3302 Self::CyanString => "CyanString",
3303 Self::SkyBlueString => "SkyBlueString",
3304 Self::BlueString => "BlueString",
3305 Self::PurpleString => "PurpleString",
3306 Self::VioletString => "VioletString",
3307 Self::PinkString => "PinkString",
3308 Self::BrownString => "BrownString",
3309 Self::WhiteString => "WhiteString",
3310 Self::RainbowString => "RainbowString",
3311 Self::BlackString => "BlackString",
3312 Self::BlackCounterweight => "BlackCounterweight",
3313 Self::BlueCounterweight => "BlueCounterweight",
3314 Self::GreenCounterweight => "GreenCounterweight",
3315 Self::PurpleCounterweight => "PurpleCounterweight",
3316 Self::RedCounterweight => "RedCounterweight",
3317 Self::YellowCounterweight => "YellowCounterweight",
3318 Self::FormatC => "FormatC",
3319 Self::Gradient => "Gradient",
3320 Self::Valor => "Valor",
3321 Self::KingSlimeBossBag => "KingSlimeBossBag",
3322 Self::EyeOfCthulhuBossBag => "EyeOfCthulhuBossBag",
3323 Self::EaterOfWorldsBossBag => "EaterOfWorldsBossBag",
3324 Self::BrainOfCthulhuBossBag => "BrainOfCthulhuBossBag",
3325 Self::QueenBeeBossBag => "QueenBeeBossBag",
3326 Self::SkeletronBossBag => "SkeletronBossBag",
3327 Self::WallOfFleshBossBag => "WallOfFleshBossBag",
3328 Self::DestroyerBossBag => "DestroyerBossBag",
3329 Self::TwinsBossBag => "TwinsBossBag",
3330 Self::SkeletronPrimeBossBag => "SkeletronPrimeBossBag",
3331 Self::PlanteraBossBag => "PlanteraBossBag",
3332 Self::GolemBossBag => "GolemBossBag",
3333 Self::FishronBossBag => "FishronBossBag",
3334 Self::CultistBossBag => "CultistBossBag",
3335 Self::MoonLordBossBag => "MoonLordBossBag",
3336 Self::HiveBackpack => "HiveBackpack",
3337 Self::YoYoGlove => "YoYoGlove",
3338 Self::DemonHeart => "DemonHeart",
3339 Self::SporeSac => "SporeSac",
3340 Self::ShinyStone => "ShinyStone",
3341 Self::HallowHardenedSand => "HallowHardenedSand",
3342 Self::HallowSandstone => "HallowSandstone",
3343 Self::HardenedSandWall => "HardenedSandWall",
3344 Self::CorruptHardenedSandWall => "CorruptHardenedSandWall",
3345 Self::CrimsonHardenedSandWall => "CrimsonHardenedSandWall",
3346 Self::HallowHardenedSandWall => "HallowHardenedSandWall",
3347 Self::CorruptSandstoneWall => "CorruptSandstoneWall",
3348 Self::CrimsonSandstoneWall => "CrimsonSandstoneWall",
3349 Self::HallowSandstoneWall => "HallowSandstoneWall",
3350 Self::DesertFossil => "DesertFossil",
3351 Self::DesertFossilWall => "DesertFossilWall",
3352 Self::DyeTradersScimitar => "DyeTradersScimitar",
3353 Self::PainterPaintballGun => "PainterPaintballGun",
3354 Self::TaxCollectorsStickOfDoom => "TaxCollectorsStickOfDoom",
3355 Self::StylistKilLaKillScissorsIWish => "StylistKilLaKillScissorsIWish",
3356 Self::MinecartMech => "MinecartMech",
3357 Self::MechanicalWheelPiece => "MechanicalWheelPiece",
3358 Self::MechanicalWagonPiece => "MechanicalWagonPiece",
3359 Self::MechanicalBatteryPiece => "MechanicalBatteryPiece",
3360 Self::AncientCultistTrophy => "AncientCultistTrophy",
3361 Self::MartianSaucerTrophy => "MartianSaucerTrophy",
3362 Self::FlyingDutchmanTrophy => "FlyingDutchmanTrophy",
3363 Self::LivingMahoganyWand => "LivingMahoganyWand",
3364 Self::LivingMahoganyLeafWand => "LivingMahoganyLeafWand",
3365 Self::FallenTuxedoShirt => "FallenTuxedoShirt",
3366 Self::FallenTuxedoPants => "FallenTuxedoPants",
3367 Self::Fireplace => "Fireplace",
3368 Self::Chimney => "Chimney",
3369 Self::YoyoBag => "YoyoBag",
3370 Self::ShrimpyTruffle => "ShrimpyTruffle",
3371 Self::Arkhalis => "Arkhalis",
3372 Self::ConfettiCannon => "ConfettiCannon",
3373 Self::MusicBoxTowers => "MusicBoxTowers",
3374 Self::MusicBoxGoblins => "MusicBoxGoblins",
3375 Self::BossMaskCultist => "BossMaskCultist",
3376 Self::BossMaskMoonlord => "BossMaskMoonlord",
3377 Self::FossilHelm => "FossilHelm",
3378 Self::FossilShirt => "FossilShirt",
3379 Self::FossilPants => "FossilPants",
3380 Self::AmberStaff => "AmberStaff",
3381 Self::BoneJavelin => "BoneJavelin",
3382 Self::BoneDagger => "BoneDagger",
3383 Self::FossilOre => "FossilOre",
3384 Self::StardustHelmet => "StardustHelmet",
3385 Self::StardustBreastplate => "StardustBreastplate",
3386 Self::StardustLeggings => "StardustLeggings",
3387 Self::PortalGun => "PortalGun",
3388 Self::StrangePlant1 => "StrangePlant1",
3389 Self::StrangePlant2 => "StrangePlant2",
3390 Self::StrangePlant3 => "StrangePlant3",
3391 Self::StrangePlant4 => "StrangePlant4",
3392 Self::Terrarian => "Terrarian",
3393 Self::GoblinSummonerBanner => "GoblinSummonerBanner",
3394 Self::SalamanderBanner => "SalamanderBanner",
3395 Self::GiantShellyBanner => "GiantShellyBanner",
3396 Self::CrawdadBanner => "CrawdadBanner",
3397 Self::FritzBanner => "FritzBanner",
3398 Self::CreatureFromTheDeepBanner => "CreatureFromTheDeepBanner",
3399 Self::DrManFlyBanner => "DrManFlyBanner",
3400 Self::MothronBanner => "MothronBanner",
3401 Self::SeveredHandBanner => "SeveredHandBanner",
3402 Self::ThePossessedBanner => "ThePossessedBanner",
3403 Self::ButcherBanner => "ButcherBanner",
3404 Self::PsychoBanner => "PsychoBanner",
3405 Self::DeadlySphereBanner => "DeadlySphereBanner",
3406 Self::NailheadBanner => "NailheadBanner",
3407 Self::PoisonousSporeBanner => "PoisonousSporeBanner",
3408 Self::MedusaBanner => "MedusaBanner",
3409 Self::GreekSkeletonBanner => "GreekSkeletonBanner",
3410 Self::GraniteFlyerBanner => "GraniteFlyerBanner",
3411 Self::GraniteGolemBanner => "GraniteGolemBanner",
3412 Self::BloodZombieBanner => "BloodZombieBanner",
3413 Self::DripplerBanner => "DripplerBanner",
3414 Self::TombCrawlerBanner => "TombCrawlerBanner",
3415 Self::DuneSplicerBanner => "DuneSplicerBanner",
3416 Self::FlyingAntlionBanner => "FlyingAntlionBanner",
3417 Self::WalkingAntlionBanner => "WalkingAntlionBanner",
3418 Self::DesertGhoulBanner => "DesertGhoulBanner",
3419 Self::DesertLamiaBanner => "DesertLamiaBanner",
3420 Self::DesertDjinnBanner => "DesertDjinnBanner",
3421 Self::DesertBasiliskBanner => "DesertBasiliskBanner",
3422 Self::RavagerScorpionBanner => "RavagerScorpionBanner",
3423 Self::StardustSoldierBanner => "StardustSoldierBanner",
3424 Self::StardustWormBanner => "StardustWormBanner",
3425 Self::StardustJellyfishBanner => "StardustJellyfishBanner",
3426 Self::StardustSpiderBanner => "StardustSpiderBanner",
3427 Self::StardustSmallCellBanner => "StardustSmallCellBanner",
3428 Self::StardustLargeCellBanner => "StardustLargeCellBanner",
3429 Self::SolarCoriteBanner => "SolarCoriteBanner",
3430 Self::SolarSrollerBanner => "SolarSrollerBanner",
3431 Self::SolarCrawltipedeBanner => "SolarCrawltipedeBanner",
3432 Self::SolarDrakomireRiderBanner => "SolarDrakomireRiderBanner",
3433 Self::SolarDrakomireBanner => "SolarDrakomireBanner",
3434 Self::SolarSelenianBanner => "SolarSolenianBanner",
3435 Self::NebulaSoldierBanner => "NebulaSoldierBanner",
3436 Self::NebulaHeadcrabBanner => "NebulaHeadcrabBanner",
3437 Self::NebulaBrainBanner => "NebulaBrainBanner",
3438 Self::NebulaBeastBanner => "NebulaBeastBanner",
3439 Self::VortexLarvaBanner => "VortexLarvaBanner",
3440 Self::VortexHornetQueenBanner => "VortexHornetQueenBanner",
3441 Self::VortexHornetBanner => "VortexHornetBanner",
3442 Self::VortexSoldierBanner => "VortexSoldierBanner",
3443 Self::VortexRiflemanBanner => "VortexRiflemanBanner",
3444 Self::PirateCaptainBanner => "PirateCaptainBanner",
3445 Self::PirateDeadeyeBanner => "PirateDeadeyeBanner",
3446 Self::PirateCorsairBanner => "PirateCorsairBanner",
3447 Self::PirateCrossbowerBanner => "PirateCrossbowerBanner",
3448 Self::MartianWalkerBanner => "MartianWalkerBanner",
3449 Self::RedDevilBanner => "RedDevilBanner",
3450 Self::PinkJellyfishBanner => "PinkJellyfishBanner",
3451 Self::GreenJellyfishBanner => "GreenJellyfishBanner",
3452 Self::DarkMummyBanner => "DarkMummyBanner",
3453 Self::LightMummyBanner => "LightMummyBanner",
3454 Self::AngryBonesBanner => "AngryBonesBanner",
3455 Self::IceTortoiseBanner => "IceTortoiseBanner",
3456 Self::NebulaPickup1 => "NebulaPickup1",
3457 Self::NebulaPickup2 => "NebulaPickup2",
3458 Self::NebulaPickup3 => "NebulaPickup3",
3459 Self::FragmentVortex => "FragmentVortex",
3460 Self::FragmentNebula => "FragmentNebula",
3461 Self::FragmentSolar => "FragmentSolar",
3462 Self::FragmentStardust => "FragmentStardust",
3463 Self::LunarOre => "LunarOre",
3464 Self::LunarBrick => "LunarBrick",
3465 Self::StardustAxe => "StardustAxe",
3466 Self::StardustChainsaw => "StardustChainsaw",
3467 Self::StardustDrill => "StardustDrill",
3468 Self::StardustHammer => "StardustHammer",
3469 Self::StardustPickaxe => "StardustPickaxe",
3470 Self::LunarBar => "LunarBar",
3471 Self::WingsSolar => "WingsSolar",
3472 Self::WingsVortex => "WingsVortex",
3473 Self::WingsNebula => "WingsNebula",
3474 Self::WingsStardust => "WingsStardust",
3475 Self::LunarBrickWall => "LunarBrickWall",
3476 Self::SolarEruption => "SolarEruption",
3477 Self::StardustCellStaff => "StardustCellStaff",
3478 Self::VortexBeater => "VortexBeater",
3479 Self::NebulaArcanum => "NebulaArcanum",
3480 Self::BloodWater => "BloodWater",
3481 Self::TheBrideHat => "TheBrideHat",
3482 Self::TheBrideDress => "TheBrideDress",
3483 Self::PlatinumBow => "PlatinumBow",
3484 Self::PlatinumHammer => "PlatinumHammer",
3485 Self::PlatinumAxe => "PlatinumAxe",
3486 Self::PlatinumShortsword => "PlatinumShortsword",
3487 Self::PlatinumBroadsword => "PlatinumBroadsword",
3488 Self::PlatinumPickaxe => "PlatinumPickaxe",
3489 Self::TungstenBow => "TungstenBow",
3490 Self::TungstenHammer => "TungstenHammer",
3491 Self::TungstenAxe => "TungstenAxe",
3492 Self::TungstenShortsword => "TungstenShortsword",
3493 Self::TungstenBroadsword => "TungstenBroadsword",
3494 Self::TungstenPickaxe => "TungstenPickaxe",
3495 Self::LeadBow => "LeadBow",
3496 Self::LeadHammer => "LeadHammer",
3497 Self::LeadAxe => "LeadAxe",
3498 Self::LeadShortsword => "LeadShortsword",
3499 Self::LeadBroadsword => "LeadBroadsword",
3500 Self::LeadPickaxe => "LeadPickaxe",
3501 Self::TinBow => "TinBow",
3502 Self::TinHammer => "TinHammer",
3503 Self::TinAxe => "TinAxe",
3504 Self::TinShortsword => "TinShortsword",
3505 Self::TinBroadsword => "TinBroadsword",
3506 Self::TinPickaxe => "TinPickaxe",
3507 Self::CopperBow => "CopperBow",
3508 Self::CopperHammer => "CopperHammer",
3509 Self::CopperAxe => "CopperAxe",
3510 Self::CopperShortsword => "CopperShortsword",
3511 Self::CopperBroadsword => "CopperBroadsword",
3512 Self::CopperPickaxe => "CopperPickaxe",
3513 Self::SilverBow => "SilverBow",
3514 Self::SilverHammer => "SilverHammer",
3515 Self::SilverAxe => "SilverAxe",
3516 Self::SilverShortsword => "SilverShortsword",
3517 Self::SilverBroadsword => "SilverBroadsword",
3518 Self::SilverPickaxe => "SilverPickaxe",
3519 Self::GoldBow => "GoldBow",
3520 Self::GoldHammer => "GoldHammer",
3521 Self::GoldAxe => "GoldAxe",
3522 Self::GoldShortsword => "GoldShortsword",
3523 Self::GoldBroadsword => "GoldBroadsword",
3524 Self::GoldPickaxe => "GoldPickaxe",
3525 Self::LunarHamaxeSolar => "LunarHamaxeSolar",
3526 Self::LunarHamaxeVortex => "LunarHamaxeVortex",
3527 Self::LunarHamaxeNebula => "LunarHamaxeNebula",
3528 Self::LunarHamaxeStardust => "LunarHamaxeStardust",
3529 Self::SolarDye => "SolarDye",
3530 Self::NebulaDye => "NebulaDye",
3531 Self::VortexDye => "VortexDye",
3532 Self::StardustDye => "StardustDye",
3533 Self::VoidDye => "VoidDye",
3534 Self::StardustDragonStaff => "StardustDragonStaff",
3535 Self::Bacon => "Bacon",
3536 Self::ShiftingSandsDye => "ShiftingSandsDye",
3537 Self::MirageDye => "MirageDye",
3538 Self::ShiftingPearlSandsDye => "ShiftingPearlSandsDye",
3539 Self::VortexMonolith => "VortexMonolith",
3540 Self::NebulaMonolith => "NebulaMonolith",
3541 Self::StardustMonolith => "StardustMonolith",
3542 Self::SolarMonolith => "SolarMonolith",
3543 Self::Phantasm => "Phantasm",
3544 Self::LastPrism => "LastPrism",
3545 Self::NebulaBlaze => "NebulaBlaze",
3546 Self::DayBreak => "DayBreak",
3547 Self::SuperHealingPotion => "SuperHealingPotion",
3548 Self::Detonator => "Detonator",
3549 Self::FireworksLauncher => "FireworksLauncher",
3550 Self::BouncyDynamite => "BouncyDynamite",
3551 Self::PartyGirlGrenade => "PartyGirlGrenade",
3552 Self::LunarCraftingStation => "LunarCraftingStation",
3553 Self::FlameAndSilverDye => "FlameAndSilverDye",
3554 Self::GreenFlameAndSilverDye => "GreenFlameAndSilverDye",
3555 Self::BlueFlameAndSilverDye => "BlueFlameAndSilverDye",
3556 Self::ReflectiveCopperDye => "ReflectiveCopperDye",
3557 Self::ReflectiveObsidianDye => "ReflectiveObsidianDye",
3558 Self::ReflectiveMetalDye => "ReflectiveMetalDye",
3559 Self::MidnightRainbowDye => "MidnightRainbowDye",
3560 Self::BlackAndWhiteDye => "BlackAndWhiteDye",
3561 Self::BrightSilverDye => "BrightSilverDye",
3562 Self::SilverAndBlackDye => "SilverAndBlackDye",
3563 Self::RedAcidDye => "RedAcidDye",
3564 Self::GelDye => "GelDye",
3565 Self::PinkGelDye => "PinkGelDye",
3566 Self::SquirrelRed => "SquirrelRed",
3567 Self::SquirrelGold => "SquirrelGold",
3568 Self::SquirrelOrangeCage => "SquirrelOrangeCage",
3569 Self::SquirrelGoldCage => "SquirrelGoldCage",
3570 Self::MoonlordBullet => "MoonlordBullet",
3571 Self::MoonlordArrow => "MoonlordArrow",
3572 Self::MoonlordTurretStaff => "MoonlordTurretStaff",
3573 Self::LunarFlareBook => "LunarFlareBook",
3574 Self::RainbowCrystalStaff => "RainbowCrystalStaff",
3575 Self::LunarHook => "LunarHook",
3576 Self::LunarBlockSolar => "LunarBlockSolar",
3577 Self::LunarBlockVortex => "LunarBlockVortex",
3578 Self::LunarBlockNebula => "LunarBlockNebula",
3579 Self::LunarBlockStardust => "LunarBlockStardust",
3580 Self::SuspiciousLookingTentacle => "SuspiciousLookingTentacle",
3581 Self::Yoraiz0rShirt => "Yoraiz0rShirt",
3582 Self::Yoraiz0rPants => "Yoraiz0rPants",
3583 Self::Yoraiz0rWings => "Yoraiz0rWings",
3584 Self::Yoraiz0rDarkness => "Yoraiz0rDarkness",
3585 Self::JimsWings => "JimsWings",
3586 Self::Yoraiz0rHead => "Yoraiz0rHead",
3587 Self::LivingLeafWall => "LivingLeafWall",
3588 Self::SkiphsHelm => "SkiphsHelm",
3589 Self::SkiphsShirt => "SkiphsShirt",
3590 Self::SkiphsPants => "SkiphsPants",
3591 Self::SkiphsWings => "SkiphsWings",
3592 Self::LokisHelm => "LokisHelm",
3593 Self::LokisShirt => "LokisShirt",
3594 Self::LokisPants => "LokisPants",
3595 Self::LokisWings => "LokisWings",
3596 Self::SandSlimeBanner => "SandSlimeBanner",
3597 Self::SeaSnailBanner => "SeaSnailBanner",
3598 Self::MoonLordTrophy => "MoonLordTrophy",
3599 Self::MoonLordPainting => "MoonLordPainting",
3600 Self::BurningHadesDye => "BurningHadesDye",
3601 Self::GrimDye => "GrimDye",
3602 Self::LokisDye => "LokisDye",
3603 Self::ShadowflameHadesDye => "ShadowflameHadesDye",
3604 Self::CelestialSigil => "CelestialSigil",
3605 Self::LogicGateLampOff => "LogicGateLamp_Off",
3606 Self::LogicGateAnd => "LogicGate_AND",
3607 Self::LogicGateOr => "LogicGate_OR",
3608 Self::LogicGateNand => "LogicGate_NAND",
3609 Self::LogicGateNor => "LogicGate_NOR",
3610 Self::LogicGateXor => "LogicGate_XOR",
3611 Self::LogicGateNxor => "LogicGate_NXOR",
3612 Self::ConveyorBeltLeft => "ConveyorBeltLeft",
3613 Self::ConveyorBeltRight => "ConveyorBeltRight",
3614 Self::WireKite => "WireKite",
3615 Self::YellowWrench => "YellowWrench",
3616 Self::LogicSensorSun => "LogicSensor_Sun",
3617 Self::LogicSensorMoon => "LogicSensor_Moon",
3618 Self::LogicSensorAbove => "LogicSensor_Above",
3619 Self::WirePipe => "WirePipe",
3620 Self::AnnouncementBox => "AnnouncementBox",
3621 Self::LogicGateLampOn => "LogicGateLamp_On",
3622 Self::MechanicalLens => "MechanicalLens",
3623 Self::ActuationRod => "ActuationRod",
3624 Self::TeamBlockRed => "TeamBlockRed",
3625 Self::TeamBlockRedPlatform => "TeamBlockRedPlatform",
3626 Self::StaticHook => "StaticHook",
3627 Self::ActuationAccessory => "ActuationAccessory",
3628 Self::MulticolorWrench => "MulticolorWrench",
3629 Self::WeightedPressurePlatePink => "WeightedPressurePlatePink",
3630 Self::EngineeringHelmet => "EngineeringHelmet",
3631 Self::CompanionCube => "CompanionCube",
3632 Self::WireBulb => "WireBulb",
3633 Self::WeightedPressurePlateOrange => "WeightedPressurePlateOrange",
3634 Self::WeightedPressurePlatePurple => "WeightedPressurePlatePurple",
3635 Self::WeightedPressurePlateCyan => "WeightedPressurePlateCyan",
3636 Self::TeamBlockGreen => "TeamBlockGreen",
3637 Self::TeamBlockBlue => "TeamBlockBlue",
3638 Self::TeamBlockYellow => "TeamBlockYellow",
3639 Self::TeamBlockPink => "TeamBlockPink",
3640 Self::TeamBlockWhite => "TeamBlockWhite",
3641 Self::TeamBlockGreenPlatform => "TeamBlockGreenPlatform",
3642 Self::TeamBlockBluePlatform => "TeamBlockBluePlatform",
3643 Self::TeamBlockYellowPlatform => "TeamBlockYellowPlatform",
3644 Self::TeamBlockPinkPlatform => "TeamBlockPinkPlatform",
3645 Self::TeamBlockWhitePlatform => "TeamBlockWhitePlatform",
3646 Self::LargeAmber => "LargeAmber",
3647 Self::GemLockRuby => "GemLockRuby",
3648 Self::GemLockSapphire => "GemLockSapphire",
3649 Self::GemLockEmerald => "GemLockEmerald",
3650 Self::GemLockTopaz => "GemLockTopaz",
3651 Self::GemLockAmethyst => "GemLockAmethyst",
3652 Self::GemLockDiamond => "GemLockDiamond",
3653 Self::GemLockAmber => "GemLockAmber",
3654 Self::SquirrelStatue => "SquirrelStatue",
3655 Self::ButterflyStatue => "ButterflyStatue",
3656 Self::WormStatue => "WormStatue",
3657 Self::FireflyStatue => "FireflyStatue",
3658 Self::ScorpionStatue => "ScorpionStatue",
3659 Self::SnailStatue => "SnailStatue",
3660 Self::GrasshopperStatue => "GrasshopperStatue",
3661 Self::MouseStatue => "MouseStatue",
3662 Self::DuckStatue => "DuckStatue",
3663 Self::PenguinStatue => "PenguinStatue",
3664 Self::FrogStatue => "FrogStatue",
3665 Self::BuggyStatue => "BuggyStatue",
3666 Self::LogicGateLampFaulty => "LogicGateLamp_Faulty",
3667 Self::PortalGunStation => "PortalGunStation",
3668 Self::FakeChest => "Fake_Chest",
3669 Self::FakeGoldChest => "Fake_GoldChest",
3670 Self::FakeShadowChest => "Fake_ShadowChest",
3671 Self::FakeEbonwoodChest => "Fake_EbonwoodChest",
3672 Self::FakeRichMahoganyChest => "Fake_RichMahoganyChest",
3673 Self::FakePearlwoodChest => "Fake_PearlwoodChest",
3674 Self::FakeIvyChest => "Fake_IvyChest",
3675 Self::FakeIceChest => "Fake_IceChest",
3676 Self::FakeLivingWoodChest => "Fake_LivingWoodChest",
3677 Self::FakeSkywareChest => "Fake_SkywareChest",
3678 Self::FakeShadewoodChest => "Fake_ShadewoodChest",
3679 Self::FakeWebCoveredChest => "Fake_WebCoveredChest",
3680 Self::FakeLihzahrdChest => "Fake_LihzahrdChest",
3681 Self::FakeWaterChest => "Fake_WaterChest",
3682 Self::FakeJungleChest => "Fake_JungleChest",
3683 Self::FakeCorruptionChest => "Fake_CorruptionChest",
3684 Self::FakeCrimsonChest => "Fake_CrimsonChest",
3685 Self::FakeHallowedChest => "Fake_HallowedChest",
3686 Self::FakeFrozenChest => "Fake_FrozenChest",
3687 Self::FakeDynastyChest => "Fake_DynastyChest",
3688 Self::FakeHoneyChest => "Fake_HoneyChest",
3689 Self::FakeSteampunkChest => "Fake_SteampunkChest",
3690 Self::FakePalmWoodChest => "Fake_PalmWoodChest",
3691 Self::FakeMushroomChest => "Fake_MushroomChest",
3692 Self::FakeBorealWoodChest => "Fake_BorealWoodChest",
3693 Self::FakeSlimeChest => "Fake_SlimeChest",
3694 Self::FakeGreenDungeonChest => "Fake_GreenDungeonChest",
3695 Self::FakePinkDungeonChest => "Fake_PinkDungeonChest",
3696 Self::FakeBlueDungeonChest => "Fake_BlueDungeonChest",
3697 Self::FakeBoneChest => "Fake_BoneChest",
3698 Self::FakeCactusChest => "Fake_CactusChest",
3699 Self::FakeFleshChest => "Fake_FleshChest",
3700 Self::FakeObsidianChest => "Fake_ObsidianChest",
3701 Self::FakePumpkinChest => "Fake_PumpkinChest",
3702 Self::FakeSpookyChest => "Fake_SpookyChest",
3703 Self::FakeGlassChest => "Fake_GlassChest",
3704 Self::FakeMartianChest => "Fake_MartianChest",
3705 Self::FakeMeteoriteChest => "Fake_MeteoriteChest",
3706 Self::FakeGraniteChest => "Fake_GraniteChest",
3707 Self::FakeMarbleChest => "Fake_MarbleChest",
3708 Self::FakeNewChest1 => "Fake_newchest1",
3709 Self::FakeNewChest2 => "Fake_newchest2",
3710 Self::ProjectilePressurePad => "ProjectilePressurePad",
3711 Self::WallCreeperStatue => "WallCreeperStatue",
3712 Self::UnicornStatue => "UnicornStatue",
3713 Self::DripplerStatue => "DripplerStatue",
3714 Self::WraithStatue => "WraithStatue",
3715 Self::BoneSkeletonStatue => "BoneSkeletonStatue",
3716 Self::UndeadVikingStatue => "UndeadVikingStatue",
3717 Self::MedusaStatue => "MedusaStatue",
3718 Self::HarpyStatue => "HarpyStatue",
3719 Self::PigronStatue => "PigronStatue",
3720 Self::HopliteStatue => "HopliteStatue",
3721 Self::GraniteGolemStatue => "GraniteGolemStatue",
3722 Self::ZombieArmStatue => "ZombieArmStatue",
3723 Self::BloodZombieStatue => "BloodZombieStatue",
3724 Self::AnglerTackleBag => "AnglerTackleBag",
3725 Self::GeyserTrap => "GeyserTrap",
3726 Self::UltraBrightCampfire => "UltraBrightCampfire",
3727 Self::BoneCampfire => "BoneCampfire",
3728 Self::PixelBox => "PixelBox",
3729 Self::LogicSensorWater => "LogicSensor_Water",
3730 Self::LogicSensorLava => "LogicSensor_Lava",
3731 Self::LogicSensorHoney => "LogicSensor_Honey",
3732 Self::LogicSensorLiquid => "LogicSensor_Liquid",
3733 Self::PartyBundleOfBalloonsAccessory => "PartyBundleOfBalloonsAccessory",
3734 Self::PartyBalloonAnimal => "PartyBalloonAnimal",
3735 Self::PartyHat => "PartyHat",
3736 Self::FlowerBoyHat => "FlowerBoyHat",
3737 Self::FlowerBoyShirt => "FlowerBoyShirt",
3738 Self::FlowerBoyPants => "FlowerBoyPants",
3739 Self::SillyBalloonPink => "SillyBalloonPink",
3740 Self::SillyBalloonPurple => "SillyBalloonPurple",
3741 Self::SillyBalloonGreen => "SillyBalloonGreen",
3742 Self::SillyStreamerBlue => "SillyStreamerBlue",
3743 Self::SillyStreamerGreen => "SillyStreamerGreen",
3744 Self::SillyStreamerPink => "SillyStreamerPink",
3745 Self::SillyBalloonMachine => "SillyBalloonMachine",
3746 Self::SillyBalloonTiedPink => "SillyBalloonTiedPink",
3747 Self::SillyBalloonTiedPurple => "SillyBalloonTiedPurple",
3748 Self::SillyBalloonTiedGreen => "SillyBalloonTiedGreen",
3749 Self::Pigronata => "Pigronata",
3750 Self::PartyMonolith => "PartyMonolith",
3751 Self::PartyBundleOfBalloonTile => "PartyBundleOfBalloonTile",
3752 Self::PartyPresent => "PartyPresent",
3753 Self::SliceOfCake => "SliceOfCake",
3754 Self::CogWall => "CogWall",
3755 Self::SandFallWall => "SandFallWall",
3756 Self::SnowFallWall => "SnowFallWall",
3757 Self::SandFallBlock => "SandFallBlock",
3758 Self::SnowFallBlock => "SnowFallBlock",
3759 Self::SnowCloudBlock => "SnowCloudBlock",
3760 Self::PedguinHat => "PedguinHat",
3761 Self::PedguinShirt => "PedguinShirt",
3762 Self::PedguinPants => "PedguinPants",
3763 Self::SillyBalloonPinkWall => "SillyBalloonPinkWall",
3764 Self::SillyBalloonPurpleWall => "SillyBalloonPurpleWall",
3765 Self::SillyBalloonGreenWall => "SillyBalloonGreenWall",
3766 Self::AviatorSunglasses => "AviatorSunglasses",
3767 Self::BluePhasesaber => "BluePhasesaber",
3768 Self::RedPhasesaber => "RedPhasesaber",
3769 Self::GreenPhasesaber => "GreenPhasesaber",
3770 Self::PurplePhasesaber => "PurplePhasesaber",
3771 Self::WhitePhasesaber => "WhitePhasesaber",
3772 Self::YellowPhasesaber => "YellowPhasesaber",
3773 Self::DjinnsCurse => "DjinnsCurse",
3774 Self::AncientHorn => "AncientHorn",
3775 Self::AntlionClaw => "AntlionClaw",
3776 Self::AncientArmorHat => "AncientArmorHat",
3777 Self::AncientArmorShirt => "AncientArmorShirt",
3778 Self::AncientArmorPants => "AncientArmorPants",
3779 Self::AncientBattleArmorHat => "AncientBattleArmorHat",
3780 Self::AncientBattleArmorShirt => "AncientBattleArmorShirt",
3781 Self::AncientBattleArmorPants => "AncientBattleArmorPants",
3782 Self::SpiritFlame => "SpiritFlame",
3783 Self::SandElementalBanner => "SandElementalBanner",
3784 Self::PocketMirror => "PocketMirror",
3785 Self::MagicSandDropper => "MagicSandDropper",
3786 Self::AncientBattleArmorMaterial => "AncientBattleArmorMaterial",
3787 Self::LamiaPants => "LamiaPants",
3788 Self::LamiaShirt => "LamiaShirt",
3789 Self::LamiaHat => "LamiaHat",
3790 Self::SkyFracture => "SkyFracture",
3791 Self::OnyxBlaster => "OnyxBlaster",
3792 Self::SandsharkBanner => "SandsharkBanner",
3793 Self::SandsharkCorruptBanner => "SandsharkCorruptBanner",
3794 Self::SandsharkCrimsonBanner => "SandsharkCrimsonBanner",
3795 Self::SandsharkHallowedBanner => "SandsharkHallowedBanner",
3796 Self::TumbleweedBanner => "TumbleweedBanner",
3797 Self::AncientCloth => "AncientCloth",
3798 Self::DjinnLamp => "DjinnLamp",
3799 Self::MusicBoxSandstorm => "MusicBoxSandstorm",
3800 Self::ApprenticeHat => "ApprenticeHat",
3801 Self::ApprenticeRobe => "ApprenticeRobe",
3802 Self::ApprenticeTrousers => "ApprenticeTrousers",
3803 Self::SquireGreatHelm => "SquireGreatHelm",
3804 Self::SquirePlating => "SquirePlating",
3805 Self::SquireGreaves => "SquireGreaves",
3806 Self::HuntressWig => "HuntressWig",
3807 Self::HuntressJerkin => "HuntressJerkin",
3808 Self::HuntressPants => "HuntressPants",
3809 Self::MonkBrows => "MonkBrows",
3810 Self::MonkShirt => "MonkShirt",
3811 Self::MonkPants => "MonkPants",
3812 Self::ApprenticeScarf => "ApprenticeScarf",
3813 Self::SquireShield => "SquireShield",
3814 Self::HuntressBuckler => "HuntressBuckler",
3815 Self::MonkBelt => "MonkBelt",
3816 Self::DefendersForge => "DefendersForge",
3817 Self::WarTable => "WarTable",
3818 Self::WarTableBanner => "WarTableBanner",
3819 Self::DD2ElderCrystalStand => "DD2ElderCrystalStand",
3820 Self::DefenderMedal => "DefenderMedal",
3821 Self::DD2FlameburstTowerT1Popper => "DD2FlameburstTowerT1Popper",
3822 Self::DD2FlameburstTowerT2Popper => "DD2FlameburstTowerT2Popper",
3823 Self::DD2FlameburstTowerT3Popper => "DD2FlameburstTowerT3Popper",
3824 Self::AleThrowingGlove => "AleThrowingGlove",
3825 Self::DD2EnergyCrystal => "DD2EnergyCrystal",
3826 Self::DD2SquireDemonSword => "DD2SquireDemonSword",
3827 Self::DD2BallistraTowerT1Popper => "DD2BallistraTowerT1Popper",
3828 Self::DD2BallistraTowerT2Popper => "DD2BallistraTowerT2Popper",
3829 Self::DD2BallistraTowerT3Popper => "DD2BallistraTowerT3Popper",
3830 Self::DD2SquireBetsySword => "DD2SquireBetsySword",
3831 Self::DD2ElderCrystal => "DD2ElderCrystal",
3832 Self::DD2LightningAuraT1Popper => "DD2LightningAuraT1Popper",
3833 Self::DD2LightningAuraT2Popper => "DD2LightningAuraT2Popper",
3834 Self::DD2LightningAuraT3Popper => "DD2LightningAuraT3Popper",
3835 Self::DD2ExplosiveTrapT1Popper => "DD2ExplosiveTrapT1Popper",
3836 Self::DD2ExplosiveTrapT2Popper => "DD2ExplosiveTrapT2Popper",
3837 Self::DD2ExplosiveTrapT3Popper => "DD2ExplosiveTrapT3Popper",
3838 Self::MonkStaffT1 => "MonkStaffT1",
3839 Self::MonkStaffT2 => "MonkStaffT2",
3840 Self::DD2GoblinBomberBanner => "DD2GoblinBomberBanner",
3841 Self::DD2GoblinBanner => "DD2GoblinBanner",
3842 Self::DD2SkeletonBanner => "DD2SkeletonBanner",
3843 Self::DD2DrakinBanner => "DD2DrakinBanner",
3844 Self::DD2KoboldFlyerBanner => "DD2KoboldFlyerBanner",
3845 Self::DD2KoboldBanner => "DD2KoboldBanner",
3846 Self::DD2WitherBeastBanner => "DD2WitherBeastBanner",
3847 Self::DD2WyvernBanner => "DD2WyvernBanner",
3848 Self::DD2JavelinThrowerBanner => "DD2JavelinThrowerBanner",
3849 Self::DD2LightningBugBanner => "DD2LightningBugBanner",
3850 Self::OgreMask => "OgreMask",
3851 Self::GoblinMask => "GoblinMask",
3852 Self::GoblinBomberCap => "GoblinBomberCap",
3853 Self::EtherianJavelin => "EtherianJavelin",
3854 Self::KoboldDynamiteBackpack => "KoboldDynamiteBackpack",
3855 Self::BookStaff => "BookStaff",
3856 Self::BoringBow => "BoringBow",
3857 Self::DD2PhoenixBow => "DD2PhoenixBow",
3858 Self::DD2PetGato => "DD2PetGato",
3859 Self::DD2PetGhost => "DD2PetGhost",
3860 Self::DD2PetDragon => "DD2PetDragon",
3861 Self::MonkStaffT3 => "MonkStaffT3",
3862 Self::DD2BetsyBow => "DD2BetsyBow",
3863 Self::BossBagBetsy => "BossBagBetsy",
3864 Self::BossBagOgre => "BossBagOgre",
3865 Self::BossBagDarkMage => "BossBagDarkMage",
3866 Self::BossMaskBetsy => "BossMaskBetsy",
3867 Self::BossMaskDarkMage => "BossMaskDarkMage",
3868 Self::BossMaskOgre => "BossMaskOgre",
3869 Self::BossTrophyBetsy => "BossTrophyBetsy",
3870 Self::BossTrophyDarkmage => "BossTrophyDarkmage",
3871 Self::BossTrophyOgre => "BossTrophyOgre",
3872 Self::MusicBoxDD2 => "MusicBoxDD2",
3873 Self::ApprenticeStaffT3 => "ApprenticeStaffT3",
3874 Self::SquireAltHead => "SquireAltHead",
3875 Self::SquireAltShirt => "SquireAltShirt",
3876 Self::SquireAltPants => "SquireAltPants",
3877 Self::ApprenticeAltHead => "ApprenticeAltHead",
3878 Self::ApprenticeAltShirt => "ApprenticeAltShirt",
3879 Self::ApprenticeAltPants => "ApprenticeAltPants",
3880 Self::HuntressAltHead => "HuntressAltHead",
3881 Self::HuntressAltShirt => "HuntressAltShirt",
3882 Self::HuntressAltPants => "HuntressAltPants",
3883 Self::MonkAltHead => "MonkAltHead",
3884 Self::MonkAltShirt => "MonkAltShirt",
3885 Self::MonkAltPants => "MonkAltPants",
3886 Self::BetsyWings => "BetsyWings",
3887 Self::CrystalChest => "CrystalChest",
3888 Self::GoldenChest => "GoldenChest",
3889 Self::FakeCrystalChest => "Fake_CrystalChest",
3890 Self::FakeGoldenChest => "Fake_GoldenChest",
3891 Self::CrystalDoor => "CrystalDoor",
3892 Self::CrystalChair => "CrystalChair",
3893 Self::CrystalCandle => "CrystalCandle",
3894 Self::CrystalLantern => "CrystalLantern",
3895 Self::CrystalLamp => "CrystalLamp",
3896 Self::CrystalCandelabra => "CrystalCandelabra",
3897 Self::CrystalChandelier => "CrystalChandelier",
3898 Self::CrystalBathtub => "CrystalBathtub",
3899 Self::CrystalSink => "CrystalSink",
3900 Self::CrystalBed => "CrystalBed",
3901 Self::CrystalClock => "CrystalClock",
3902 Self::SkywareClock2 => "SkywareClock2",
3903 Self::DungeonClockBlue => "DungeonClockBlue",
3904 Self::DungeonClockGreen => "DungeonClockGreen",
3905 Self::DungeonClockPink => "DungeonClockPink",
3906 Self::CrystalPlatform => "CrystalPlatform",
3907 Self::GoldenPlatform => "GoldenPlatform",
3908 Self::DynastyPlatform => "DynastyPlatform",
3909 Self::LihzahrdPlatform => "LihzahrdPlatform",
3910 Self::FleshPlatform => "FleshPlatform",
3911 Self::FrozenPlatform => "FrozenPlatform",
3912 Self::CrystalWorkbench => "CrystalWorkbench",
3913 Self::GoldenWorkbench => "GoldenWorkbench",
3914 Self::CrystalDresser => "CrystalDresser",
3915 Self::DynastyDresser => "DynastyDresser",
3916 Self::FrozenDresser => "FrozenDresser",
3917 Self::LivingWoodDresser => "LivingWoodDresser",
3918 Self::CrystalPiano => "CrystalPiano",
3919 Self::DynastyPiano => "DynastyPiano",
3920 Self::CrystalBookCase => "CrystalBookCase",
3921 Self::CrystalSofaHowDoesThatEvenWork => "CrystalSofaHowDoesThatEvenWork",
3922 Self::DynastySofa => "DynastySofa",
3923 Self::CrystalTable => "CrystalTable",
3924 Self::ArkhalisHat => "ArkhalisHat",
3925 Self::ArkhalisShirt => "ArkhalisShirt",
3926 Self::ArkhalisPants => "ArkhalisPants",
3927 Self::ArkhalisWings => "ArkhalisWings",
3928 Self::LeinforsHat => "LeinforsHat",
3929 Self::LeinforsShirt => "LeinforsShirt",
3930 Self::LeinforsPants => "LeinforsPants",
3931 Self::LeinforsWings => "LeinforsWings",
3932 Self::LeinforsAccessory => "LeinforsAccessory",
3933 Self::Celeb2 => "Celeb2",
3934 Self::SpiderBathtub => "SpiderBathtub",
3935 Self::SpiderBed => "SpiderBed",
3936 Self::SpiderBookcase => "SpiderBookcase",
3937 Self::SpiderDresser => "SpiderDresser",
3938 Self::SpiderCandelabra => "SpiderCandelabra",
3939 Self::SpiderCandle => "SpiderCandle",
3940 Self::SpiderChair => "SpiderChair",
3941 Self::SpiderChandelier => "SpiderChandelier",
3942 Self::SpiderChest => "SpiderChest",
3943 Self::SpiderClock => "SpiderClock",
3944 Self::SpiderDoor => "SpiderDoor",
3945 Self::SpiderLamp => "SpiderLamp",
3946 Self::SpiderLantern => "SpiderLantern",
3947 Self::SpiderPiano => "SpiderPiano",
3948 Self::SpiderPlatform => "SpiderPlatform",
3949 Self::SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes => {
3950 "SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes"
3951 }
3952 Self::SpiderSofa => "SpiderSofa",
3953 Self::SpiderTable => "SpiderTable",
3954 Self::SpiderWorkbench => "SpiderWorkbench",
3955 Self::FakeSpiderChest => "Fake_SpiderChest",
3956 Self::IronBrick => "IronBrick",
3957 Self::IronBrickWall => "IronBrickWall",
3958 Self::LeadBrick => "LeadBrick",
3959 Self::LeadBrickWall => "LeadBrickWall",
3960 Self::LesionBlock => "LesionBlock",
3961 Self::LesionBlockWall => "LesionBlockWall",
3962 Self::LesionPlatform => "LesionPlatform",
3963 Self::LesionBathtub => "LesionBathtub",
3964 Self::LesionBed => "LesionBed",
3965 Self::LesionBookcase => "LesionBookcase",
3966 Self::LesionCandelabra => "LesionCandelabra",
3967 Self::LesionCandle => "LesionCandle",
3968 Self::LesionChair => "LesionChair",
3969 Self::LesionChandelier => "LesionChandelier",
3970 Self::LesionChest => "LesionChest",
3971 Self::LesionClock => "LesionClock",
3972 Self::LesionDoor => "LesionDoor",
3973 Self::LesionDresser => "LesionDresser",
3974 Self::LesionLamp => "LesionLamp",
3975 Self::LesionLantern => "LesionLantern",
3976 Self::LesionPiano => "LesionPiano",
3977 Self::LesionSink => "LesionSink",
3978 Self::LesionSofa => "LesionSofa",
3979 Self::LesionTable => "LesionTable",
3980 Self::LesionWorkbench => "LesionWorkbench",
3981 Self::FakeLesionChest => "Fake_LesionChest",
3982 Self::HatRack => "HatRack",
3983 Self::ColorOnlyDye => "ColorOnlyDye",
3984 Self::WoodenCrateHard => "WoodenCrateHard",
3985 Self::IronCrateHard => "IronCrateHard",
3986 Self::GoldenCrateHard => "GoldenCrateHard",
3987 Self::CorruptFishingCrateHard => "CorruptFishingCrateHard",
3988 Self::CrimsonFishingCrateHard => "CrimsonFishingCrateHard",
3989 Self::DungeonFishingCrateHard => "DungeonFishingCrateHard",
3990 Self::FloatingIslandFishingCrateHard => "FloatingIslandFishingCrateHard",
3991 Self::HallowedFishingCrateHard => "HallowedFishingCrateHard",
3992 Self::JungleFishingCrateHard => "JungleFishingCrateHard",
3993 Self::DeadMansChest => "DeadMansChest",
3994 Self::GolfBall => "GolfBall",
3995 Self::AmphibianBoots => "AmphibianBoots",
3996 Self::ArcaneFlower => "ArcaneFlower",
3997 Self::BerserkerGlove => "BerserkerGlove",
3998 Self::FairyBoots => "FairyBoots",
3999 Self::FrogFlipper => "FrogFlipper",
4000 Self::FrogGear => "FrogGear",
4001 Self::FrogWebbing => "FrogWebbing",
4002 Self::FrozenShield => "FrozenShield",
4003 Self::HeroShield => "HeroShield",
4004 Self::LavaSkull => "LavaSkull",
4005 Self::MagnetFlower => "MagnetFlower",
4006 Self::ManaCloak => "ManaCloak",
4007 Self::MoltenQuiver => "MoltenQuiver",
4008 Self::MoltenSkullRose => "MoltenSkullRose",
4009 Self::ObsidianSkullRose => "ObsidianSkullRose",
4010 Self::ReconScope => "ReconScope",
4011 Self::StalkersQuiver => "StalkersQuiver",
4012 Self::StingerNecklace => "StingerNecklace",
4013 Self::UltrabrightHelmet => "UltrabrightHelmet",
4014 Self::Apple => "Apple",
4015 Self::ApplePieSlice => "ApplePieSlice",
4016 Self::ApplePie => "ApplePie",
4017 Self::BananaSplit => "BananaSplit",
4018 Self::BBQRibs => "BBQRibs",
4019 Self::BunnyStew => "BunnyStew",
4020 Self::Burger => "Burger",
4021 Self::ChickenNugget => "ChickenNugget",
4022 Self::ChocolateChipCookie => "ChocolateChipCookie",
4023 Self::CreamSoda => "CreamSoda",
4024 Self::Escargot => "Escargot",
4025 Self::FriedEgg => "FriedEgg",
4026 Self::Fries => "Fries",
4027 Self::GoldenDelight => "GoldenDelight",
4028 Self::Grapes => "Grapes",
4029 Self::GrilledSquirrel => "GrilledSquirrel",
4030 Self::Hotdog => "Hotdog",
4031 Self::IceCream => "IceCream",
4032 Self::Milkshake => "Milkshake",
4033 Self::Nachos => "Nachos",
4034 Self::Pizza => "Pizza",
4035 Self::PotatoChips => "PotatoChips",
4036 Self::RoastedBird => "RoastedBird",
4037 Self::RoastedDuck => "RoastedDuck",
4038 Self::SauteedFrogLegs => "SauteedFrogLegs",
4039 Self::SeafoodDinner => "SeafoodDinner",
4040 Self::ShrimpPoBoy => "ShrimpPoBoy",
4041 Self::Spaghetti => "Spaghetti",
4042 Self::Steak => "Steak",
4043 Self::MoltenCharm => "MoltenCharm",
4044 Self::GolfClubIron => "GolfClubIron",
4045 Self::GolfCup => "GolfCup",
4046 Self::FlowerPacketBlue => "FlowerPacketBlue",
4047 Self::FlowerPacketMagenta => "FlowerPacketMagenta",
4048 Self::FlowerPacketPink => "FlowerPacketPink",
4049 Self::FlowerPacketRed => "FlowerPacketRed",
4050 Self::FlowerPacketYellow => "FlowerPacketYellow",
4051 Self::FlowerPacketViolet => "FlowerPacketViolet",
4052 Self::FlowerPacketWhite => "FlowerPacketWhite",
4053 Self::FlowerPacketTallGrass => "FlowerPacketTallGrass",
4054 Self::LawnMower => "LawnMower",
4055 Self::CrimstoneBrick => "CrimstoneBrick",
4056 Self::SmoothSandstone => "SmoothSandstone",
4057 Self::CrimstoneBrickWall => "CrimstoneBrickWall",
4058 Self::SmoothSandstoneWall => "SmoothSandstoneWall",
4059 Self::BloodMoonMonolith => "BloodMoonMonolith",
4060 Self::SandBoots => "SandBoots",
4061 Self::AncientChisel => "AncientChisel",
4062 Self::CarbonGuitar => "CarbonGuitar",
4063 Self::SkeletonBow => "SkeletonBow",
4064 Self::FossilPickaxe => "FossilPickaxe",
4065 Self::SuperStarCannon => "SuperStarCannon",
4066 Self::ThunderSpear => "ThunderSpear",
4067 Self::ThunderStaff => "ThunderStaff",
4068 Self::DrumSet => "DrumSet",
4069 Self::PicnicTable => "PicnicTable",
4070 Self::PicnicTableWithCloth => "PicnicTableWithCloth",
4071 Self::DesertMinecart => "DesertMinecart",
4072 Self::FishMinecart => "FishMinecart",
4073 Self::FairyCritterPink => "FairyCritterPink",
4074 Self::FairyCritterGreen => "FairyCritterGreen",
4075 Self::FairyCritterBlue => "FairyCritterBlue",
4076 Self::JunoniaShell => "JunoniaShell",
4077 Self::LightningWhelkShell => "LightningWhelkShell",
4078 Self::TulipShell => "TulipShell",
4079 Self::PinWheel => "PinWheel",
4080 Self::WeatherVane => "WeatherVane",
4081 Self::VoidVault => "VoidVault",
4082 Self::MusicBoxOceanAlt => "MusicBoxOceanAlt",
4083 Self::MusicBoxSlimeRain => "MusicBoxSlimeRain",
4084 Self::MusicBoxSpaceAlt => "MusicBoxSpaceAlt",
4085 Self::MusicBoxTownDay => "MusicBoxTownDay",
4086 Self::MusicBoxTownNight => "MusicBoxTownNight",
4087 Self::MusicBoxWindyDay => "MusicBoxWindyDay",
4088 Self::GolfCupFlagWhite => "GolfCupFlagWhite",
4089 Self::GolfCupFlagRed => "GolfCupFlagRed",
4090 Self::GolfCupFlagGreen => "GolfCupFlagGreen",
4091 Self::GolfCupFlagBlue => "GolfCupFlagBlue",
4092 Self::GolfCupFlagYellow => "GolfCupFlagYellow",
4093 Self::GolfCupFlagPurple => "GolfCupFlagPurple",
4094 Self::GolfTee => "GolfTee",
4095 Self::ShellPileBlock => "ShellPileBlock",
4096 Self::AntiPortalBlock => "AntiPortalBlock",
4097 Self::GolfClubPutter => "GolfClubPutter",
4098 Self::GolfClubWedge => "GolfClubWedge",
4099 Self::GolfClubDriver => "GolfClubDriver",
4100 Self::GolfWhistle => "GolfWhistle",
4101 Self::ToiletEbonyWood => "ToiletEbonyWood",
4102 Self::ToiletRichMahogany => "ToiletRichMahogany",
4103 Self::ToiletPearlwood => "ToiletPearlwood",
4104 Self::ToiletLivingWood => "ToiletLivingWood",
4105 Self::ToiletCactus => "ToiletCactus",
4106 Self::ToiletBone => "ToiletBone",
4107 Self::ToiletFlesh => "ToiletFlesh",
4108 Self::ToiletMushroom => "ToiletMushroom",
4109 Self::ToiletSunplate => "ToiletSunplate",
4110 Self::ToiletShadewood => "ToiletShadewood",
4111 Self::ToiletLihzhard => "ToiletLihzhard",
4112 Self::ToiletDungeonBlue => "ToiletDungeonBlue",
4113 Self::ToiletDungeonGreen => "ToiletDungeonGreen",
4114 Self::ToiletDungeonPink => "ToiletDungeonPink",
4115 Self::ToiletObsidian => "ToiletObsidian",
4116 Self::ToiletFrozen => "ToiletFrozen",
4117 Self::ToiletGlass => "ToiletGlass",
4118 Self::ToiletHoney => "ToiletHoney",
4119 Self::ToiletSteampunk => "ToiletSteampunk",
4120 Self::ToiletPumpkin => "ToiletPumpkin",
4121 Self::ToiletSpooky => "ToiletSpooky",
4122 Self::ToiletDynasty => "ToiletDynasty",
4123 Self::ToiletPalm => "ToiletPalm",
4124 Self::ToiletBoreal => "ToiletBoreal",
4125 Self::ToiletSlime => "ToiletSlime",
4126 Self::ToiletMartian => "ToiletMartian",
4127 Self::ToiletGranite => "ToiletGranite",
4128 Self::ToiletMarble => "ToiletMarble",
4129 Self::ToiletCrystal => "ToiletCrystal",
4130 Self::ToiletSpider => "ToiletSpider",
4131 Self::ToiletLesion => "ToiletLesion",
4132 Self::ToiletDiamond => "ToiletDiamond",
4133 Self::MaidHead => "MaidHead",
4134 Self::MaidShirt => "MaidShirt",
4135 Self::MaidPants => "MaidPants",
4136 Self::VoidLens => "VoidLens",
4137 Self::MaidHead2 => "MaidHead2",
4138 Self::MaidShirt2 => "MaidShirt2",
4139 Self::MaidPants2 => "MaidPants2",
4140 Self::GolfHat => "GolfHat",
4141 Self::GolfShirt => "GolfShirt",
4142 Self::GolfPants => "GolfPants",
4143 Self::GolfVisor => "GolfVisor",
4144 Self::SpiderBlock => "SpiderBlock",
4145 Self::SpiderWall => "SpiderWall",
4146 Self::ToiletMeteor => "ToiletMeteor",
4147 Self::LesionStation => "LesionStation",
4148 Self::ManaCloakStar => "ManaCloakStar",
4149 Self::Terragrim => "Terragrim",
4150 Self::SolarBathtub => "SolarBathtub",
4151 Self::SolarBed => "SolarBed",
4152 Self::SolarBookcase => "SolarBookcase",
4153 Self::SolarDresser => "SolarDresser",
4154 Self::SolarCandelabra => "SolarCandelabra",
4155 Self::SolarCandle => "SolarCandle",
4156 Self::SolarChair => "SolarChair",
4157 Self::SolarChandelier => "SolarChandelier",
4158 Self::SolarChest => "SolarChest",
4159 Self::SolarClock => "SolarClock",
4160 Self::SolarDoor => "SolarDoor",
4161 Self::SolarLamp => "SolarLamp",
4162 Self::SolarLantern => "SolarLantern",
4163 Self::SolarPiano => "SolarPiano",
4164 Self::SolarPlatform => "SolarPlatform",
4165 Self::SolarSink => "SolarSink",
4166 Self::SolarSofa => "SolarSofa",
4167 Self::SolarTable => "SolarTable",
4168 Self::SolarWorkbench => "SolarWorkbench",
4169 Self::FakeSolarChest => "Fake_SolarChest",
4170 Self::SolarToilet => "SolarToilet",
4171 Self::VortexBathtub => "VortexBathtub",
4172 Self::VortexBed => "VortexBed",
4173 Self::VortexBookcase => "VortexBookcase",
4174 Self::VortexDresser => "VortexDresser",
4175 Self::VortexCandelabra => "VortexCandelabra",
4176 Self::VortexCandle => "VortexCandle",
4177 Self::VortexChair => "VortexChair",
4178 Self::VortexChandelier => "VortexChandelier",
4179 Self::VortexChest => "VortexChest",
4180 Self::VortexClock => "VortexClock",
4181 Self::VortexDoor => "VortexDoor",
4182 Self::VortexLamp => "VortexLamp",
4183 Self::VortexLantern => "VortexLantern",
4184 Self::VortexPiano => "VortexPiano",
4185 Self::VortexPlatform => "VortexPlatform",
4186 Self::VortexSink => "VortexSink",
4187 Self::VortexSofa => "VortexSofa",
4188 Self::VortexTable => "VortexTable",
4189 Self::VortexWorkbench => "VortexWorkbench",
4190 Self::FakeVortexChest => "Fake_VortexChest",
4191 Self::VortexToilet => "VortexToilet",
4192 Self::NebulaBathtub => "NebulaBathtub",
4193 Self::NebulaBed => "NebulaBed",
4194 Self::NebulaBookcase => "NebulaBookcase",
4195 Self::NebulaDresser => "NebulaDresser",
4196 Self::NebulaCandelabra => "NebulaCandelabra",
4197 Self::NebulaCandle => "NebulaCandle",
4198 Self::NebulaChair => "NebulaChair",
4199 Self::NebulaChandelier => "NebulaChandelier",
4200 Self::NebulaChest => "NebulaChest",
4201 Self::NebulaClock => "NebulaClock",
4202 Self::NebulaDoor => "NebulaDoor",
4203 Self::NebulaLamp => "NebulaLamp",
4204 Self::NebulaLantern => "NebulaLantern",
4205 Self::NebulaPiano => "NebulaPiano",
4206 Self::NebulaPlatform => "NebulaPlatform",
4207 Self::NebulaSink => "NebulaSink",
4208 Self::NebulaSofa => "NebulaSofa",
4209 Self::NebulaTable => "NebulaTable",
4210 Self::NebulaWorkbench => "NebulaWorkbench",
4211 Self::FakeNebulaChest => "Fake_NebulaChest",
4212 Self::NebulaToilet => "NebulaToilet",
4213 Self::StardustBathtub => "StardustBathtub",
4214 Self::StardustBed => "StardustBed",
4215 Self::StardustBookcase => "StardustBookcase",
4216 Self::StardustDresser => "StardustDresser",
4217 Self::StardustCandelabra => "StardustCandelabra",
4218 Self::StardustCandle => "StardustCandle",
4219 Self::StardustChair => "StardustChair",
4220 Self::StardustChandelier => "StardustChandelier",
4221 Self::StardustChest => "StardustChest",
4222 Self::StardustClock => "StardustClock",
4223 Self::StardustDoor => "StardustDoor",
4224 Self::StardustLamp => "StardustLamp",
4225 Self::StardustLantern => "StardustLantern",
4226 Self::StardustPiano => "StardustPiano",
4227 Self::StardustPlatform => "StardustPlatform",
4228 Self::StardustSink => "StardustSink",
4229 Self::StardustSofa => "StardustSofa",
4230 Self::StardustTable => "StardustTable",
4231 Self::StardustWorkbench => "StardustWorkbench",
4232 Self::FakeStardustChest => "Fake_StardustChest",
4233 Self::StardustToilet => "StardustToilet",
4234 Self::SolarBrick => "SolarBrick",
4235 Self::VortexBrick => "VortexBrick",
4236 Self::NebulaBrick => "NebulaBrick",
4237 Self::StardustBrick => "StardustBrick",
4238 Self::SolarBrickWall => "SolarBrickWall",
4239 Self::VortexBrickWall => "VortexBrickWall",
4240 Self::NebulaBrickWall => "NebulaBrickWall",
4241 Self::StardustBrickWall => "StardustBrickWall",
4242 Self::MusicBoxDayRemix => "MusicBoxDayRemix",
4243 Self::CrackedBlueBrick => "CrackedBlueBrick",
4244 Self::CrackedGreenBrick => "CrackedGreenBrick",
4245 Self::CrackedPinkBrick => "CrackedPinkBrick",
4246 Self::FlowerPacketWild => "FlowerPacketWild",
4247 Self::GolfBallDyedBlack => "GolfBallDyedBlack",
4248 Self::GolfBallDyedBlue => "GolfBallDyedBlue",
4249 Self::GolfBallDyedBrown => "GolfBallDyedBrown",
4250 Self::GolfBallDyedCyan => "GolfBallDyedCyan",
4251 Self::GolfBallDyedGreen => "GolfBallDyedGreen",
4252 Self::GolfBallDyedLimeGreen => "GolfBallDyedLimeGreen",
4253 Self::GolfBallDyedOrange => "GolfBallDyedOrange",
4254 Self::GolfBallDyedPink => "GolfBallDyedPink",
4255 Self::GolfBallDyedPurple => "GolfBallDyedPurple",
4256 Self::GolfBallDyedRed => "GolfBallDyedRed",
4257 Self::GolfBallDyedSkyBlue => "GolfBallDyedSkyBlue",
4258 Self::GolfBallDyedTeal => "GolfBallDyedTeal",
4259 Self::GolfBallDyedViolet => "GolfBallDyedViolet",
4260 Self::GolfBallDyedYellow => "GolfBallDyedYellow",
4261 Self::AmberRobe => "AmberRobe",
4262 Self::AmberHook => "AmberHook",
4263 Self::OrangePhaseblade => "OrangePhaseblade",
4264 Self::OrangePhasesaber => "OrangePhasesaber",
4265 Self::OrangeStainedGlass => "OrangeStainedGlass",
4266 Self::OrangePressurePlate => "OrangePressurePlate",
4267 Self::MysticCoilSnake => "MysticCoilSnake",
4268 Self::MagicConch => "MagicConch",
4269 Self::GolfCart => "GolfCart",
4270 Self::GolfChest => "GolfChest",
4271 Self::FakeGolfChest => "Fake_GolfChest",
4272 Self::DesertChest => "DesertChest",
4273 Self::FakeDesertChest => "Fake_DesertChest",
4274 Self::SanguineStaff => "SanguineStaff",
4275 Self::SharpTears => "SharpTears",
4276 Self::BloodMoonStarter => "BloodMoonStarter",
4277 Self::DripplerFlail => "DripplerFlail",
4278 Self::VampireFrogStaff => "VampireFrogStaff",
4279 Self::GoldGoldfish => "GoldGoldfish",
4280 Self::GoldGoldfishBowl => "GoldGoldfishBowl",
4281 Self::CatBast => "CatBast",
4282 Self::GoldStarryGlassBlock => "GoldStarryGlassBlock",
4283 Self::BlueStarryGlassBlock => "BlueStarryGlassBlock",
4284 Self::GoldStarryGlassWall => "GoldStarryGlassWall",
4285 Self::BlueStarryGlassWall => "BlueStarryGlassWall",
4286 Self::BabyBirdStaff => "BabyBirdStaff",
4287 Self::Apricot => "Apricot",
4288 Self::Banana => "Banana",
4289 Self::BlackCurrant => "BlackCurrant",
4290 Self::BloodOrange => "BloodOrange",
4291 Self::Cherry => "Cherry",
4292 Self::Coconut => "Coconut",
4293 Self::DragonFruit => "Dragonfruit",
4294 Self::Elderberry => "Elderberry",
4295 Self::Grapefruit => "Grapefruit",
4296 Self::Lemon => "Lemon",
4297 Self::Mango => "Mango",
4298 Self::Peach => "Peach",
4299 Self::Pineapple => "Pineapple",
4300 Self::Plum => "Plum",
4301 Self::Rambutan => "Rambutan",
4302 Self::Starfruit => "Starfruit",
4303 Self::SandstoneBathtub => "SandstoneBathtub",
4304 Self::SandstoneBed => "SandstoneBed",
4305 Self::SandstoneBookcase => "SandstoneBookcase",
4306 Self::SandstoneDresser => "SandstoneDresser",
4307 Self::SandstoneCandelabra => "SandstoneCandelabra",
4308 Self::SandstoneCandle => "SandstoneCandle",
4309 Self::SandstoneChair => "SandstoneChair",
4310 Self::SandstoneChandelier => "SandstoneChandelier",
4311 Self::SandstoneClock => "SandstoneClock",
4312 Self::SandstoneDoor => "SandstoneDoor",
4313 Self::SandstoneLamp => "SandstoneLamp",
4314 Self::SandstoneLantern => "SandstoneLantern",
4315 Self::SandstonePiano => "SandstonePiano",
4316 Self::SandstonePlatform => "SandstonePlatform",
4317 Self::SandstoneSink => "SandstoneSink",
4318 Self::SandstoneSofa => "SandstoneSofa",
4319 Self::SandstoneTable => "SandstoneTable",
4320 Self::SandstoneWorkbench => "SandstoneWorkbench",
4321 Self::SandstoneToilet => "SandstoneToilet",
4322 Self::BloodHamaxe => "BloodHamaxe",
4323 Self::VoidMonolith => "VoidMonolith",
4324 Self::ArrowSign => "ArrowSign",
4325 Self::PaintedArrowSign => "PaintedArrowSign",
4326 Self::GameMasterShirt => "GameMasterShirt",
4327 Self::GameMasterPants => "GameMasterPants",
4328 Self::StarPrincessCrown => "StarPrincessCrown",
4329 Self::StarPrincessDress => "StarPrincessDress",
4330 Self::BloodFishingRod => "BloodFishingRod",
4331 Self::FoodPlatter => "FoodPlatter",
4332 Self::BlackDragonflyJar => "BlackDragonflyJar",
4333 Self::BlueDragonflyJar => "BlueDragonflyJar",
4334 Self::GreenDragonflyJar => "GreenDragonflyJar",
4335 Self::OrangeDragonflyJar => "OrangeDragonflyJar",
4336 Self::RedDragonflyJar => "RedDragonflyJar",
4337 Self::YellowDragonflyJar => "YellowDragonflyJar",
4338 Self::GoldDragonflyJar => "GoldDragonflyJar",
4339 Self::BlackDragonfly => "BlackDragonfly",
4340 Self::BlueDragonfly => "BlueDragonfly",
4341 Self::GreenDragonfly => "GreenDragonfly",
4342 Self::OrangeDragonfly => "OrangeDragonfly",
4343 Self::RedDragonfly => "RedDragonfly",
4344 Self::YellowDragonfly => "YellowDragonfly",
4345 Self::GoldDragonfly => "GoldDragonfly",
4346 Self::PortableStool => "PortableStool",
4347 Self::DragonflyStatue => "DragonflyStatue",
4348 Self::PaperAirplaneA => "PaperAirplaneA",
4349 Self::PaperAirplaneB => "PaperAirplaneB",
4350 Self::CanOfWorms => "CanOfWorms",
4351 Self::EncumberingStone => "EncumberingStone",
4352 Self::ZapinatorGray => "ZapinatorGray",
4353 Self::ZapinatorOrange => "ZapinatorOrange",
4354 Self::GreenMoss => "GreenMoss",
4355 Self::BrownMoss => "BrownMoss",
4356 Self::RedMoss => "RedMoss",
4357 Self::BlueMoss => "BlueMoss",
4358 Self::PurpleMoss => "PurpleMoss",
4359 Self::LavaMoss => "LavaMoss",
4360 Self::BoulderStatue => "BoulderStatue",
4361 Self::MusicBoxTitleAlt => "MusicBoxTitleAlt",
4362 Self::MusicBoxStorm => "MusicBoxStorm",
4363 Self::MusicBoxGraveyard => "MusicBoxGraveyard",
4364 Self::Seagull => "Seagull",
4365 Self::SeagullStatue => "SeagullStatue",
4366 Self::LadyBug => "LadyBug",
4367 Self::GoldLadyBug => "GoldLadyBug",
4368 Self::Maggot => "Maggot",
4369 Self::MaggotCage => "MaggotCage",
4370 Self::CelestialWand => "CelestialWand",
4371 Self::EucaluptusSap => "EucaluptusSap",
4372 Self::KiteBlue => "KiteBlue",
4373 Self::KiteBlueAndYellow => "KiteBlueAndYellow",
4374 Self::KiteRed => "KiteRed",
4375 Self::KiteRedAndYellow => "KiteRedAndYellow",
4376 Self::KiteYellow => "KiteYellow",
4377 Self::IvyGuitar => "IvyGuitar",
4378 Self::Pupfish => "Pupfish",
4379 Self::Grebe => "Grebe",
4380 Self::Rat => "Rat",
4381 Self::RatCage => "RatCage",
4382 Self::KryptonMoss => "KryptonMoss",
4383 Self::XenonMoss => "XenonMoss",
4384 Self::KiteWyvern => "KiteWyvern",
4385 Self::LadybugCage => "LadybugCage",
4386 Self::BloodRainBow => "BloodRainBow",
4387 Self::CombatBook => "CombatBook",
4388 Self::DesertTorch => "DesertTorch",
4389 Self::CoralTorch => "CoralTorch",
4390 Self::CorruptTorch => "CorruptTorch",
4391 Self::CrimsonTorch => "CrimsonTorch",
4392 Self::HallowedTorch => "HallowedTorch",
4393 Self::JungleTorch => "JungleTorch",
4394 Self::ArgonMoss => "ArgonMoss",
4395 Self::RollingCactus => "RollingCactus",
4396 Self::ThinIce => "ThinIce",
4397 Self::EchoBlock => "EchoBlock",
4398 Self::ScarabFish => "ScarabFish",
4399 Self::ScorpioFish => "ScorpioFish",
4400 Self::Owl => "Owl",
4401 Self::OwlCage => "OwlCage",
4402 Self::OwlStatue => "OwlStatue",
4403 Self::PupfishBowl => "PupfishBowl",
4404 Self::GoldLadybugCage => "GoldLadybugCage",
4405 Self::Geode => "Geode",
4406 Self::Flounder => "Flounder",
4407 Self::RockLobster => "RockLobster",
4408 Self::LobsterTail => "LobsterTail",
4409 Self::FloatingTube => "FloatingTube",
4410 Self::FrozenCrate => "FrozenCrate",
4411 Self::FrozenCrateHard => "FrozenCrateHard",
4412 Self::OasisCrate => "OasisCrate",
4413 Self::OasisCrateHard => "OasisCrateHard",
4414 Self::SpectreGoggles => "SpectreGoggles",
4415 Self::Oyster => "Oyster",
4416 Self::ShuckedOyster => "ShuckedOyster",
4417 Self::WhitePearl => "WhitePearl",
4418 Self::BlackPearl => "BlackPearl",
4419 Self::PinkPearl => "PinkPearl",
4420 Self::StoneDoor => "StoneDoor",
4421 Self::StonePlatform => "StonePlatform",
4422 Self::OasisFountain => "OasisFountain",
4423 Self::WaterStrider => "WaterStrider",
4424 Self::GoldWaterStrider => "GoldWaterStrider",
4425 Self::LawnFlamingo => "LawnFlamingo",
4426 Self::MusicBoxUndergroundJungle => "MusicBoxUndergroundJungle",
4427 Self::Grate => "Grate",
4428 Self::ScarabBomb => "ScarabBomb",
4429 Self::WroughtIronFence => "WroughtIronFence",
4430 Self::SharkBait => "SharkBait",
4431 Self::BeeMinecart => "BeeMinecart",
4432 Self::LadybugMinecart => "LadybugMinecart",
4433 Self::PigronMinecart => "PigronMinecart",
4434 Self::SunflowerMinecart => "SunflowerMinecart",
4435 Self::PottedForestCedar => "PottedForestCedar",
4436 Self::PottedJungleCedar => "PottedJungleCedar",
4437 Self::PottedHallowCedar => "PottedHallowCedar",
4438 Self::PottedForestTree => "PottedForestTree",
4439 Self::PottedJungleTree => "PottedJungleTree",
4440 Self::PottedHallowTree => "PottedHallowTree",
4441 Self::PottedForestPalm => "PottedForestPalm",
4442 Self::PottedJunglePalm => "PottedJunglePalm",
4443 Self::PottedHallowPalm => "PottedHallowPalm",
4444 Self::PottedForestBamboo => "PottedForestBamboo",
4445 Self::PottedJungleBamboo => "PottedJungleBamboo",
4446 Self::PottedHallowBamboo => "PottedHallowBamboo",
4447 Self::ScarabFishingRod => "ScarabFishingRod",
4448 Self::HellMinecart => "HellMinecart",
4449 Self::WitchBroom => "WitchBroom",
4450 Self::ClusterRocketI => "ClusterRocketI",
4451 Self::ClusterRocketII => "ClusterRocketII",
4452 Self::WetRocket => "WetRocket",
4453 Self::LavaRocket => "LavaRocket",
4454 Self::HoneyRocket => "HoneyRocket",
4455 Self::ShroomMinecart => "ShroomMinecart",
4456 Self::AmethystMinecart => "AmethystMinecart",
4457 Self::TopazMinecart => "TopazMinecart",
4458 Self::SapphireMinecart => "SapphireMinecart",
4459 Self::EmeraldMinecart => "EmeraldMinecart",
4460 Self::RubyMinecart => "RubyMinecart",
4461 Self::DiamondMinecart => "DiamondMinecart",
4462 Self::MiniNukeI => "MiniNukeI",
4463 Self::MiniNukeII => "MiniNukeII",
4464 Self::DryRocket => "DryRocket",
4465 Self::SandcastleBucket => "SandcastleBucket",
4466 Self::TurtleCage => "TurtleCage",
4467 Self::TurtleJungleCage => "TurtleJungleCage",
4468 Self::Gladius => "Gladius",
4469 Self::Turtle => "Turtle",
4470 Self::TurtleJungle => "TurtleJungle",
4471 Self::TurtleStatue => "TurtleStatue",
4472 Self::AmberMinecart => "AmberMinecart",
4473 Self::BeetleMinecart => "BeetleMinecart",
4474 Self::MeowmereMinecart => "MeowmereMinecart",
4475 Self::PartyMinecart => "PartyMinecart",
4476 Self::PirateMinecart => "PirateMinecart",
4477 Self::SteampunkMinecart => "SteampunkMinecart",
4478 Self::GrebeCage => "GrebeCage",
4479 Self::SeagullCage => "SeagullCage",
4480 Self::WaterStriderCage => "WaterStriderCage",
4481 Self::GoldWaterStriderCage => "GoldWaterStriderCage",
4482 Self::LuckPotionLesser => "LuckPotionLesser",
4483 Self::LuckPotion => "LuckPotion",
4484 Self::LuckPotionGreater => "LuckPotionGreater",
4485 Self::Seahorse => "Seahorse",
4486 Self::SeahorseCage => "SeahorseCage",
4487 Self::GoldSeahorse => "GoldSeahorse",
4488 Self::GoldSeahorseCage => "GoldSeahorseCage",
4489 Self::TimerOneHalfSecond => "TimerOneHalfSecond",
4490 Self::TimerOneFourthSecond => "TimerOneFourthSecond",
4491 Self::EbonstoneEcho => "EbonstoneEcho",
4492 Self::MudWallEcho => "MudWallEcho",
4493 Self::PearlstoneEcho => "PearlstoneEcho",
4494 Self::SnowWallEcho => "SnowWallEcho",
4495 Self::AmethystEcho => "AmethystEcho",
4496 Self::TopazEcho => "TopazEcho",
4497 Self::SapphireEcho => "SapphireEcho",
4498 Self::EmeraldEcho => "EmeraldEcho",
4499 Self::RubyEcho => "RubyEcho",
4500 Self::DiamondEcho => "DiamondEcho",
4501 Self::Cave1Echo => "Cave1Echo",
4502 Self::Cave2Echo => "Cave2Echo",
4503 Self::Cave3Echo => "Cave3Echo",
4504 Self::Cave4Echo => "Cave4Echo",
4505 Self::Cave5Echo => "Cave5Echo",
4506 Self::Cave6Echo => "Cave6Echo",
4507 Self::Cave7Echo => "Cave7Echo",
4508 Self::SpiderEcho => "SpiderEcho",
4509 Self::CorruptGrassEcho => "CorruptGrassEcho",
4510 Self::HallowedGrassEcho => "HallowedGrassEcho",
4511 Self::IceEcho => "IceEcho",
4512 Self::ObsidianBackEcho => "ObsidianBackEcho",
4513 Self::CrimsonGrassEcho => "CrimsonGrassEcho",
4514 Self::CrimstoneEcho => "CrimstoneEcho",
4515 Self::CaveWall1Echo => "CaveWall1Echo",
4516 Self::CaveWall2Echo => "CaveWall2Echo",
4517 Self::Cave8Echo => "Cave8Echo",
4518 Self::Corruption1Echo => "Corruption1Echo",
4519 Self::Corruption2Echo => "Corruption2Echo",
4520 Self::Corruption3Echo => "Corruption3Echo",
4521 Self::Corruption4Echo => "Corruption4Echo",
4522 Self::Crimson1Echo => "Crimson1Echo",
4523 Self::Crimson2Echo => "Crimson2Echo",
4524 Self::Crimson3Echo => "Crimson3Echo",
4525 Self::Crimson4Echo => "Crimson4Echo",
4526 Self::Dirt1Echo => "Dirt1Echo",
4527 Self::Dirt2Echo => "Dirt2Echo",
4528 Self::Dirt3Echo => "Dirt3Echo",
4529 Self::Dirt4Echo => "Dirt4Echo",
4530 Self::Hallow1Echo => "Hallow1Echo",
4531 Self::Hallow2Echo => "Hallow2Echo",
4532 Self::Hallow3Echo => "Hallow3Echo",
4533 Self::Hallow4Echo => "Hallow4Echo",
4534 Self::Jungle1Echo => "Jungle1Echo",
4535 Self::Jungle2Echo => "Jungle2Echo",
4536 Self::Jungle3Echo => "Jungle3Echo",
4537 Self::Jungle4Echo => "Jungle4Echo",
4538 Self::Lava1Echo => "Lava1Echo",
4539 Self::Lava2Echo => "Lava2Echo",
4540 Self::Lava3Echo => "Lava3Echo",
4541 Self::Lava4Echo => "Lava4Echo",
4542 Self::Rocks1Echo => "Rocks1Echo",
4543 Self::Rocks2Echo => "Rocks2Echo",
4544 Self::Rocks3Echo => "Rocks3Echo",
4545 Self::Rocks4Echo => "Rocks4Echo",
4546 Self::TheBrideBanner => "TheBrideBanner",
4547 Self::ZombieMermanBanner => "ZombieMermanBanner",
4548 Self::EyeballFlyingFishBanner => "EyeballFlyingFishBanner",
4549 Self::BloodSquidBanner => "BloodSquidBanner",
4550 Self::BloodEelBanner => "BloodEelBanner",
4551 Self::GoblinSharkBanner => "GoblinSharkBanner",
4552 Self::LargeBambooBlock => "LargeBambooBlock",
4553 Self::LargeBambooBlockWall => "LargeBambooBlockWall",
4554 Self::DemonHorns => "DemonHorns",
4555 Self::BambooLeaf => "BambooLeaf",
4556 Self::HellCake => "HellCake",
4557 Self::FogMachine => "FogMachine",
4558 Self::PlasmaLamp => "PlasmaLamp",
4559 Self::MarbleColumn => "MarbleColumn",
4560 Self::ChefHat => "ChefHat",
4561 Self::ChefShirt => "ChefShirt",
4562 Self::ChefPants => "ChefPants",
4563 Self::StarHairpin => "StarHairpin",
4564 Self::HeartHairpin => "HeartHairpin",
4565 Self::BunnyEars => "BunnyEars",
4566 Self::DevilHorns => "DevilHorns",
4567 Self::Fedora => "Fedora",
4568 Self::UnicornHornHat => "UnicornHornHat",
4569 Self::BambooBlock => "BambooBlock",
4570 Self::BambooBlockWall => "BambooBlockWall",
4571 Self::BambooBathtub => "BambooBathtub",
4572 Self::BambooBed => "BambooBed",
4573 Self::BambooBookcase => "BambooBookcase",
4574 Self::BambooDresser => "BambooDresser",
4575 Self::BambooCandelabra => "BambooCandelabra",
4576 Self::BambooCandle => "BambooCandle",
4577 Self::BambooChair => "BambooChair",
4578 Self::BambooChandelier => "BambooChandelier",
4579 Self::BambooChest => "BambooChest",
4580 Self::BambooClock => "BambooClock",
4581 Self::BambooDoor => "BambooDoor",
4582 Self::BambooLamp => "BambooLamp",
4583 Self::BambooLantern => "BambooLantern",
4584 Self::BambooPiano => "BambooPiano",
4585 Self::BambooPlatform => "BambooPlatform",
4586 Self::BambooSink => "BambooSink",
4587 Self::BambooSofa => "BambooSofa",
4588 Self::BambooTable => "BambooTable",
4589 Self::BambooWorkbench => "BambooWorkbench",
4590 Self::FakeBambooChest => "Fake_BambooChest",
4591 Self::BambooToilet => "BambooToilet",
4592 Self::GolfClubStoneIron => "GolfClubStoneIron",
4593 Self::GolfClubRustyPutter => "GolfClubRustyPutter",
4594 Self::GolfClubBronzeWedge => "GolfClubBronzeWedge",
4595 Self::GolfClubWoodDriver => "GolfClubWoodDriver",
4596 Self::GolfClubMythrilIron => "GolfClubMythrilIron",
4597 Self::GolfClubLeadPutter => "GolfClubLeadPutter",
4598 Self::GolfClubGoldWedge => "GolfClubGoldWedge",
4599 Self::GolfClubPearlwoodDriver => "GolfClubPearlwoodDriver",
4600 Self::GolfClubTitaniumIron => "GolfClubTitaniumIron",
4601 Self::GolfClubShroomitePutter => "GolfClubShroomitePutter",
4602 Self::GolfClubDiamondWedge => "GolfClubDiamondWedge",
4603 Self::GolfClubChlorophyteDriver => "GolfClubChlorophyteDriver",
4604 Self::GolfTrophyBronze => "GolfTrophyBronze",
4605 Self::GolfTrophySilver => "GolfTrophySilver",
4606 Self::GolfTrophyGold => "GolfTrophyGold",
4607 Self::BloodNautilusBanner => "BloodNautilusBanner",
4608 Self::BirdieRattle => "BirdieRattle",
4609 Self::ExoticEasternChewToy => "ExoticEasternChewToy",
4610 Self::BedazzledNectar => "BedazzledNectar",
4611 Self::MusicBoxJungleNight => "MusicBoxJungleNight",
4612 Self::StormTigerStaff => "StormTigerStaff",
4613 Self::ChumBucket => "ChumBucket",
4614 Self::GardenGnome => "GardenGnome",
4615 Self::KiteBoneSerpent => "KiteBoneSerpent",
4616 Self::KiteWorldFeeder => "KiteWorldFeeder",
4617 Self::KiteBunny => "KiteBunny",
4618 Self::KitePigron => "KitePigron",
4619 Self::AppleJuice => "AppleJuice",
4620 Self::GrapeJuice => "GrapeJuice",
4621 Self::Lemonade => "Lemonade",
4622 Self::BananaDaiquiri => "BananaDaiquiri",
4623 Self::PeachSangria => "PeachSangria",
4624 Self::PinaColada => "PinaColada",
4625 Self::TropicalSmoothie => "TropicalSmoothie",
4626 Self::BloodyMoscato => "BloodyMoscato",
4627 Self::SmoothieOfDarkness => "SmoothieofDarkness",
4628 Self::PrismaticPunch => "PrismaticPunch",
4629 Self::FruitJuice => "FruitJuice",
4630 Self::FruitSalad => "FruitSalad",
4631 Self::AndrewSphinx => "AndrewSphinx",
4632 Self::WatchfulAntlion => "WatchfulAntlion",
4633 Self::BurningSpirit => "BurningSpirit",
4634 Self::JawsOfDeath => "JawsOfDeath",
4635 Self::TheSandsOfSlime => "TheSandsOfSlime",
4636 Self::SnakesIHateSnakes => "SnakesIHateSnakes",
4637 Self::LifeAboveTheSand => "LifeAboveTheSand",
4638 Self::Oasis => "Oasis",
4639 Self::PrehistoryPreserved => "PrehistoryPreserved",
4640 Self::AncientTablet => "AncientTablet",
4641 Self::Uluru => "Uluru",
4642 Self::VisitingThePyramids => "VisitingThePyramids",
4643 Self::BandageBoy => "BandageBoy",
4644 Self::DivineEye => "DivineEye",
4645 Self::AmethystStoneBlock => "AmethystStoneBlock",
4646 Self::TopazStoneBlock => "TopazStoneBlock",
4647 Self::SapphireStoneBlock => "SapphireStoneBlock",
4648 Self::EmeraldStoneBlock => "EmeraldStoneBlock",
4649 Self::RubyStoneBlock => "RubyStoneBlock",
4650 Self::DiamondStoneBlock => "DiamondStoneBlock",
4651 Self::AmberStoneBlock => "AmberStoneBlock",
4652 Self::AmberStoneWallEcho => "AmberStoneWallEcho",
4653 Self::KiteManEater => "KiteManEater",
4654 Self::KiteJellyfishBlue => "KiteJellyfishBlue",
4655 Self::KiteJellyfishPink => "KiteJellyfishPink",
4656 Self::KiteShark => "KiteShark",
4657 Self::SuperHeroMask => "SuperHeroMask",
4658 Self::SuperHeroCostume => "SuperHeroCostume",
4659 Self::SuperHeroTights => "SuperHeroTights",
4660 Self::PinkFairyJar => "PinkFairyJar",
4661 Self::GreenFairyJar => "GreenFairyJar",
4662 Self::BlueFairyJar => "BlueFairyJar",
4663 Self::GolfPainting1 => "GolfPainting1",
4664 Self::GolfPainting2 => "GolfPainting2",
4665 Self::GolfPainting3 => "GolfPainting3",
4666 Self::GolfPainting4 => "GolfPainting4",
4667 Self::FogboundDye => "FogboundDye",
4668 Self::BloodbathDye => "BloodbathDye",
4669 Self::PrettyPinkDressSkirt => "PrettyPinkDressSkirt",
4670 Self::PrettyPinkDressPants => "PrettyPinkDressPants",
4671 Self::PrettyPinkRibbon => "PrettyPinkRibbon",
4672 Self::BambooFence => "BambooFence",
4673 Self::GlowPaint => "GlowPaint",
4674 Self::KiteSandShark => "KiteSandShark",
4675 Self::KiteBunnyCorrupt => "KiteBunnyCorrupt",
4676 Self::KiteBunnyCrimson => "KiteBunnyCrimson",
4677 Self::BlandWhip => "BlandWhip",
4678 Self::DrumStick => "DrumStick",
4679 Self::KiteGoldfish => "KiteGoldfish",
4680 Self::KiteAngryTrapper => "KiteAngryTrapper",
4681 Self::KiteKoi => "KiteKoi",
4682 Self::KiteCrawltipede => "KiteCrawltipede",
4683 Self::SwordWhip => "SwordWhip",
4684 Self::MaceWhip => "MaceWhip",
4685 Self::ScytheWhip => "ScytheWhip",
4686 Self::KiteSpectrum => "KiteSpectrum",
4687 Self::ReleaseDoves => "ReleaseDoves",
4688 Self::KiteWanderingEye => "KiteWanderingEye",
4689 Self::KiteUnicorn => "KiteUnicorn",
4690 Self::UndertakerHat => "UndertakerHat",
4691 Self::UndertakerCoat => "UndertakerCoat",
4692 Self::DandelionBanner => "DandelionBanner",
4693 Self::GnomeBanner => "GnomeBanner",
4694 Self::DesertCampfire => "DesertCampfire",
4695 Self::CoralCampfire => "CoralCampfire",
4696 Self::CorruptCampfire => "CorruptCampfire",
4697 Self::CrimsonCampfire => "CrimsonCampfire",
4698 Self::HallowedCampfire => "HallowedCampfire",
4699 Self::JungleCampfire => "JungleCampfire",
4700 Self::SoulBottleLight => "SoulBottleLight",
4701 Self::SoulBottleNight => "SoulBottleNight",
4702 Self::SoulBottleFlight => "SoulBottleFlight",
4703 Self::SoulBottleSight => "SoulBottleSight",
4704 Self::SoulBottleMight => "SoulBottleMight",
4705 Self::SoulBottleFright => "SoulBottleFright",
4706 Self::MudBud => "MudBud",
4707 Self::ReleaseLantern => "ReleaseLantern",
4708 Self::QuadBarrelShotgun => "QuadBarrelShotgun",
4709 Self::FuneralHat => "FuneralHat",
4710 Self::FuneralCoat => "FuneralCoat",
4711 Self::FuneralPants => "FuneralPants",
4712 Self::TragicUmbrella => "TragicUmbrella",
4713 Self::VictorianGothHat => "VictorianGothHat",
4714 Self::VictorianGothDress => "VictorianGothDress",
4715 Self::TatteredWoodSign => "TatteredWoodSign",
4716 Self::GravediggerShovel => "GravediggerShovel",
4717 Self::DungeonDesertChest => "DungeonDesertChest",
4718 Self::FakeDungeonDesertChest => "Fake_DungeonDesertChest",
4719 Self::DungeonDesertKey => "DungeonDesertKey",
4720 Self::SparkleGuitar => "SparkleGuitar",
4721 Self::MolluskWhistle => "MolluskWhistle",
4722 Self::BorealBeam => "BorealBeam",
4723 Self::RichMahoganyBeam => "RichMahoganyBeam",
4724 Self::GraniteColumn => "GraniteColumn",
4725 Self::SandstoneColumn => "SandstoneColumn",
4726 Self::MushroomBeam => "MushroomBeam",
4727 Self::FirstFractal => "FirstFractal",
4728 Self::Nevermore => "Nevermore",
4729 Self::Reborn => "Reborn",
4730 Self::Graveyard => "Graveyard",
4731 Self::GhostManifestation => "GhostManifestation",
4732 Self::WickedUndead => "WickedUndead",
4733 Self::BloodyGoblet => "BloodyGoblet",
4734 Self::StillLife => "StillLife",
4735 Self::GhostarsWings => "GhostarsWings",
4736 Self::TerraToilet => "TerraToilet",
4737 Self::GhostarSkullPin => "GhostarSkullPin",
4738 Self::GhostarShirt => "GhostarShirt",
4739 Self::GhostarPants => "GhostarPants",
4740 Self::BallOfFuseWire => "BallOfFuseWire",
4741 Self::FullMoonSqueakyToy => "FullMoonSqueakyToy",
4742 Self::OrnateShadowKey => "OrnateShadowKey",
4743 Self::DrManFlyMask => "DrManFlyMask",
4744 Self::DrManFlyLabCoat => "DrManFlyLabCoat",
4745 Self::ButcherMask => "ButcherMask",
4746 Self::ButcherApron => "ButcherApron",
4747 Self::ButcherPants => "ButcherPants",
4748 Self::Football => "Football",
4749 Self::HunterCloak => "HunterCloak",
4750 Self::CoffinMinecart => "CoffinMinecart",
4751 Self::SafemanWings => "SafemanWings",
4752 Self::SafemanSunHair => "SafemanSunHair",
4753 Self::SafemanSunDress => "SafemanSunDress",
4754 Self::SafemanDressLeggings => "SafemanDressLeggings",
4755 Self::FoodBarbarianWings => "FoodBarbarianWings",
4756 Self::FoodBarbarianHelm => "FoodBarbarianHelm",
4757 Self::FoodBarbarianArmor => "FoodBarbarianArmor",
4758 Self::FoodBarbarianGreaves => "FoodBarbarianGreaves",
4759 Self::GroxTheGreatWings => "GroxTheGreatWings",
4760 Self::GroxTheGreatHelm => "GroxTheGreatHelm",
4761 Self::GroxTheGreatArmor => "GroxTheGreatArmor",
4762 Self::GroxTheGreatGreaves => "GroxTheGreatGreaves",
4763 Self::Smolstar => "Smolstar",
4764 Self::SquirrelHook => "SquirrelHook",
4765 Self::BouncingShield => "BouncingShield",
4766 Self::RockGolemHead => "RockGolemHead",
4767 Self::CritterShampoo => "CritterShampoo",
4768 Self::DiggingMoleMinecart => "DiggingMoleMinecart",
4769 Self::Shroomerang => "Shroomerang",
4770 Self::TreeGlobe => "TreeGlobe",
4771 Self::WorldGlobe => "WorldGlobe",
4772 Self::DontHurtCrittersBook => "DontHurtCrittersBook",
4773 Self::DogEars => "DogEars",
4774 Self::DogTail => "DogTail",
4775 Self::FoxEars => "FoxEars",
4776 Self::FoxTail => "FoxTail",
4777 Self::LizardEars => "LizardEars",
4778 Self::LizardTail => "LizardTail",
4779 Self::PandaEars => "PandaEars",
4780 Self::BunnyTail => "BunnyTail",
4781 Self::FairyGlowstick => "FairyGlowstick",
4782 Self::LightningCarrot => "LightningCarrot",
4783 Self::HallowBossDye => "HallowBossDye",
4784 Self::MushroomHat => "MushroomHat",
4785 Self::MushroomVest => "MushroomVest",
4786 Self::MushroomPants => "MushroomPants",
4787 Self::FairyQueenBossBag => "FairyQueenBossBag",
4788 Self::FairyQueenTrophy => "FairyQueenTrophy",
4789 Self::FairyQueenMask => "FairyQueenMask",
4790 Self::PaintedHorseSaddle => "PaintedHorseSaddle",
4791 Self::MajesticHorseSaddle => "MajesticHorseSaddle",
4792 Self::DarkHorseSaddle => "DarkHorseSaddle",
4793 Self::JoustingLance => "JoustingLance",
4794 Self::ShadowJoustingLance => "ShadowJoustingLance",
4795 Self::HallowJoustingLance => "HallowJoustingLance",
4796 Self::PogoStick => "PogoStick",
4797 Self::PirateShipMount => "PirateShipMountItem",
4798 Self::SpookyWoodMount => "SpookyWoodMountItem",
4799 Self::SantankMount => "SantankMountItem",
4800 Self::WallOfFleshGoatMount => "WallOfFleshGoatMountItem",
4801 Self::DarkMageBookMount => "DarkMageBookMountItem",
4802 Self::KingSlimePet => "KingSlimePetItem",
4803 Self::EyeOfCthulhuPet => "EyeOfCthulhuPetItem",
4804 Self::EaterOfWorldsPet => "EaterOfWorldsPetItem",
4805 Self::BrainOfCthulhuPet => "BrainOfCthulhuPetItem",
4806 Self::SkeletronPet => "SkeletronPetItem",
4807 Self::QueenBeePet => "QueenBeePetItem",
4808 Self::DestroyerPet => "DestroyerPetItem",
4809 Self::TwinsPet => "TwinsPetItem",
4810 Self::SkeletronPrimePet => "SkeletronPrimePetItem",
4811 Self::PlanteraPet => "PlanteraPetItem",
4812 Self::GolemPet => "GolemPetItem",
4813 Self::DukeFishronPet => "DukeFishronPetItem",
4814 Self::LunaticCultistPet => "LunaticCultistPetItem",
4815 Self::MoonLordPet => "MoonLordPetItem",
4816 Self::FairyQueenPet => "FairyQueenPetItem",
4817 Self::PumpkingPet => "PumpkingPetItem",
4818 Self::EverscreamPet => "EverscreamPetItem",
4819 Self::IceQueenPet => "IceQueenPetItem",
4820 Self::MartianPet => "MartianPetItem",
4821 Self::DD2OgrePet => "DD2OgrePetItem",
4822 Self::DD2BetsyPet => "DD2BetsyPetItem",
4823 Self::CombatWrench => "CombatWrench",
4824 Self::DemonConch => "DemonConch",
4825 Self::BottomlessLavaBucket => "BottomlessLavaBucket",
4826 Self::FireproofBugNet => "FireproofBugNet",
4827 Self::FlameWakerBoots => "FlameWakerBoots",
4828 Self::RainbowWings => "RainbowWings",
4829 Self::WetBomb => "WetBomb",
4830 Self::LavaBomb => "LavaBomb",
4831 Self::HoneyBomb => "HoneyBomb",
4832 Self::DryBomb => "DryBomb",
4833 Self::SuperheatedBlood => "SuperheatedBlood",
4834 Self::LicenseCat => "LicenseCat",
4835 Self::LicenseDog => "LicenseDog",
4836 Self::GemSquirrelAmethyst => "GemSquirrelAmethyst",
4837 Self::GemSquirrelTopaz => "GemSquirrelTopaz",
4838 Self::GemSquirrelSapphire => "GemSquirrelSapphire",
4839 Self::GemSquirrelEmerald => "GemSquirrelEmerald",
4840 Self::GemSquirrelRuby => "GemSquirrelRuby",
4841 Self::GemSquirrelDiamond => "GemSquirrelDiamond",
4842 Self::GemSquirrelAmber => "GemSquirrelAmber",
4843 Self::GemBunnyAmethyst => "GemBunnyAmethyst",
4844 Self::GemBunnyTopaz => "GemBunnyTopaz",
4845 Self::GemBunnySapphire => "GemBunnySapphire",
4846 Self::GemBunnyEmerald => "GemBunnyEmerald",
4847 Self::GemBunnyRuby => "GemBunnyRuby",
4848 Self::GemBunnyDiamond => "GemBunnyDiamond",
4849 Self::GemBunnyAmber => "GemBunnyAmber",
4850 Self::HellButterfly => "HellButterfly",
4851 Self::HellButterflyJar => "HellButterflyJar",
4852 Self::Lavafly => "Lavafly",
4853 Self::LavaflyInABottle => "LavaflyinaBottle",
4854 Self::MagmaSnail => "MagmaSnail",
4855 Self::MagmaSnailCage => "MagmaSnailCage",
4856 Self::GemTreeTopazSeed => "GemTreeTopazSeed",
4857 Self::GemTreeAmethystSeed => "GemTreeAmethystSeed",
4858 Self::GemTreeSapphireSeed => "GemTreeSapphireSeed",
4859 Self::GemTreeEmeraldSeed => "GemTreeEmeraldSeed",
4860 Self::GemTreeRubySeed => "GemTreeRubySeed",
4861 Self::GemTreeDiamondSeed => "GemTreeDiamondSeed",
4862 Self::GemTreeAmberSeed => "GemTreeAmberSeed",
4863 Self::PotSuspended => "PotSuspended",
4864 Self::PotSuspendedDaybloom => "PotSuspendedDaybloom",
4865 Self::PotSuspendedMoonglow => "PotSuspendedMoonglow",
4866 Self::PotSuspendedWaterleaf => "PotSuspendedWaterleaf",
4867 Self::PotSuspendedShiverthorn => "PotSuspendedShiverthorn",
4868 Self::PotSuspendedBlinkroot => "PotSuspendedBlinkroot",
4869 Self::PotSuspendedDeathweedCorrupt => "PotSuspendedDeathweedCorrupt",
4870 Self::PotSuspendedDeathweedCrimson => "PotSuspendedDeathweedCrimson",
4871 Self::PotSuspendedFireblossom => "PotSuspendedFireblossom",
4872 Self::BrazierSuspended => "BrazierSuspended",
4873 Self::VolcanoSmall => "VolcanoSmall",
4874 Self::VolcanoLarge => "VolcanoLarge",
4875 Self::PotionOfReturn => "PotionOfReturn",
4876 Self::VanityTreeSakuraSeed => "VanityTreeSakuraSeed",
4877 Self::LavaAbsorbantSponge => "LavaAbsorbantSponge",
4878 Self::HallowedHood => "HallowedHood",
4879 Self::HellfireTreads => "HellfireTreads",
4880 Self::TeleportationPylonJungle => "TeleportationPylonJungle",
4881 Self::TeleportationPylonPurity => "TeleportationPylonPurity",
4882 Self::LavaCrate => "LavaCrate",
4883 Self::LavaCrateHard => "LavaCrateHard",
4884 Self::ObsidianLockbox => "ObsidianLockbox",
4885 Self::LavaFishbowl => "LavaFishbowl",
4886 Self::LavaFishingHook => "LavaFishingHook",
4887 Self::AmethystBunnyCage => "AmethystBunnyCage",
4888 Self::TopazBunnyCage => "TopazBunnyCage",
4889 Self::SapphireBunnyCage => "SapphireBunnyCage",
4890 Self::EmeraldBunnyCage => "EmeraldBunnyCage",
4891 Self::RubyBunnyCage => "RubyBunnyCage",
4892 Self::DiamondBunnyCage => "DiamondBunnyCage",
4893 Self::AmberBunnyCage => "AmberBunnyCage",
4894 Self::AmethystSquirrelCage => "AmethystSquirrelCage",
4895 Self::TopazSquirrelCage => "TopazSquirrelCage",
4896 Self::SapphireSquirrelCage => "SapphireSquirrelCage",
4897 Self::EmeraldSquirrelCage => "EmeraldSquirrelCage",
4898 Self::RubySquirrelCage => "RubySquirrelCage",
4899 Self::DiamondSquirrelCage => "DiamondSquirrelCage",
4900 Self::AmberSquirrelCage => "AmberSquirrelCage",
4901 Self::AncientHallowedMask => "AncientHallowedMask",
4902 Self::AncientHallowedHelmet => "AncientHallowedHelmet",
4903 Self::AncientHallowedHeadgear => "AncientHallowedHeadgear",
4904 Self::AncientHallowedHood => "AncientHallowedHood",
4905 Self::AncientHallowedPlateMail => "AncientHallowedPlateMail",
4906 Self::AncientHallowedGreaves => "AncientHallowedGreaves",
4907 Self::PottedLavaPlantPalm => "PottedLavaPlantPalm",
4908 Self::PottedLavaPlantBush => "PottedLavaPlantBush",
4909 Self::PottedLavaPlantBramble => "PottedLavaPlantBramble",
4910 Self::PottedLavaPlantBulb => "PottedLavaPlantBulb",
4911 Self::PottedLavaPlantTendrils => "PottedLavaPlantTendrils",
4912 Self::VanityTreeYellowWillowSeed => "VanityTreeYellowWillowSeed",
4913 Self::DirtBomb => "DirtBomb",
4914 Self::DirtStickyBomb => "DirtStickyBomb",
4915 Self::LicenseBunny => "LicenseBunny",
4916 Self::CoolWhip => "CoolWhip",
4917 Self::FireWhip => "FireWhip",
4918 Self::ThornWhip => "ThornWhip",
4919 Self::RainbowWhip => "RainbowWhip",
4920 Self::TungstenBullet => "TungstenBullet",
4921 Self::TeleportationPylonHallow => "TeleportationPylonHallow",
4922 Self::TeleportationPylonUnderground => "TeleportationPylonUnderground",
4923 Self::TeleportationPylonOcean => "TeleportationPylonOcean",
4924 Self::TeleportationPylonDesert => "TeleportationPylonDesert",
4925 Self::TeleportationPylonSnow => "TeleportationPylonSnow",
4926 Self::TeleportationPylonMushroom => "TeleportationPylonMushroom",
4927 Self::CavernFountain => "CavernFountain",
4928 Self::PiercingStarlight => "PiercingStarlight",
4929 Self::EyeOfCthulhuMasterTrophy => "EyeofCthulhuMasterTrophy",
4930 Self::EaterOfWorldsMasterTrophy => "EaterofWorldsMasterTrophy",
4931 Self::BrainOfCthulhuMasterTrophy => "BrainofCthulhuMasterTrophy",
4932 Self::SkeletronMasterTrophy => "SkeletronMasterTrophy",
4933 Self::QueenBeeMasterTrophy => "QueenBeeMasterTrophy",
4934 Self::KingSlimeMasterTrophy => "KingSlimeMasterTrophy",
4935 Self::WallOfFleshMasterTrophy => "WallofFleshMasterTrophy",
4936 Self::TwinsMasterTrophy => "TwinsMasterTrophy",
4937 Self::DestroyerMasterTrophy => "DestroyerMasterTrophy",
4938 Self::SkeletronPrimeMasterTrophy => "SkeletronPrimeMasterTrophy",
4939 Self::PlanteraMasterTrophy => "PlanteraMasterTrophy",
4940 Self::GolemMasterTrophy => "GolemMasterTrophy",
4941 Self::DukeFishronMasterTrophy => "DukeFishronMasterTrophy",
4942 Self::LunaticCultistMasterTrophy => "LunaticCultistMasterTrophy",
4943 Self::MoonLordMasterTrophy => "MoonLordMasterTrophy",
4944 Self::UFOMasterTrophy => "UFOMasterTrophy",
4945 Self::FlyingDutchmanMasterTrophy => "FlyingDutchmanMasterTrophy",
4946 Self::MourningWoodMasterTrophy => "MourningWoodMasterTrophy",
4947 Self::PumpkingMasterTrophy => "PumpkingMasterTrophy",
4948 Self::IceQueenMasterTrophy => "IceQueenMasterTrophy",
4949 Self::EverscreamMasterTrophy => "EverscreamMasterTrophy",
4950 Self::SantankMasterTrophy => "SantankMasterTrophy",
4951 Self::DarkMageMasterTrophy => "DarkMageMasterTrophy",
4952 Self::OgreMasterTrophy => "OgreMasterTrophy",
4953 Self::BetsyMasterTrophy => "BetsyMasterTrophy",
4954 Self::FairyQueenMasterTrophy => "FairyQueenMasterTrophy",
4955 Self::QueenSlimeMasterTrophy => "QueenSlimeMasterTrophy",
4956 Self::TeleportationPylonVictory => "TeleportationPylonVictory",
4957 Self::FairyQueenMagic => "FairyQueenMagicItem",
4958 Self::FairyQueenRanged => "FairyQueenRangedItem",
4959 Self::LongRainbowTrailWings => "LongRainbowTrailWings",
4960 Self::RabbitOrder => "RabbitOrder",
4961 Self::Zenith => "Zenith",
4962 Self::QueenSlimeBossBag => "QueenSlimeBossBag",
4963 Self::QueenSlimeTrophy => "QueenSlimeTrophy",
4964 Self::QueenSlimeMask => "QueenSlimeMask",
4965 Self::QueenSlimePet => "QueenSlimePetItem",
4966 Self::EmpressButterfly => "EmpressButterfly",
4967 Self::AccentSlab => "AccentSlab",
4968 Self::TruffleWormCage => "TruffleWormCage",
4969 Self::EmpressButterflyJar => "EmpressButterflyJar",
4970 Self::RockGolemBanner => "RockGolemBanner",
4971 Self::BloodMummyBanner => "BloodMummyBanner",
4972 Self::SporeSkeletonBanner => "SporeSkeletonBanner",
4973 Self::SporeBatBanner => "SporeBatBanner",
4974 Self::LarvaeAntlionBanner => "LarvaeAntlionBanner",
4975 Self::CrimsonBunnyBanner => "CrimsonBunnyBanner",
4976 Self::CrimsonGoldfishBanner => "CrimsonGoldfishBanner",
4977 Self::CrimsonPenguinBanner => "CrimsonPenguinBanner",
4978 Self::BigMimicCorruptionBanner => "BigMimicCorruptionBanner",
4979 Self::BigMimicCrimsonBanner => "BigMimicCrimsonBanner",
4980 Self::BigMimicHallowBanner => "BigMimicHallowBanner",
4981 Self::MossHornetBanner => "MossHornetBanner",
4982 Self::WanderingEyeBanner => "WanderingEyeBanner",
4983 Self::CreativeWings => "CreativeWings",
4984 Self::MusicBoxQueenSlime => "MusicBoxQueenSlime",
4985 Self::QueenSlimeHook => "QueenSlimeHook",
4986 Self::QueenSlimeMountSaddle => "QueenSlimeMountSaddle",
4987 Self::CrystalNinjaHelmet => "CrystalNinjaHelmet",
4988 Self::CrystalNinjaChestplate => "CrystalNinjaChestplate",
4989 Self::CrystalNinjaLeggings => "CrystalNinjaLeggings",
4990 Self::MusicBoxEmpressOfLight => "MusicBoxEmpressOfLight",
4991 Self::GelBalloon => "GelBalloon",
4992 Self::VolatileGelatin => "VolatileGelatin",
4993 Self::QueenSlimeCrystal => "QueenSlimeCrystal",
4994 Self::EmpressFlightBooster => "EmpressFlightBooster",
4995 Self::MusicBoxDukeFishron => "MusicBoxDukeFishron",
4996 Self::MusicBoxMorningRain => "MusicBoxMorningRain",
4997 Self::MusicBoxConsoleTitle => "MusicBoxConsoleTitle",
4998 Self::ChippysCouch => "ChippysCouch",
4999 Self::GraduationCapBlue => "GraduationCapBlue",
5000 Self::GraduationCapMaroon => "GraduationCapMaroon",
5001 Self::GraduationCapBlack => "GraduationCapBlack",
5002 Self::GraduationGownBlue => "GraduationGownBlue",
5003 Self::GraduationGownMaroon => "GraduationGownMaroon",
5004 Self::GraduationGownBlack => "GraduationGownBlack",
5005 Self::TerrasparkBoots => "TerrasparkBoots",
5006 Self::MoonLordLegs => "MoonLordLegs",
5007 Self::OceanCrate => "OceanCrate",
5008 Self::OceanCrateHard => "OceanCrateHard",
5009 Self::BadgersHat => "BadgersHat",
5010 Self::EmpressBlade => "EmpressBlade",
5011 Self::MusicBoxUndergroundDesert => "MusicBoxUndergroundDesert",
5012 Self::DeadMansSweater => "DeadMansSweater",
5013 Self::TeaKettle => "TeaKettle",
5014 Self::Teacup => "Teacup",
5015 Self::TreasureMagnet => "TreasureMagnet",
5016 Self::Mace => "Mace",
5017 Self::FlamingMace => "FlamingMace",
5018 Self::SleepingIcon => "SleepingIcon",
5019 Self::MusicBoxOWRain => "MusicBoxOWRain",
5020 Self::MusicBoxOWDay => "MusicBoxOWDay",
5021 Self::MusicBoxOWNight => "MusicBoxOWNight",
5022 Self::MusicBoxOWUnderground => "MusicBoxOWUnderground",
5023 Self::MusicBoxOWDesert => "MusicBoxOWDesert",
5024 Self::MusicBoxOWOcean => "MusicBoxOWOcean",
5025 Self::MusicBoxOWMushroom => "MusicBoxOWMushroom",
5026 Self::MusicBoxOWDungeon => "MusicBoxOWDungeon",
5027 Self::MusicBoxOWSpace => "MusicBoxOWSpace",
5028 Self::MusicBoxOWUnderworld => "MusicBoxOWUnderworld",
5029 Self::MusicBoxOWSnow => "MusicBoxOWSnow",
5030 Self::MusicBoxOWCorruption => "MusicBoxOWCorruption",
5031 Self::MusicBoxOWUndergroundCorruption => "MusicBoxOWUndergroundCorruption",
5032 Self::MusicBoxOWCrimson => "MusicBoxOWCrimson",
5033 Self::MusicBoxOWUndergroundCrimson => "MusicBoxOWUndergroundCrimson",
5034 Self::MusicBoxOWUndergroundSnow => "MusicBoxOWUndergroundSnow",
5035 Self::MusicBoxOWUndergroundHallow => "MusicBoxOWUndergroundHallow",
5036 Self::MusicBoxOWBloodMoon => "MusicBoxOWBloodMoon",
5037 Self::MusicBoxOWBoss2 => "MusicBoxOWBoss2",
5038 Self::MusicBoxOWBoss1 => "MusicBoxOWBoss1",
5039 Self::MusicBoxOWInvasion => "MusicBoxOWInvasion",
5040 Self::MusicBoxOWTowers => "MusicBoxOWTowers",
5041 Self::MusicBoxOWMoonLord => "MusicBoxOWMoonLord",
5042 Self::MusicBoxOWPlantera => "MusicBoxOWPlantera",
5043 Self::MusicBoxOWJungle => "MusicBoxOWJungle",
5044 Self::MusicBoxOWWallOfFlesh => "MusicBoxOWWallOfFlesh",
5045 Self::MusicBoxOWHallow => "MusicBoxOWHallow",
5046 Self::MilkCarton => "MilkCarton",
5047 Self::CoffeeCup => "CoffeeCup",
5048 Self::TorchGodsFavor => "TorchGodsFavor",
5049 Self::MusicBoxCredits => "MusicBoxCredits",
5050 Self::PlaguebringerHelmet => "PlaguebringerHelmet",
5051 Self::PlaguebringerChestplate => "PlaguebringerChestplate",
5052 Self::PlaguebringerGreaves => "PlaguebringerGreaves",
5053 Self::RoninHat => "RoninHat",
5054 Self::RoninShirt => "RoninShirt",
5055 Self::RoninPants => "RoninPants",
5056 Self::TimelessTravelerHood => "TimelessTravelerHood",
5057 Self::TimelessTravelerRobe => "TimelessTravelerRobe",
5058 Self::TimelessTravelerBottom => "TimelessTravelerBottom",
5059 Self::FloretProtectorHelmet => "FloretProtectorHelmet",
5060 Self::FloretProtectorChestplate => "FloretProtectorChestplate",
5061 Self::FloretProtectorLegs => "FloretProtectorLegs",
5062 Self::CapricornMask => "CapricornMask",
5063 Self::CapricornChestplate => "CapricornChestplate",
5064 Self::CapricornLegs => "CapricornLegs",
5065 Self::CapricornTail => "CapricornTail",
5066 Self::TVHeadMask => "TVHeadMask",
5067 Self::TVHeadSuit => "TVHeadSuit",
5068 Self::TVHeadPants => "TVHeadPants",
5069 Self::LavaproofTackleBag => "LavaproofTackleBag",
5070 Self::PrincessWeapon => "PrincessWeapon",
5071 Self::BeeHive => "BeeHive",
5072 Self::AntlionEggs => "AntlionEggs",
5073 Self::FlinxFurCoat => "FlinxFurCoat",
5074 Self::FlinxStaff => "FlinxStaff",
5075 Self::FlinxFur => "FlinxFur",
5076 Self::RoyalTiara => "RoyalTiara",
5077 Self::RoyalDressTop => "RoyalDressTop",
5078 Self::RoyalDressBottom => "RoyalDressBottom",
5079 Self::BoneWhip => "BoneWhip",
5080 Self::RainbowCursor => "RainbowCursor",
5081 Self::RoyalScepter => "RoyalScepter",
5082 Self::GlassSlipper => "GlassSlipper",
5083 Self::PrinceUniform => "PrinceUniform",
5084 Self::PrincePants => "PrincePants",
5085 Self::PrinceCape => "PrinceCape",
5086 Self::PottedCrystalPlantFern => "PottedCrystalPlantFern",
5087 Self::PottedCrystalPlantSpiral => "PottedCrystalPlantSpiral",
5088 Self::PottedCrystalPlantTeardrop => "PottedCrystalPlantTeardrop",
5089 Self::PottedCrystalPlantTree => "PottedCrystalPlantTree",
5090 Self::Princess64 => "Princess64",
5091 Self::PaintingOfALass => "PaintingOfALass",
5092 Self::DarkSideHallow => "DarkSideHallow",
5093 Self::BerniePet => "BerniePetItem",
5094 Self::GlommerPet => "GlommerPetItem",
5095 Self::DeerclopsPet => "DeerclopsPetItem",
5096 Self::PigPet => "PigPetItem",
5097 Self::MonsterLasagna => "MonsterLasagna",
5098 Self::FroggleBunwich => "FroggleBunwich",
5099 Self::TentacleSpike => "TentacleSpike",
5100 Self::LucyTheAxe => "LucyTheAxe",
5101 Self::HamBat => "HamBat",
5102 Self::BatBat => "BatBat",
5103 Self::ChesterPet => "ChesterPetItem",
5104 Self::GarlandHat => "GarlandHat",
5105 Self::BoneHelm => "BoneHelm",
5106 Self::Eyebrella => "Eyebrella",
5107 Self::WilsonShirt => "WilsonShirt",
5108 Self::WilsonPants => "WilsonPants",
5109 Self::WilsonBeardShort => "WilsonBeardShort",
5110 Self::WilsonBeardLong => "WilsonBeardLong",
5111 Self::WilsonBeardMagnificent => "WilsonBeardMagnificent",
5112 Self::Magiluminescence => "Magiluminescence",
5113 Self::DeerclopsTrophy => "DeerclopsTrophy",
5114 Self::DeerclopsMask => "DeerclopsMask",
5115 Self::DeerclopsMasterTrophy => "DeerclopsMasterTrophy",
5116 Self::DeerclopsBossBag => "DeerclopsBossBag",
5117 Self::MusicBoxDeerclops => "MusicBoxDeerclops",
5118 Self::DontStarveShader => "DontStarveShaderItem",
5119 Self::AbigailsFlower => "AbigailsFlower",
5120 Self::WillowShirt => "WillowShirt",
5121 Self::WillowSkirt => "WillowSkirt",
5122 Self::PewMaticHorn => "PewMaticHorn",
5123 Self::WeatherPain => "WeatherPain",
5124 Self::HoundiusShootius => "HoundiusShootius",
5125 Self::DeerThing => "DeerThing",
5126 Self::PaintingWilson => "PaintingWilson",
5127 Self::PaintingWillow => "PaintingWillow",
5128 Self::PaintingWendy => "PaintingWendy",
5129 Self::PaintingWolfgang => "PaintingWolfgang",
5130 Self::FartMinecart => "FartMinecart",
5131 Self::HandOfCreation => "HandOfCreation",
5132 Self::VioletMoss => "VioletMoss",
5133 Self::RainbowMoss => "RainbowMoss",
5134 Self::Flymeal => "Flymeal",
5135 Self::WolfMount => "WolfMountItem",
5136 Self::ResplendentDessert => "ResplendentDessert",
5137 Self::Stinkbug => "Stinkbug",
5138 Self::StinkbugCage => "StinkbugCage",
5139 Self::Clentaminator2 => "Clentaminator2",
5140 Self::VenomDartTrap => "VenomDartTrap",
5141 Self::VulkelfEar => "VulkelfEar",
5142 Self::StinkbugHousingBlocker => "StinkbugHousingBlocker",
5143 Self::StinkbugHousingBlockerEcho => "StinkbugHousingBlockerEcho",
5144 Self::FishingBobber => "FishingBobber",
5145 Self::FishingBobberGlowingStar => "FishingBobberGlowingStar",
5146 Self::FishingBobberGlowingLava => "FishingBobberGlowingLava",
5147 Self::FishingBobberGlowingKrypton => "FishingBobberGlowingKrypton",
5148 Self::FishingBobberGlowingXenon => "FishingBobberGlowingXenon",
5149 Self::FishingBobberGlowingArgon => "FishingBobberGlowingArgon",
5150 Self::FishingBobberGlowingViolet => "FishingBobberGlowingViolet",
5151 Self::FishingBobberGlowingRainbow => "FishingBobberGlowingRainbow",
5152 Self::WandOfFrosting => "WandofFrosting",
5153 Self::CoralBathtub => "CoralBathtub",
5154 Self::CoralBed => "CoralBed",
5155 Self::CoralBookcase => "CoralBookcase",
5156 Self::CoralDresser => "CoralDresser",
5157 Self::CoralCandelabra => "CoralCandelabra",
5158 Self::CoralCandle => "CoralCandle",
5159 Self::CoralChair => "CoralChair",
5160 Self::CoralChandelier => "CoralChandelier",
5161 Self::CoralChest => "CoralChest",
5162 Self::CoralClock => "CoralClock",
5163 Self::CoralDoor => "CoralDoor",
5164 Self::CoralLamp => "CoralLamp",
5165 Self::CoralLantern => "CoralLantern",
5166 Self::CoralPiano => "CoralPiano",
5167 Self::CoralPlatform => "CoralPlatform",
5168 Self::CoralSink => "CoralSink",
5169 Self::CoralSofa => "CoralSofa",
5170 Self::CoralTable => "CoralTable",
5171 Self::CoralWorkbench => "CoralWorkbench",
5172 Self::FakeCoralChest => "Fake_CoralChest",
5173 Self::CoralToilet => "CoralToilet",
5174 Self::BalloonBathtub => "BalloonBathtub",
5175 Self::BalloonBed => "BalloonBed",
5176 Self::BalloonBookcase => "BalloonBookcase",
5177 Self::BalloonDresser => "BalloonDresser",
5178 Self::BalloonCandelabra => "BalloonCandelabra",
5179 Self::BalloonCandle => "BalloonCandle",
5180 Self::BalloonChair => "BalloonChair",
5181 Self::BalloonChandelier => "BalloonChandelier",
5182 Self::BalloonChest => "BalloonChest",
5183 Self::BalloonClock => "BalloonClock",
5184 Self::BalloonDoor => "BalloonDoor",
5185 Self::BalloonLamp => "BalloonLamp",
5186 Self::BalloonLantern => "BalloonLantern",
5187 Self::BalloonPiano => "BalloonPiano",
5188 Self::BalloonPlatform => "BalloonPlatform",
5189 Self::BalloonSink => "BalloonSink",
5190 Self::BalloonSofa => "BalloonSofa",
5191 Self::BalloonTable => "BalloonTable",
5192 Self::BalloonWorkbench => "BalloonWorkbench",
5193 Self::FakeBalloonChest => "Fake_BalloonChest",
5194 Self::BalloonToilet => "BalloonToilet",
5195 Self::AshWoodBathtub => "AshWoodBathtub",
5196 Self::AshWoodBed => "AshWoodBed",
5197 Self::AshWoodBookcase => "AshWoodBookcase",
5198 Self::AshWoodDresser => "AshWoodDresser",
5199 Self::AshWoodCandelabra => "AshWoodCandelabra",
5200 Self::AshWoodCandle => "AshWoodCandle",
5201 Self::AshWoodChair => "AshWoodChair",
5202 Self::AshWoodChandelier => "AshWoodChandelier",
5203 Self::AshWoodChest => "AshWoodChest",
5204 Self::AshWoodClock => "AshWoodClock",
5205 Self::AshWoodDoor => "AshWoodDoor",
5206 Self::AshWoodLamp => "AshWoodLamp",
5207 Self::AshWoodLantern => "AshWoodLantern",
5208 Self::AshWoodPiano => "AshWoodPiano",
5209 Self::AshWoodPlatform => "AshWoodPlatform",
5210 Self::AshWoodSink => "AshWoodSink",
5211 Self::AshWoodSofa => "AshWoodSofa",
5212 Self::AshWoodTable => "AshWoodTable",
5213 Self::AshWoodWorkbench => "AshWoodWorkbench",
5214 Self::FakeAshWoodChest => "Fake_AshWoodChest",
5215 Self::AshWoodToilet => "AshWoodToilet",
5216 Self::BiomeSightPotion => "BiomeSightPotion",
5217 Self::ScarletMacaw => "ScarletMacaw",
5218 Self::ScarletMacawCage => "ScarletMacawCage",
5219 Self::AshGrassSeeds => "AshGrassSeeds",
5220 Self::AshWood => "AshWood",
5221 Self::AshWoodWall => "AshWoodWall",
5222 Self::AshWoodFence => "AshWoodFence",
5223 Self::Outcast => "Outcast",
5224 Self::FairyGuides => "FairyGuides",
5225 Self::AHorribleNightforAlchemy => "AHorribleNightforAlchemy",
5226 Self::MorningHunt => "MorningHunt",
5227 Self::SuspiciouslySparkly => "SuspiciouslySparkly",
5228 Self::Requiem => "Requiem",
5229 Self::CatSword => "CatSword",
5230 Self::KargohsSummon => "KargohsSummon",
5231 Self::HighPitch => "HighPitch",
5232 Self::AMachineForTerrarians => "AMachineforTerrarians",
5233 Self::TerraBladeChronicles => "TerraBladeChronicles",
5234 Self::BennyWarhol => "BennyWarhol",
5235 Self::LizardKing => "LizardKing",
5236 Self::MySon => "MySon",
5237 Self::Duality => "Duality",
5238 Self::ParsecPals => "ParsecPals",
5239 Self::RemnantsOfDevotion => "RemnantsofDevotion",
5240 Self::NotSoLostInParadise => "NotSoLostInParadise",
5241 Self::OcularResonance => "OcularResonance",
5242 Self::WingsOfEvil => "WingsofEvil",
5243 Self::Constellation => "Constellation",
5244 Self::Eyezorhead => "Eyezorhead",
5245 Self::DreadOfTheRedSea => "DreadoftheRedSea",
5246 Self::DoNotEatTheVileMushroom => "DoNotEattheVileMushroom",
5247 Self::YuumaTheBlueTiger => "YuumaTheBlueTiger",
5248 Self::MoonmanandCompany => "MoonmanandCompany",
5249 Self::SunshineOfIsrapony => "SunshineofIsrapony",
5250 Self::Purity => "Purity",
5251 Self::SufficientlyAdvanced => "SufficientlyAdvanced",
5252 Self::StrangeGrowth => "StrangeGrowth",
5253 Self::HappyLittleTree => "HappyLittleTree",
5254 Self::StrangeDeadFellows => "StrangeDeadFellows",
5255 Self::Secrets => "Secrets",
5256 Self::Thunderbolt => "Thunderbolt",
5257 Self::Crustography => "Crustography",
5258 Self::TheWerewolf => "TheWerewolf",
5259 Self::BlessingFromTheHeavens => "BlessingfromTheHeavens",
5260 Self::LoveIsInTheTrashSlot => "LoveisintheTrashSlot",
5261 Self::Fangs => "Fangs",
5262 Self::HailToTheKing => "HailtotheKing",
5263 Self::SeeTheWorldForWhatItIs => "SeeTheWorldForWhatItIs",
5264 Self::WhatLurksBelow => "WhatLurksBelow",
5265 Self::ThisIsGettingOutOfHand => "ThisIsGettingOutOfHand",
5266 Self::Buddies => "Buddies",
5267 Self::MidnightSun => "MidnightSun",
5268 Self::CouchGag => "CouchGag",
5269 Self::SilentFish => "SilentFish",
5270 Self::TheDuke => "TheDuke",
5271 Self::RoyalRomance => "RoyalRomance",
5272 Self::Bioluminescence => "Bioluminescence",
5273 Self::Wildflowers => "Wildflowers",
5274 Self::VikingVoyage => "VikingVoyage",
5275 Self::Bifrost => "Bifrost",
5276 Self::Heartlands => "Heartlands",
5277 Self::ForestTroll => "ForestTroll",
5278 Self::AuroraBorealis => "AuroraBorealis",
5279 Self::LadyOfTheLake => "LadyOfTheLake",
5280 Self::JojaCola => "JojaCola",
5281 Self::JunimoPet => "JunimoPetItem",
5282 Self::SpicyPepper => "SpicyPepper",
5283 Self::Pomegranate => "Pomegranate",
5284 Self::AshWoodHelmet => "AshWoodHelmet",
5285 Self::AshWoodBreastplate => "AshWoodBreastplate",
5286 Self::AshWoodGreaves => "AshWoodGreaves",
5287 Self::AshWoodBow => "AshWoodBow",
5288 Self::AshWoodHammer => "AshWoodHammer",
5289 Self::AshWoodSword => "AshWoodSword",
5290 Self::MoonGlobe => "MoonGlobe",
5291 Self::RepairedLifeCrystal => "RepairedLifeCrystal",
5292 Self::RepairedManaCrystal => "RepairedManaCrystal",
5293 Self::TerraFartMinecart => "TerraFartMinecart",
5294 Self::MinecartPowerUp => "MinecartPowerup",
5295 Self::JimsCap => "JimsCap",
5296 Self::EchoWall => "EchoWall",
5297 Self::EchoPlatform => "EchoPlatform",
5298 Self::MushroomTorch => "MushroomTorch",
5299 Self::HiveFive => "HiveFive",
5300 Self::AcornAxe => "AcornAxe",
5301 Self::ChlorophyteExtractinator => "ChlorophyteExtractinator",
5302 Self::BlueEgg => "BlueEgg",
5303 Self::Trimarang => "Trimarang",
5304 Self::MushroomCampfire => "MushroomCampfire",
5305 Self::BlueMacaw => "BlueMacaw",
5306 Self::BlueMacawCage => "BlueMacawCage",
5307 Self::BottomlessHoneyBucket => "BottomlessHoneyBucket",
5308 Self::HoneyAbsorbantSponge => "HoneyAbsorbantSponge",
5309 Self::UltraAbsorbantSponge => "UltraAbsorbantSponge",
5310 Self::GoblorcEar => "GoblorcEar",
5311 Self::ReefBlock => "ReefBlock",
5312 Self::ReefWall => "ReefWall",
5313 Self::PlacePainting => "PlacePainting",
5314 Self::DontHurtNatureBook => "DontHurtNatureBook",
5315 Self::PrincessStyle => "PrincessStyle",
5316 Self::Toucan => "Toucan",
5317 Self::YellowCockatiel => "YellowCockatiel",
5318 Self::GrayCockatiel => "GrayCockatiel",
5319 Self::ToucanCage => "ToucanCage",
5320 Self::YellowCockatielCage => "YellowCockatielCage",
5321 Self::GrayCockatielCage => "GrayCockatielCage",
5322 Self::MacawStatue => "MacawStatue",
5323 Self::ToucanStatue => "ToucanStatue",
5324 Self::CockatielStatue => "CockatielStatue",
5325 Self::PlaceableHealingPotion => "PlaceableHealingPotion",
5326 Self::PlaceableManaPotion => "PlaceableManaPotion",
5327 Self::ShadowCandle => "ShadowCandle",
5328 Self::DontHurtComboBook => "DontHurtComboBook",
5329 Self::RubblemakerSmall => "RubblemakerSmall",
5330 Self::ClosedVoidBag => "ClosedVoidBag",
5331 Self::ArtisanLoaf => "ArtisanLoaf",
5332 Self::TNTBarrel => "TNTBarrel",
5333 Self::ChestLock => "ChestLock",
5334 Self::RubblemakerMedium => "RubblemakerMedium",
5335 Self::RubblemakerLarge => "RubblemakerLarge",
5336 Self::HorseshoeBundle => "HorseshoeBundle",
5337 Self::SpiffoPlush => "SpiffoPlush",
5338 Self::GlowTulip => "GlowTulip",
5339 Self::MechdusaSummon => "MechdusaSummon",
5340 Self::RodOfHarmony => "RodOfHarmony",
5341 Self::CombatBookVolumeTwo => "CombatBookVolumeTwo",
5342 Self::AegisCrystal => "AegisCrystal",
5343 Self::AegisFruit => "AegisFruit",
5344 Self::ArcaneCrystal => "ArcaneCrystal",
5345 Self::GalaxyPearl => "GalaxyPearl",
5346 Self::GummyWorm => "GummyWorm",
5347 Self::Ambrosia => "Ambrosia",
5348 Self::PeddlersSatchel => "PeddlersSatchel",
5349 Self::EchoCoating => "EchoCoating",
5350 Self::EchoMonolith => "EchoMonolith",
5351 Self::GasTrap => "GasTrap",
5352 Self::ShimmerMonolith => "ShimmerMonolith",
5353 Self::ShimmerArrow => "ShimmerArrow",
5354 Self::ShimmerBlock => "ShimmerBlock",
5355 Self::Shimmerfly => "Shimmerfly",
5356 Self::ShimmerflyInABottle => "ShimmerflyinaBottle",
5357 Self::ShimmerSlimeBanner => "ShimmerSlimeBanner",
5358 Self::ShimmerTorch => "ShimmerTorch",
5359 Self::ReflectiveShades => "ReflectiveShades",
5360 Self::ShimmerCloak => "ShimmerCloak",
5361 Self::UsedGasTrap => "UsedGasTrap",
5362 Self::ShimmerCampfire => "ShimmerCampfire",
5363 Self::Shellphone => "Shellphone",
5364 Self::ShellphoneSpawn => "ShellphoneSpawn",
5365 Self::ShellphoneOcean => "ShellphoneOcean",
5366 Self::ShellphoneHell => "ShellphoneHell",
5367 Self::MusicBoxShimmer => "MusicBoxShimmer",
5368 Self::SpiderWallUnsafe => "SpiderWallUnsafe",
5369 Self::BottomlessShimmerBucket => "BottomlessShimmerBucket",
5370 Self::BlueBrickWallUnsafe => "BlueBrickWallUnsafe",
5371 Self::BlueSlabWallUnsafe => "BlueSlabWallUnsafe",
5372 Self::BlueTiledWallUnsafe => "BlueTiledWallUnsafe",
5373 Self::PinkBrickWallUnsafe => "PinkBrickWallUnsafe",
5374 Self::PinkSlabWallUnsafe => "PinkSlabWallUnsafe",
5375 Self::PinkTiledWallUnsafe => "PinkTiledWallUnsafe",
5376 Self::GreenBrickWallUnsafe => "GreenBrickWallUnsafe",
5377 Self::GreenSlabWallUnsafe => "GreenSlabWallUnsafe",
5378 Self::GreenTiledWallUnsafe => "GreenTiledWallUnsafe",
5379 Self::SandstoneWallUnsafe => "SandstoneWallUnsafe",
5380 Self::HardenedSandWallUnsafe => "HardenedSandWallUnsafe",
5381 Self::LihzahrdWallUnsafe => "LihzahrdWallUnsafe",
5382 Self::SpelunkerFlare => "SpelunkerFlare",
5383 Self::CursedFlare => "CursedFlare",
5384 Self::RainbowFlare => "RainbowFlare",
5385 Self::ShimmerFlare => "ShimmerFlare",
5386 Self::Moondial => "Moondial",
5387 Self::WaffleIron => "WaffleIron",
5388 Self::BouncyBoulder => "BouncyBoulder",
5389 Self::LifeCrystalBoulder => "LifeCrystalBoulder",
5390 Self::DizzyHat => "DizzyHat",
5391 Self::LincolnsHoodie => "LincolnsHoodie",
5392 Self::LincolnsPants => "LincolnsPants",
5393 Self::SunOrnament => "SunOrnament",
5394 Self::HoplitePizza => "HoplitePizza",
5395 Self::LincolnsHood => "LincolnsHood",
5396 Self::UncumberingStone => "UncumberingStone",
5397 Self::SandSolution => "SandSolution",
5398 Self::SnowSolution => "SnowSolution",
5399 Self::DirtSolution => "DirtSolution",
5400 Self::PoopBlock => "PoopBlock",
5401 Self::PoopWall => "PoopWall",
5402 Self::ShimmerWall => "ShimmerWall",
5403 Self::ShimmerBrick => "ShimmerBrick",
5404 Self::ShimmerBrickWall => "ShimmerBrickWall",
5405 Self::DirtiestBlock => "DirtiestBlock",
5406 Self::LunarRustBrick => "LunarRustBrick",
5407 Self::DarkCelestialBrick => "DarkCelestialBrick",
5408 Self::AstraBrick => "AstraBrick",
5409 Self::CosmicEmberBrick => "CosmicEmberBrick",
5410 Self::CryocoreBrick => "CryocoreBrick",
5411 Self::MercuryBrick => "MercuryBrick",
5412 Self::StarRoyaleBrick => "StarRoyaleBrick",
5413 Self::HeavenforgeBrick => "HeavenforgeBrick",
5414 Self::LunarRustBrickWall => "LunarRustBrickWall",
5415 Self::DarkCelestialBrickWall => "DarkCelestialBrickWall",
5416 Self::AstraBrickWall => "AstraBrickWall",
5417 Self::CosmicEmberBrickWall => "CosmicEmberBrickWall",
5418 Self::CryocoreBrickWall => "CryocoreBrickWall",
5419 Self::MercuryBrickWall => "MercuryBrickWall",
5420 Self::StarRoyaleBrickWall => "StarRoyaleBrickWall",
5421 Self::HeavenforgeBrickWall => "HeavenforgeBrickWall",
5422 Self::AncientBlueDungeonBrick => "AncientBlueDungeonBrick",
5423 Self::AncientBlueDungeonBrickWall => "AncientBlueDungeonBrickWall",
5424 Self::AncientGreenDungeonBrick => "AncientGreenDungeonBrick",
5425 Self::AncientGreenDungeonBrickWall => "AncientGreenDungeonBrickWall",
5426 Self::AncientPinkDungeonBrick => "AncientPinkDungeonBrick",
5427 Self::AncientPinkDungeonBrickWall => "AncientPinkDungeonBrickWall",
5428 Self::AncientGoldBrick => "AncientGoldBrick",
5429 Self::AncientGoldBrickWall => "AncientGoldBrickWall",
5430 Self::AncientSilverBrick => "AncientSilverBrick",
5431 Self::AncientSilverBrickWall => "AncientSilverBrickWall",
5432 Self::AncientCopperBrick => "AncientCopperBrick",
5433 Self::AncientCopperBrickWall => "AncientCopperBrickWall",
5434 Self::AncientCobaltBrick => "AncientCobaltBrick",
5435 Self::AncientCobaltBrickWall => "AncientCobaltBrickWall",
5436 Self::AncientMythrilBrick => "AncientMythrilBrick",
5437 Self::AncientMythrilBrickWall => "AncientMythrilBrickWall",
5438 Self::AncientObsidianBrick => "AncientObsidianBrick",
5439 Self::AncientObsidianBrickWall => "AncientObsidianBrickWall",
5440 Self::AncientHellstoneBrick => "AncientHellstoneBrick",
5441 Self::AncientHellstoneBrickWall => "AncientHellstoneBrickWall",
5442 Self::ShellphoneDummy => "ShellphoneDummy",
5443 Self::Fertilizer => "Fertilizer",
5444 Self::LavaMossBlock => "LavaMossBlock",
5445 Self::ArgonMossBlock => "ArgonMossBlock",
5446 Self::KryptonMossBlock => "KryptonMossBlock",
5447 Self::XenonMossBlock => "XenonMossBlock",
5448 Self::VioletMossBlock => "VioletMossBlock",
5449 Self::RainbowMossBlock => "RainbowMossBlock",
5450 Self::LavaMossBlockWall => "LavaMossBlockWall",
5451 Self::ArgonMossBlockWall => "ArgonMossBlockWall",
5452 Self::KryptonMossBlockWall => "KryptonMossBlockWall",
5453 Self::XenonMossBlockWall => "XenonMossBlockWall",
5454 Self::VioletMossBlockWall => "VioletMossBlockWall",
5455 Self::RainbowMossBlockWall => "RainbowMossBlockWall",
5456 Self::JimsDrone => "JimsDrone",
5457 Self::JimsDroneVisor => "JimsDroneVisor",
5458 Self::DontHurtCrittersBookInactive => "DontHurtCrittersBookInactive",
5459 Self::DontHurtNatureBookInactive => "DontHurtNatureBookInactive",
5460 Self::DontHurtComboBookInactive => "DontHurtComboBookInactive",
5461 }
5462 }
5463
5464 pub fn from_code_name(code_name: &str) -> Option<Self> {
5465 Some(match code_name {
5466 "IronPickaxe" => Self::IronPickaxe,
5467 "DirtBlock" => Self::DirtBlock,
5468 "StoneBlock" => Self::StoneBlock,
5469 "IronBroadsword" => Self::IronBroadsword,
5470 "Mushroom" => Self::Mushroom,
5471 "IronShortsword" => Self::IronShortsword,
5472 "IronHammer" => Self::IronHammer,
5473 "Torch" => Self::Torch,
5474 "Wood" => Self::Wood,
5475 "IronAxe" => Self::IronAxe,
5476 "IronOre" => Self::IronOre,
5477 "CopperOre" => Self::CopperOre,
5478 "GoldOre" => Self::GoldOre,
5479 "SilverOre" => Self::SilverOre,
5480 "CopperWatch" => Self::CopperWatch,
5481 "SilverWatch" => Self::SilverWatch,
5482 "GoldWatch" => Self::GoldWatch,
5483 "DepthMeter" => Self::DepthMeter,
5484 "GoldBar" => Self::GoldBar,
5485 "CopperBar" => Self::CopperBar,
5486 "SilverBar" => Self::SilverBar,
5487 "IronBar" => Self::IronBar,
5488 "Gel" => Self::Gel,
5489 "WoodenSword" => Self::WoodenSword,
5490 "WoodenDoor" => Self::WoodenDoor,
5491 "StoneWall" => Self::StoneWall,
5492 "Acorn" => Self::Acorn,
5493 "LesserHealingPotion" => Self::LesserHealingPotion,
5494 "LifeCrystal" => Self::LifeCrystal,
5495 "DirtWall" => Self::DirtWall,
5496 "Bottle" => Self::Bottle,
5497 "WoodenTable" => Self::WoodenTable,
5498 "Furnace" => Self::Furnace,
5499 "WoodenChair" => Self::WoodenChair,
5500 "IronAnvil" => Self::IronAnvil,
5501 "WorkBench" => Self::WorkBench,
5502 "Goggles" => Self::Goggles,
5503 "Lens" => Self::Lens,
5504 "WoodenBow" => Self::WoodenBow,
5505 "WoodenArrow" => Self::WoodenArrow,
5506 "FlamingArrow" => Self::FlamingArrow,
5507 "Shuriken" => Self::Shuriken,
5508 "SuspiciousLookingEye" => Self::SuspiciousLookingEye,
5509 "DemonBow" => Self::DemonBow,
5510 "WarAxeoftheNight" => Self::WarAxeOfTheNight,
5511 "LightsBane" => Self::LightsBane,
5512 "UnholyArrow" => Self::UnholyArrow,
5513 "Chest" => Self::Chest,
5514 "BandofRegeneration" => Self::BandOfRegeneration,
5515 "MagicMirror" => Self::MagicMirror,
5516 "JestersArrow" => Self::JestersArrow,
5517 "AngelStatue" => Self::AngelStatue,
5518 "CloudinaBottle" => Self::CloudInABottle,
5519 "HermesBoots" => Self::HermesBoots,
5520 "EnchantedBoomerang" => Self::EnchantedBoomerang,
5521 "DemoniteOre" => Self::DemoniteOre,
5522 "DemoniteBar" => Self::DemoniteBar,
5523 "Heart" => Self::Heart,
5524 "CorruptSeeds" => Self::CorruptSeeds,
5525 "VileMushroom" => Self::VileMushroom,
5526 "EbonstoneBlock" => Self::EbonstoneBlock,
5527 "GrassSeeds" => Self::GrassSeeds,
5528 "Sunflower" => Self::Sunflower,
5529 "Vilethorn" => Self::Vilethorn,
5530 "Starfury" => Self::Starfury,
5531 "PurificationPowder" => Self::PurificationPowder,
5532 "VilePowder" => Self::VilePowder,
5533 "RottenChunk" => Self::RottenChunk,
5534 "WormTooth" => Self::WormTooth,
5535 "WormFood" => Self::WormFood,
5536 "CopperCoin" => Self::CopperCoin,
5537 "SilverCoin" => Self::SilverCoin,
5538 "GoldCoin" => Self::GoldCoin,
5539 "PlatinumCoin" => Self::PlatinumCoin,
5540 "FallenStar" => Self::FallenStar,
5541 "CopperGreaves" => Self::CopperGreaves,
5542 "IronGreaves" => Self::IronGreaves,
5543 "SilverGreaves" => Self::SilverGreaves,
5544 "GoldGreaves" => Self::GoldGreaves,
5545 "CopperChainmail" => Self::CopperChainmail,
5546 "IronChainmail" => Self::IronChainmail,
5547 "SilverChainmail" => Self::SilverChainmail,
5548 "GoldChainmail" => Self::GoldChainmail,
5549 "GrapplingHook" => Self::GrapplingHook,
5550 "Chain" => Self::Chain,
5551 "ShadowScale" => Self::ShadowScale,
5552 "PiggyBank" => Self::PiggyBank,
5553 "MiningHelmet" => Self::MiningHelmet,
5554 "CopperHelmet" => Self::CopperHelmet,
5555 "IronHelmet" => Self::IronHelmet,
5556 "SilverHelmet" => Self::SilverHelmet,
5557 "GoldHelmet" => Self::GoldHelmet,
5558 "WoodWall" => Self::WoodWall,
5559 "WoodPlatform" => Self::WoodPlatform,
5560 "FlintlockPistol" => Self::FlintlockPistol,
5561 "Musket" => Self::Musket,
5562 "MusketBall" => Self::MusketBall,
5563 "Minishark" => Self::Minishark,
5564 "IronBow" => Self::IronBow,
5565 "ShadowGreaves" => Self::ShadowGreaves,
5566 "ShadowScalemail" => Self::ShadowScalemail,
5567 "ShadowHelmet" => Self::ShadowHelmet,
5568 "NightmarePickaxe" => Self::NightmarePickaxe,
5569 "TheBreaker" => Self::TheBreaker,
5570 "Candle" => Self::Candle,
5571 "CopperChandelier" => Self::CopperChandelier,
5572 "SilverChandelier" => Self::SilverChandelier,
5573 "GoldChandelier" => Self::GoldChandelier,
5574 "ManaCrystal" => Self::ManaCrystal,
5575 "LesserManaPotion" => Self::LesserManaPotion,
5576 "BandofStarpower" => Self::BandOfStarpower,
5577 "FlowerofFire" => Self::FlowerOfFire,
5578 "MagicMissile" => Self::MagicMissile,
5579 "DirtRod" => Self::DirtRod,
5580 "ShadowOrb" => Self::ShadowOrb,
5581 "Meteorite" => Self::Meteorite,
5582 "MeteoriteBar" => Self::MeteoriteBar,
5583 "Hook" => Self::Hook,
5584 "Flamarang" => Self::Flamarang,
5585 "MoltenFury" => Self::MoltenFury,
5586 "FieryGreatsword" => Self::FieryGreatsword,
5587 "MoltenPickaxe" => Self::MoltenPickaxe,
5588 "MeteorHelmet" => Self::MeteorHelmet,
5589 "MeteorSuit" => Self::MeteorSuit,
5590 "MeteorLeggings" => Self::MeteorLeggings,
5591 "BottledWater" => Self::BottledWater,
5592 "SpaceGun" => Self::SpaceGun,
5593 "RocketBoots" => Self::RocketBoots,
5594 "GrayBrick" => Self::GrayBrick,
5595 "GrayBrickWall" => Self::GrayBrickWall,
5596 "RedBrick" => Self::RedBrick,
5597 "RedBrickWall" => Self::RedBrickWall,
5598 "ClayBlock" => Self::ClayBlock,
5599 "BlueBrick" => Self::BlueBrick,
5600 "BlueBrickWall" => Self::BlueBrickWall,
5601 "ChainLantern" => Self::ChainLantern,
5602 "GreenBrick" => Self::GreenBrick,
5603 "GreenBrickWall" => Self::GreenBrickWall,
5604 "PinkBrick" => Self::PinkBrick,
5605 "PinkBrickWall" => Self::PinkBrickWall,
5606 "GoldBrick" => Self::GoldBrick,
5607 "GoldBrickWall" => Self::GoldBrickWall,
5608 "SilverBrick" => Self::SilverBrick,
5609 "SilverBrickWall" => Self::SilverBrickWall,
5610 "CopperBrick" => Self::CopperBrick,
5611 "CopperBrickWall" => Self::CopperBrickWall,
5612 "Spike" => Self::Spike,
5613 "WaterCandle" => Self::WaterCandle,
5614 "Book" => Self::Book,
5615 "Cobweb" => Self::Cobweb,
5616 "NecroHelmet" => Self::NecroHelmet,
5617 "NecroBreastplate" => Self::NecroBreastplate,
5618 "NecroGreaves" => Self::NecroGreaves,
5619 "Bone" => Self::Bone,
5620 "Muramasa" => Self::Muramasa,
5621 "CobaltShield" => Self::CobaltShield,
5622 "AquaScepter" => Self::AquaScepter,
5623 "LuckyHorseshoe" => Self::LuckyHorseshoe,
5624 "ShinyRedBalloon" => Self::ShinyRedBalloon,
5625 "Harpoon" => Self::Harpoon,
5626 "SpikyBall" => Self::SpikyBall,
5627 "BallOHurt" => Self::BallOHurt,
5628 "BlueMoon" => Self::BlueMoon,
5629 "Handgun" => Self::Handgun,
5630 "WaterBolt" => Self::WaterBolt,
5631 "Bomb" => Self::Bomb,
5632 "Dynamite" => Self::Dynamite,
5633 "Grenade" => Self::Grenade,
5634 "SandBlock" => Self::SandBlock,
5635 "Glass" => Self::Glass,
5636 "Sign" => Self::Sign,
5637 "AshBlock" => Self::AshBlock,
5638 "Obsidian" => Self::Obsidian,
5639 "Hellstone" => Self::Hellstone,
5640 "HellstoneBar" => Self::HellstoneBar,
5641 "MudBlock" => Self::MudBlock,
5642 "Sapphire" => Self::Sapphire,
5643 "Ruby" => Self::Ruby,
5644 "Emerald" => Self::Emerald,
5645 "Topaz" => Self::Topaz,
5646 "Amethyst" => Self::Amethyst,
5647 "Diamond" => Self::Diamond,
5648 "GlowingMushroom" => Self::GlowingMushroom,
5649 "Star" => Self::Star,
5650 "IvyWhip" => Self::IvyWhip,
5651 "BreathingReed" => Self::BreathingReed,
5652 "Flipper" => Self::Flipper,
5653 "HealingPotion" => Self::HealingPotion,
5654 "ManaPotion" => Self::ManaPotion,
5655 "BladeofGrass" => Self::BladeOfGrass,
5656 "ThornChakram" => Self::ThornChakram,
5657 "ObsidianBrick" => Self::ObsidianBrick,
5658 "ObsidianSkull" => Self::ObsidianSkull,
5659 "MushroomGrassSeeds" => Self::MushroomGrassSeeds,
5660 "JungleGrassSeeds" => Self::JungleGrassSeeds,
5661 "WoodenHammer" => Self::WoodenHammer,
5662 "StarCannon" => Self::StarCannon,
5663 "BluePhaseblade" => Self::BluePhaseblade,
5664 "RedPhaseblade" => Self::RedPhaseblade,
5665 "GreenPhaseblade" => Self::GreenPhaseblade,
5666 "PurplePhaseblade" => Self::PurplePhaseblade,
5667 "WhitePhaseblade" => Self::WhitePhaseblade,
5668 "YellowPhaseblade" => Self::YellowPhaseblade,
5669 "MeteorHamaxe" => Self::MeteorHamaxe,
5670 "EmptyBucket" => Self::EmptyBucket,
5671 "WaterBucket" => Self::WaterBucket,
5672 "LavaBucket" => Self::LavaBucket,
5673 "JungleRose" => Self::JungleRose,
5674 "Stinger" => Self::Stinger,
5675 "Vine" => Self::Vine,
5676 "FeralClaws" => Self::FeralClaws,
5677 "AnkletoftheWind" => Self::AnkletOfTheWind,
5678 "StaffofRegrowth" => Self::StaffOfRegrowth,
5679 "HellstoneBrick" => Self::HellstoneBrick,
5680 "WhoopieCushion" => Self::WhoopieCushion,
5681 "Shackle" => Self::Shackle,
5682 "MoltenHamaxe" => Self::MoltenHamaxe,
5683 "Flamelash" => Self::Flamelash,
5684 "PhoenixBlaster" => Self::PhoenixBlaster,
5685 "Sunfury" => Self::Sunfury,
5686 "Hellforge" => Self::Hellforge,
5687 "ClayPot" => Self::ClayPot,
5688 "NaturesGift" => Self::NaturesGift,
5689 "Bed" => Self::Bed,
5690 "Silk" => Self::Silk,
5691 "LesserRestorationPotion" => Self::LesserRestorationPotion,
5692 "RestorationPotion" => Self::RestorationPotion,
5693 "JungleHat" => Self::JungleHat,
5694 "JungleShirt" => Self::JungleShirt,
5695 "JunglePants" => Self::JunglePants,
5696 "MoltenHelmet" => Self::MoltenHelmet,
5697 "MoltenBreastplate" => Self::MoltenBreastplate,
5698 "MoltenGreaves" => Self::MoltenGreaves,
5699 "MeteorShot" => Self::MeteorShot,
5700 "StickyBomb" => Self::StickyBomb,
5701 "BlackLens" => Self::BlackLens,
5702 "Sunglasses" => Self::Sunglasses,
5703 "WizardHat" => Self::WizardHat,
5704 "TopHat" => Self::TopHat,
5705 "TuxedoShirt" => Self::TuxedoShirt,
5706 "TuxedoPants" => Self::TuxedoPants,
5707 "SummerHat" => Self::SummerHat,
5708 "BunnyHood" => Self::BunnyHood,
5709 "PlumbersHat" => Self::PlumbersHat,
5710 "PlumbersShirt" => Self::PlumbersShirt,
5711 "PlumbersPants" => Self::PlumbersPants,
5712 "HerosHat" => Self::HerosHat,
5713 "HerosShirt" => Self::HerosShirt,
5714 "HerosPants" => Self::HerosPants,
5715 "FishBowl" => Self::FishBowl,
5716 "ArchaeologistsHat" => Self::ArchaeologistsHat,
5717 "ArchaeologistsJacket" => Self::ArchaeologistsJacket,
5718 "ArchaeologistsPants" => Self::ArchaeologistsPants,
5719 "BlackThread" => Self::BlackThread,
5720 "GreenThread" => Self::GreenThread,
5721 "NinjaHood" => Self::NinjaHood,
5722 "NinjaShirt" => Self::NinjaShirt,
5723 "NinjaPants" => Self::NinjaPants,
5724 "Leather" => Self::Leather,
5725 "RedHat" => Self::RedHat,
5726 "Goldfish" => Self::Goldfish,
5727 "Robe" => Self::Robe,
5728 "RobotHat" => Self::RobotHat,
5729 "GoldCrown" => Self::GoldCrown,
5730 "HellfireArrow" => Self::HellfireArrow,
5731 "Sandgun" => Self::Sandgun,
5732 "GuideVoodooDoll" => Self::GuideVoodooDoll,
5733 "DivingHelmet" => Self::DivingHelmet,
5734 "FamiliarShirt" => Self::FamiliarShirt,
5735 "FamiliarPants" => Self::FamiliarPants,
5736 "FamiliarWig" => Self::FamiliarWig,
5737 "DemonScythe" => Self::DemonScythe,
5738 "NightsEdge" => Self::NightsEdge,
5739 "DarkLance" => Self::DarkLance,
5740 "Coral" => Self::Coral,
5741 "Cactus" => Self::Cactus,
5742 "Trident" => Self::Trident,
5743 "SilverBullet" => Self::SilverBullet,
5744 "ThrowingKnife" => Self::ThrowingKnife,
5745 "Spear" => Self::Spear,
5746 "Blowpipe" => Self::Blowpipe,
5747 "Glowstick" => Self::Glowstick,
5748 "Seed" => Self::Seed,
5749 "WoodenBoomerang" => Self::WoodenBoomerang,
5750 "Aglet" => Self::Aglet,
5751 "StickyGlowstick" => Self::StickyGlowstick,
5752 "PoisonedKnife" => Self::PoisonedKnife,
5753 "ObsidianSkinPotion" => Self::ObsidianSkinPotion,
5754 "RegenerationPotion" => Self::RegenerationPotion,
5755 "SwiftnessPotion" => Self::SwiftnessPotion,
5756 "GillsPotion" => Self::GillsPotion,
5757 "IronskinPotion" => Self::IronskinPotion,
5758 "ManaRegenerationPotion" => Self::ManaRegenerationPotion,
5759 "MagicPowerPotion" => Self::MagicPowerPotion,
5760 "FeatherfallPotion" => Self::FeatherfallPotion,
5761 "SpelunkerPotion" => Self::SpelunkerPotion,
5762 "InvisibilityPotion" => Self::InvisibilityPotion,
5763 "ShinePotion" => Self::ShinePotion,
5764 "NightOwlPotion" => Self::NightOwlPotion,
5765 "BattlePotion" => Self::BattlePotion,
5766 "ThornsPotion" => Self::ThornsPotion,
5767 "WaterWalkingPotion" => Self::WaterWalkingPotion,
5768 "ArcheryPotion" => Self::ArcheryPotion,
5769 "HunterPotion" => Self::HunterPotion,
5770 "GravitationPotion" => Self::GravitationPotion,
5771 "GoldChest" => Self::GoldChest,
5772 "DaybloomSeeds" => Self::DaybloomSeeds,
5773 "MoonglowSeeds" => Self::MoonglowSeeds,
5774 "BlinkrootSeeds" => Self::BlinkrootSeeds,
5775 "DeathweedSeeds" => Self::DeathweedSeeds,
5776 "WaterleafSeeds" => Self::WaterleafSeeds,
5777 "FireblossomSeeds" => Self::FireblossomSeeds,
5778 "Daybloom" => Self::Daybloom,
5779 "Moonglow" => Self::Moonglow,
5780 "Blinkroot" => Self::Blinkroot,
5781 "Deathweed" => Self::Deathweed,
5782 "Waterleaf" => Self::Waterleaf,
5783 "Fireblossom" => Self::Fireblossom,
5784 "SharkFin" => Self::SharkFin,
5785 "Feather" => Self::Feather,
5786 "Tombstone" => Self::Tombstone,
5787 "MimeMask" => Self::MimeMask,
5788 "AntlionMandible" => Self::AntlionMandible,
5789 "IllegalGunParts" => Self::IllegalGunParts,
5790 "TheDoctorsShirt" => Self::TheDoctorsShirt,
5791 "TheDoctorsPants" => Self::TheDoctorsPants,
5792 "GoldenKey" => Self::GoldenKey,
5793 "ShadowChest" => Self::ShadowChest,
5794 "ShadowKey" => Self::ShadowKey,
5795 "ObsidianBrickWall" => Self::ObsidianBrickWall,
5796 "JungleSpores" => Self::JungleSpores,
5797 "Loom" => Self::Loom,
5798 "Piano" => Self::Piano,
5799 "Dresser" => Self::Dresser,
5800 "Bench" => Self::Bench,
5801 "Bathtub" => Self::Bathtub,
5802 "RedBanner" => Self::RedBanner,
5803 "GreenBanner" => Self::GreenBanner,
5804 "BlueBanner" => Self::BlueBanner,
5805 "YellowBanner" => Self::YellowBanner,
5806 "LampPost" => Self::LampPost,
5807 "TikiTorch" => Self::TikiTorch,
5808 "Barrel" => Self::Barrel,
5809 "ChineseLantern" => Self::ChineseLantern,
5810 "CookingPot" => Self::CookingPot,
5811 "Safe" => Self::Safe,
5812 "SkullLantern" => Self::SkullLantern,
5813 "TrashCan" => Self::TrashCan,
5814 "Candelabra" => Self::Candelabra,
5815 "PinkVase" => Self::PinkVase,
5816 "Mug" => Self::Mug,
5817 "Keg" => Self::Keg,
5818 "Ale" => Self::Ale,
5819 "Bookcase" => Self::Bookcase,
5820 "Throne" => Self::Throne,
5821 "Bowl" => Self::Bowl,
5822 "BowlofSoup" => Self::BowlOfSoup,
5823 "Toilet" => Self::Toilet,
5824 "GrandfatherClock" => Self::GrandfatherClock,
5825 "ArmorStatue" => Self::ArmorStatue,
5826 "GoblinBattleStandard" => Self::GoblinBattleStandard,
5827 "TatteredCloth" => Self::TatteredCloth,
5828 "Sawmill" => Self::Sawmill,
5829 "CobaltOre" => Self::CobaltOre,
5830 "MythrilOre" => Self::MythrilOre,
5831 "AdamantiteOre" => Self::AdamantiteOre,
5832 "Pwnhammer" => Self::Pwnhammer,
5833 "Excalibur" => Self::Excalibur,
5834 "HallowedSeeds" => Self::HallowedSeeds,
5835 "EbonsandBlock" => Self::EbonsandBlock,
5836 "CobaltHat" => Self::CobaltHat,
5837 "CobaltHelmet" => Self::CobaltHelmet,
5838 "CobaltMask" => Self::CobaltMask,
5839 "CobaltBreastplate" => Self::CobaltBreastplate,
5840 "CobaltLeggings" => Self::CobaltLeggings,
5841 "MythrilHood" => Self::MythrilHood,
5842 "MythrilHelmet" => Self::MythrilHelmet,
5843 "MythrilHat" => Self::MythrilHat,
5844 "MythrilChainmail" => Self::MythrilChainmail,
5845 "MythrilGreaves" => Self::MythrilGreaves,
5846 "CobaltBar" => Self::CobaltBar,
5847 "MythrilBar" => Self::MythrilBar,
5848 "CobaltChainsaw" => Self::CobaltChainsaw,
5849 "MythrilChainsaw" => Self::MythrilChainsaw,
5850 "CobaltDrill" => Self::CobaltDrill,
5851 "MythrilDrill" => Self::MythrilDrill,
5852 "AdamantiteChainsaw" => Self::AdamantiteChainsaw,
5853 "AdamantiteDrill" => Self::AdamantiteDrill,
5854 "DaoofPow" => Self::DaoOfPow,
5855 "MythrilHalberd" => Self::MythrilHalberd,
5856 "AdamantiteBar" => Self::AdamantiteBar,
5857 "GlassWall" => Self::GlassWall,
5858 "Compass" => Self::Compass,
5859 "DivingGear" => Self::DivingGear,
5860 "GPS" => Self::Gps,
5861 "ObsidianHorseshoe" => Self::ObsidianHorseshoe,
5862 "ObsidianShield" => Self::ObsidianShield,
5863 "TinkerersWorkshop" => Self::TinkerersWorkshop,
5864 "CloudinaBalloon" => Self::CloudinaBalloon,
5865 "AdamantiteHeadgear" => Self::AdamantiteHeadgear,
5866 "AdamantiteHelmet" => Self::AdamantiteHelmet,
5867 "AdamantiteMask" => Self::AdamantiteMask,
5868 "AdamantiteBreastplate" => Self::AdamantiteBreastplate,
5869 "AdamantiteLeggings" => Self::AdamantiteLeggings,
5870 "SpectreBoots" => Self::SpectreBoots,
5871 "AdamantiteGlaive" => Self::AdamantiteGlaive,
5872 "Toolbelt" => Self::Toolbelt,
5873 "PearlsandBlock" => Self::PearlsandBlock,
5874 "PearlstoneBlock" => Self::PearlstoneBlock,
5875 "MiningShirt" => Self::MiningShirt,
5876 "MiningPants" => Self::MiningPants,
5877 "PearlstoneBrick" => Self::PearlstoneBrick,
5878 "IridescentBrick" => Self::IridescentBrick,
5879 "MudstoneBlock" => Self::MudstoneBlock,
5880 "CobaltBrick" => Self::CobaltBrick,
5881 "MythrilBrick" => Self::MythrilBrick,
5882 "PearlstoneBrickWall" => Self::PearlstoneBrickWall,
5883 "IridescentBrickWall" => Self::IridescentBrickWall,
5884 "MudstoneBrickWall" => Self::MudstoneBrickWall,
5885 "CobaltBrickWall" => Self::CobaltBrickWall,
5886 "MythrilBrickWall" => Self::MythrilBrickWall,
5887 "HolyWater" => Self::HolyWater,
5888 "UnholyWater" => Self::UnholyWater,
5889 "SiltBlock" => Self::SiltBlock,
5890 "FairyBell" => Self::FairyBell,
5891 "BreakerBlade" => Self::BreakerBlade,
5892 "BlueTorch" => Self::BlueTorch,
5893 "RedTorch" => Self::RedTorch,
5894 "GreenTorch" => Self::GreenTorch,
5895 "PurpleTorch" => Self::PurpleTorch,
5896 "WhiteTorch" => Self::WhiteTorch,
5897 "YellowTorch" => Self::YellowTorch,
5898 "DemonTorch" => Self::DemonTorch,
5899 "ClockworkAssaultRifle" => Self::ClockworkAssaultRifle,
5900 "CobaltRepeater" => Self::CobaltRepeater,
5901 "MythrilRepeater" => Self::MythrilRepeater,
5902 "DualHook" => Self::DualHook,
5903 "StarStatue" => Self::StarStatue,
5904 "SwordStatue" => Self::SwordStatue,
5905 "SlimeStatue" => Self::SlimeStatue,
5906 "GoblinStatue" => Self::GoblinStatue,
5907 "ShieldStatue" => Self::ShieldStatue,
5908 "BatStatue" => Self::BatStatue,
5909 "FishStatue" => Self::FishStatue,
5910 "BunnyStatue" => Self::BunnyStatue,
5911 "SkeletonStatue" => Self::SkeletonStatue,
5912 "ReaperStatue" => Self::ReaperStatue,
5913 "WomanStatue" => Self::WomanStatue,
5914 "ImpStatue" => Self::ImpStatue,
5915 "GargoyleStatue" => Self::GargoyleStatue,
5916 "GloomStatue" => Self::GloomStatue,
5917 "HornetStatue" => Self::HornetStatue,
5918 "BombStatue" => Self::BombStatue,
5919 "CrabStatue" => Self::CrabStatue,
5920 "HammerStatue" => Self::HammerStatue,
5921 "PotionStatue" => Self::PotionStatue,
5922 "SpearStatue" => Self::SpearStatue,
5923 "CrossStatue" => Self::CrossStatue,
5924 "JellyfishStatue" => Self::JellyfishStatue,
5925 "BowStatue" => Self::BowStatue,
5926 "BoomerangStatue" => Self::BoomerangStatue,
5927 "BootStatue" => Self::BootStatue,
5928 "ChestStatue" => Self::ChestStatue,
5929 "BirdStatue" => Self::BirdStatue,
5930 "AxeStatue" => Self::AxeStatue,
5931 "CorruptStatue" => Self::CorruptStatue,
5932 "TreeStatue" => Self::TreeStatue,
5933 "AnvilStatue" => Self::AnvilStatue,
5934 "PickaxeStatue" => Self::PickaxeStatue,
5935 "MushroomStatue" => Self::MushroomStatue,
5936 "EyeballStatue" => Self::EyeballStatue,
5937 "PillarStatue" => Self::PillarStatue,
5938 "HeartStatue" => Self::HeartStatue,
5939 "PotStatue" => Self::PotStatue,
5940 "SunflowerStatue" => Self::SunflowerStatue,
5941 "KingStatue" => Self::KingStatue,
5942 "QueenStatue" => Self::QueenStatue,
5943 "PiranhaStatue" => Self::PiranhaStatue,
5944 "PlankedWall" => Self::PlankedWall,
5945 "WoodenBeam" => Self::WoodenBeam,
5946 "AdamantiteRepeater" => Self::AdamantiteRepeater,
5947 "AdamantiteSword" => Self::AdamantiteSword,
5948 "CobaltSword" => Self::CobaltSword,
5949 "MythrilSword" => Self::MythrilSword,
5950 "MoonCharm" => Self::MoonCharm,
5951 "Ruler" => Self::Ruler,
5952 "CrystalBall" => Self::CrystalBall,
5953 "DiscoBall" => Self::DiscoBall,
5954 "SorcererEmblem" => Self::SorcererEmblem,
5955 "WarriorEmblem" => Self::WarriorEmblem,
5956 "RangerEmblem" => Self::RangerEmblem,
5957 "DemonWings" => Self::DemonWings,
5958 "AngelWings" => Self::AngelWings,
5959 "MagicalHarp" => Self::MagicalHarp,
5960 "RainbowRod" => Self::RainbowRod,
5961 "IceRod" => Self::IceRod,
5962 "NeptunesShell" => Self::NeptunesShell,
5963 "Mannequin" => Self::Mannequin,
5964 "GreaterHealingPotion" => Self::GreaterHealingPotion,
5965 "GreaterManaPotion" => Self::GreaterManaPotion,
5966 "PixieDust" => Self::PixieDust,
5967 "CrystalShard" => Self::CrystalShard,
5968 "ClownHat" => Self::ClownHat,
5969 "ClownShirt" => Self::ClownShirt,
5970 "ClownPants" => Self::ClownPants,
5971 "Flamethrower" => Self::Flamethrower,
5972 "Bell" => Self::Bell,
5973 "Harp" => Self::Harp,
5974 "Wrench" => Self::Wrench,
5975 "WireCutter" => Self::WireCutter,
5976 "ActiveStoneBlock" => Self::ActiveStoneBlock,
5977 "InactiveStoneBlock" => Self::InactiveStoneBlock,
5978 "Lever" => Self::Lever,
5979 "LaserRifle" => Self::LaserRifle,
5980 "CrystalBullet" => Self::CrystalBullet,
5981 "HolyArrow" => Self::HolyArrow,
5982 "MagicDagger" => Self::MagicDagger,
5983 "CrystalStorm" => Self::CrystalStorm,
5984 "CursedFlames" => Self::CursedFlames,
5985 "SoulofLight" => Self::SoulOfLight,
5986 "SoulofNight" => Self::SoulOfNight,
5987 "CursedFlame" => Self::CursedFlame,
5988 "CursedTorch" => Self::CursedTorch,
5989 "AdamantiteForge" => Self::AdamantiteForge,
5990 "MythrilAnvil" => Self::MythrilAnvil,
5991 "UnicornHorn" => Self::UnicornHorn,
5992 "DarkShard" => Self::DarkShard,
5993 "LightShard" => Self::LightShard,
5994 "RedPressurePlate" => Self::RedPressurePlate,
5995 "Wire" => Self::Wire,
5996 "SpellTome" => Self::SpellTome,
5997 "StarCloak" => Self::StarCloak,
5998 "Megashark" => Self::Megashark,
5999 "Shotgun" => Self::Shotgun,
6000 "PhilosophersStone" => Self::PhilosophersStone,
6001 "TitanGlove" => Self::TitanGlove,
6002 "CobaltNaginata" => Self::CobaltNaginata,
6003 "Switch" => Self::Switch,
6004 "DartTrap" => Self::DartTrap,
6005 "Boulder" => Self::Boulder,
6006 "GreenPressurePlate" => Self::GreenPressurePlate,
6007 "GrayPressurePlate" => Self::GrayPressurePlate,
6008 "BrownPressurePlate" => Self::BrownPressurePlate,
6009 "MechanicalEye" => Self::MechanicalEye,
6010 "CursedArrow" => Self::CursedArrow,
6011 "CursedBullet" => Self::CursedBullet,
6012 "SoulofFright" => Self::SoulOfFright,
6013 "SoulofMight" => Self::SoulOfMight,
6014 "SoulofSight" => Self::SoulOfSight,
6015 "Gungnir" => Self::Gungnir,
6016 "HallowedPlateMail" => Self::HallowedPlateMail,
6017 "HallowedGreaves" => Self::HallowedGreaves,
6018 "HallowedHelmet" => Self::HallowedHelmet,
6019 "CrossNecklace" => Self::CrossNecklace,
6020 "ManaFlower" => Self::ManaFlower,
6021 "MechanicalWorm" => Self::MechanicalWorm,
6022 "MechanicalSkull" => Self::MechanicalSkull,
6023 "HallowedHeadgear" => Self::HallowedHeadgear,
6024 "HallowedMask" => Self::HallowedMask,
6025 "SlimeCrown" => Self::SlimeCrown,
6026 "LightDisc" => Self::LightDisc,
6027 "MusicBoxOverworldDay" => Self::MusicBoxOverworldDay,
6028 "MusicBoxEerie" => Self::MusicBoxEerie,
6029 "MusicBoxNight" => Self::MusicBoxNight,
6030 "MusicBoxTitle" => Self::MusicBoxTitle,
6031 "MusicBoxUnderground" => Self::MusicBoxUnderground,
6032 "MusicBoxBoss1" => Self::MusicBoxBoss1,
6033 "MusicBoxJungle" => Self::MusicBoxJungle,
6034 "MusicBoxCorruption" => Self::MusicBoxCorruption,
6035 "MusicBoxUndergroundCorruption" => Self::MusicBoxUndergroundCorruption,
6036 "MusicBoxTheHallow" => Self::MusicBoxTheHallow,
6037 "MusicBoxBoss2" => Self::MusicBoxBoss2,
6038 "MusicBoxUndergroundHallow" => Self::MusicBoxUndergroundHallow,
6039 "MusicBoxBoss3" => Self::MusicBoxBoss3,
6040 "SoulofFlight" => Self::SoulOfFlight,
6041 "MusicBox" => Self::MusicBox,
6042 "DemoniteBrick" => Self::DemoniteBrick,
6043 "HallowedRepeater" => Self::HallowedRepeater,
6044 "Drax" => Self::Drax,
6045 "Explosives" => Self::Explosives,
6046 "InletPump" => Self::InletPump,
6047 "OutletPump" => Self::OutletPump,
6048 "Timer1Second" => Self::Timer1Second,
6049 "Timer3Second" => Self::Timer3Second,
6050 "Timer5Second" => Self::Timer5Second,
6051 "CandyCaneBlock" => Self::CandyCaneBlock,
6052 "CandyCaneWall" => Self::CandyCaneWall,
6053 "SantaHat" => Self::SantaHat,
6054 "SantaShirt" => Self::SantaShirt,
6055 "SantaPants" => Self::SantaPants,
6056 "GreenCandyCaneBlock" => Self::GreenCandyCaneBlock,
6057 "GreenCandyCaneWall" => Self::GreenCandyCaneWall,
6058 "SnowBlock" => Self::SnowBlock,
6059 "SnowBrick" => Self::SnowBrick,
6060 "SnowBrickWall" => Self::SnowBrickWall,
6061 "BlueLight" => Self::BlueLight,
6062 "RedLight" => Self::RedLight,
6063 "GreenLight" => Self::GreenLight,
6064 "BluePresent" => Self::BluePresent,
6065 "GreenPresent" => Self::GreenPresent,
6066 "YellowPresent" => Self::YellowPresent,
6067 "SnowGlobe" => Self::SnowGlobe,
6068 "Carrot" => Self::Carrot,
6069 "AdamantiteBeam" => Self::AdamantiteBeam,
6070 "AdamantiteBeamWall" => Self::AdamantiteBeamWall,
6071 "DemoniteBrickWall" => Self::DemoniteBrickWall,
6072 "SandstoneBrick" => Self::SandstoneBrick,
6073 "SandstoneBrickWall" => Self::SandstoneBrickWall,
6074 "EbonstoneBrick" => Self::EbonstoneBrick,
6075 "EbonstoneBrickWall" => Self::EbonstoneBrickWall,
6076 "RedStucco" => Self::RedStucco,
6077 "YellowStucco" => Self::YellowStucco,
6078 "GreenStucco" => Self::GreenStucco,
6079 "GrayStucco" => Self::GrayStucco,
6080 "RedStuccoWall" => Self::RedStuccoWall,
6081 "YellowStuccoWall" => Self::YellowStuccoWall,
6082 "GreenStuccoWall" => Self::GreenStuccoWall,
6083 "GrayStuccoWall" => Self::GrayStuccoWall,
6084 "Ebonwood" => Self::Ebonwood,
6085 "RichMahogany" => Self::RichMahogany,
6086 "Pearlwood" => Self::Pearlwood,
6087 "EbonwoodWall" => Self::EbonwoodWall,
6088 "RichMahoganyWall" => Self::RichMahoganyWall,
6089 "PearlwoodWall" => Self::PearlwoodWall,
6090 "EbonwoodChest" => Self::EbonwoodChest,
6091 "RichMahoganyChest" => Self::RichMahoganyChest,
6092 "PearlwoodChest" => Self::PearlwoodChest,
6093 "EbonwoodChair" => Self::EbonwoodChair,
6094 "RichMahoganyChair" => Self::RichMahoganyChair,
6095 "PearlwoodChair" => Self::PearlwoodChair,
6096 "EbonwoodPlatform" => Self::EbonwoodPlatform,
6097 "RichMahoganyPlatform" => Self::RichMahoganyPlatform,
6098 "PearlwoodPlatform" => Self::PearlwoodPlatform,
6099 "BonePlatform" => Self::BonePlatform,
6100 "EbonwoodWorkBench" => Self::EbonwoodWorkBench,
6101 "RichMahoganyWorkBench" => Self::RichMahoganyWorkBench,
6102 "PearlwoodWorkBench" => Self::PearlwoodWorkBench,
6103 "EbonwoodTable" => Self::EbonwoodTable,
6104 "RichMahoganyTable" => Self::RichMahoganyTable,
6105 "PearlwoodTable" => Self::PearlwoodTable,
6106 "EbonwoodPiano" => Self::EbonwoodPiano,
6107 "RichMahoganyPiano" => Self::RichMahoganyPiano,
6108 "PearlwoodPiano" => Self::PearlwoodPiano,
6109 "EbonwoodBed" => Self::EbonwoodBed,
6110 "RichMahoganyBed" => Self::RichMahoganyBed,
6111 "PearlwoodBed" => Self::PearlwoodBed,
6112 "EbonwoodDresser" => Self::EbonwoodDresser,
6113 "RichMahoganyDresser" => Self::RichMahoganyDresser,
6114 "PearlwoodDresser" => Self::PearlwoodDresser,
6115 "EbonwoodDoor" => Self::EbonwoodDoor,
6116 "RichMahoganyDoor" => Self::RichMahoganyDoor,
6117 "PearlwoodDoor" => Self::PearlwoodDoor,
6118 "EbonwoodSword" => Self::EbonwoodSword,
6119 "EbonwoodHammer" => Self::EbonwoodHammer,
6120 "EbonwoodBow" => Self::EbonwoodBow,
6121 "RichMahoganySword" => Self::RichMahoganySword,
6122 "RichMahoganyHammer" => Self::RichMahoganyHammer,
6123 "RichMahoganyBow" => Self::RichMahoganyBow,
6124 "PearlwoodSword" => Self::PearlwoodSword,
6125 "PearlwoodHammer" => Self::PearlwoodHammer,
6126 "PearlwoodBow" => Self::PearlwoodBow,
6127 "RainbowBrick" => Self::RainbowBrick,
6128 "RainbowBrickWall" => Self::RainbowBrickWall,
6129 "IceBlock" => Self::IceBlock,
6130 "RedsWings" => Self::RedsWings,
6131 "RedsHelmet" => Self::RedsHelmet,
6132 "RedsBreastplate" => Self::RedsBreastplate,
6133 "RedsLeggings" => Self::RedsLeggings,
6134 "Fish" => Self::Fish,
6135 "IceBoomerang" => Self::IceBoomerang,
6136 "Keybrand" => Self::Keybrand,
6137 "Cutlass" => Self::Cutlass,
6138 "BorealWoodWorkBench" => Self::BorealWoodWorkBench,
6139 "TrueExcalibur" => Self::TrueExcalibur,
6140 "TrueNightsEdge" => Self::TrueNightsEdge,
6141 "Frostbrand" => Self::Frostbrand,
6142 "BorealWoodTable" => Self::BorealWoodTable,
6143 "RedPotion" => Self::RedPotion,
6144 "TacticalShotgun" => Self::TacticalShotgun,
6145 "IvyChest" => Self::IvyChest,
6146 "IceChest" => Self::IceChest,
6147 "Marrow" => Self::Marrow,
6148 "UnholyTrident" => Self::UnholyTrident,
6149 "FrostHelmet" => Self::FrostHelmet,
6150 "FrostBreastplate" => Self::FrostBreastplate,
6151 "FrostLeggings" => Self::FrostLeggings,
6152 "TinHelmet" => Self::TinHelmet,
6153 "TinChainmail" => Self::TinChainmail,
6154 "TinGreaves" => Self::TinGreaves,
6155 "LeadHelmet" => Self::LeadHelmet,
6156 "LeadChainmail" => Self::LeadChainmail,
6157 "LeadGreaves" => Self::LeadGreaves,
6158 "TungstenHelmet" => Self::TungstenHelmet,
6159 "TungstenChainmail" => Self::TungstenChainmail,
6160 "TungstenGreaves" => Self::TungstenGreaves,
6161 "PlatinumHelmet" => Self::PlatinumHelmet,
6162 "PlatinumChainmail" => Self::PlatinumChainmail,
6163 "PlatinumGreaves" => Self::PlatinumGreaves,
6164 "TinOre" => Self::TinOre,
6165 "LeadOre" => Self::LeadOre,
6166 "TungstenOre" => Self::TungstenOre,
6167 "PlatinumOre" => Self::PlatinumOre,
6168 "TinBar" => Self::TinBar,
6169 "LeadBar" => Self::LeadBar,
6170 "TungstenBar" => Self::TungstenBar,
6171 "PlatinumBar" => Self::PlatinumBar,
6172 "TinWatch" => Self::TinWatch,
6173 "TungstenWatch" => Self::TungstenWatch,
6174 "PlatinumWatch" => Self::PlatinumWatch,
6175 "TinChandelier" => Self::TinChandelier,
6176 "TungstenChandelier" => Self::TungstenChandelier,
6177 "PlatinumChandelier" => Self::PlatinumChandelier,
6178 "PlatinumCandle" => Self::PlatinumCandle,
6179 "PlatinumCandelabra" => Self::PlatinumCandelabra,
6180 "PlatinumCrown" => Self::PlatinumCrown,
6181 "LeadAnvil" => Self::LeadAnvil,
6182 "TinBrick" => Self::TinBrick,
6183 "TungstenBrick" => Self::TungstenBrick,
6184 "PlatinumBrick" => Self::PlatinumBrick,
6185 "TinBrickWall" => Self::TinBrickWall,
6186 "TungstenBrickWall" => Self::TungstenBrickWall,
6187 "PlatinumBrickWall" => Self::PlatinumBrickWall,
6188 "BeamSword" => Self::BeamSword,
6189 "IceBlade" => Self::IceBlade,
6190 "IceBow" => Self::IceBow,
6191 "FrostStaff" => Self::FrostStaff,
6192 "WoodHelmet" => Self::WoodHelmet,
6193 "WoodBreastplate" => Self::WoodBreastplate,
6194 "WoodGreaves" => Self::WoodGreaves,
6195 "EbonwoodHelmet" => Self::EbonwoodHelmet,
6196 "EbonwoodBreastplate" => Self::EbonwoodBreastplate,
6197 "EbonwoodGreaves" => Self::EbonwoodGreaves,
6198 "RichMahoganyHelmet" => Self::RichMahoganyHelmet,
6199 "RichMahoganyBreastplate" => Self::RichMahoganyBreastplate,
6200 "RichMahoganyGreaves" => Self::RichMahoganyGreaves,
6201 "PearlwoodHelmet" => Self::PearlwoodHelmet,
6202 "PearlwoodBreastplate" => Self::PearlwoodBreastplate,
6203 "PearlwoodGreaves" => Self::PearlwoodGreaves,
6204 "AmethystStaff" => Self::AmethystStaff,
6205 "TopazStaff" => Self::TopazStaff,
6206 "SapphireStaff" => Self::SapphireStaff,
6207 "EmeraldStaff" => Self::EmeraldStaff,
6208 "RubyStaff" => Self::RubyStaff,
6209 "DiamondStaff" => Self::DiamondStaff,
6210 "GrassWall" => Self::GrassWall,
6211 "JungleWall" => Self::JungleWall,
6212 "FlowerWall" => Self::FlowerWall,
6213 "Jetpack" => Self::Jetpack,
6214 "ButterflyWings" => Self::ButterflyWings,
6215 "CactusWall" => Self::CactusWall,
6216 "Cloud" => Self::Cloud,
6217 "CloudWall" => Self::CloudWall,
6218 "Seaweed" => Self::Seaweed,
6219 "RuneHat" => Self::RuneHat,
6220 "RuneRobe" => Self::RuneRobe,
6221 "MushroomSpear" => Self::MushroomSpear,
6222 "TerraBlade" => Self::TerraBlade,
6223 "GrenadeLauncher" => Self::GrenadeLauncher,
6224 "RocketLauncher" => Self::RocketLauncher,
6225 "ProximityMineLauncher" => Self::ProximityMineLauncher,
6226 "FairyWings" => Self::FairyWings,
6227 "SlimeBlock" => Self::SlimeBlock,
6228 "FleshBlock" => Self::FleshBlock,
6229 "MushroomWall" => Self::MushroomWall,
6230 "RainCloud" => Self::RainCloud,
6231 "BoneBlock" => Self::BoneBlock,
6232 "FrozenSlimeBlock" => Self::FrozenSlimeBlock,
6233 "BoneBlockWall" => Self::BoneBlockWall,
6234 "SlimeBlockWall" => Self::SlimeBlockWall,
6235 "FleshBlockWall" => Self::FleshBlockWall,
6236 "RocketI" => Self::RocketI,
6237 "RocketII" => Self::RocketII,
6238 "RocketIII" => Self::RocketIII,
6239 "RocketIV" => Self::RocketIV,
6240 "AsphaltBlock" => Self::AsphaltBlock,
6241 "CobaltPickaxe" => Self::CobaltPickaxe,
6242 "MythrilPickaxe" => Self::MythrilPickaxe,
6243 "AdamantitePickaxe" => Self::AdamantitePickaxe,
6244 "Clentaminator" => Self::Clentaminator,
6245 "GreenSolution" => Self::GreenSolution,
6246 "BlueSolution" => Self::BlueSolution,
6247 "PurpleSolution" => Self::PurpleSolution,
6248 "DarkBlueSolution" => Self::DarkBlueSolution,
6249 "RedSolution" => Self::RedSolution,
6250 "HarpyWings" => Self::HarpyWings,
6251 "BoneWings" => Self::BoneWings,
6252 "Hammush" => Self::Hammush,
6253 "NettleBurst" => Self::NettleBurst,
6254 "AnkhBanner" => Self::AnkhBanner,
6255 "SnakeBanner" => Self::SnakeBanner,
6256 "OmegaBanner" => Self::OmegaBanner,
6257 "CrimsonHelmet" => Self::CrimsonHelmet,
6258 "CrimsonScalemail" => Self::CrimsonScalemail,
6259 "CrimsonGreaves" => Self::CrimsonGreaves,
6260 "BloodButcherer" => Self::BloodButcherer,
6261 "TendonBow" => Self::TendonBow,
6262 "FleshGrinder" => Self::FleshGrinder,
6263 "DeathbringerPickaxe" => Self::DeathbringerPickaxe,
6264 "BloodLustCluster" => Self::BloodLustCluster,
6265 "TheUndertaker" => Self::TheUndertaker,
6266 "TheMeatball" => Self::TheMeatball,
6267 "TheRottedFork" => Self::TheRottedFork,
6268 "EskimoHood" => Self::EskimoHood,
6269 "EskimoCoat" => Self::EskimoCoat,
6270 "EskimoPants" => Self::EskimoPants,
6271 "LivingWoodChair" => Self::LivingWoodChair,
6272 "CactusChair" => Self::CactusChair,
6273 "BoneChair" => Self::BoneChair,
6274 "FleshChair" => Self::FleshChair,
6275 "MushroomChair" => Self::MushroomChair,
6276 "BoneWorkBench" => Self::BoneWorkBench,
6277 "CactusWorkBench" => Self::CactusWorkBench,
6278 "FleshWorkBench" => Self::FleshWorkBench,
6279 "MushroomWorkBench" => Self::MushroomWorkBench,
6280 "SlimeWorkBench" => Self::SlimeWorkBench,
6281 "CactusDoor" => Self::CactusDoor,
6282 "FleshDoor" => Self::FleshDoor,
6283 "MushroomDoor" => Self::MushroomDoor,
6284 "LivingWoodDoor" => Self::LivingWoodDoor,
6285 "BoneDoor" => Self::BoneDoor,
6286 "FlameWings" => Self::FlameWings,
6287 "FrozenWings" => Self::FrozenWings,
6288 "GhostWings" => Self::GhostWings,
6289 "SunplateBlock" => Self::SunplateBlock,
6290 "DiscWall" => Self::DiscWall,
6291 "SkywareChair" => Self::SkywareChair,
6292 "BoneTable" => Self::BoneTable,
6293 "FleshTable" => Self::FleshTable,
6294 "LivingWoodTable" => Self::LivingWoodTable,
6295 "SkywareTable" => Self::SkywareTable,
6296 "LivingWoodChest" => Self::LivingWoodChest,
6297 "LivingWoodWand" => Self::LivingWoodWand,
6298 "PurpleIceBlock" => Self::PurpleIceBlock,
6299 "PinkIceBlock" => Self::PinkIceBlock,
6300 "RedIceBlock" => Self::RedIceBlock,
6301 "CrimstoneBlock" => Self::CrimstoneBlock,
6302 "SkywareDoor" => Self::SkywareDoor,
6303 "SkywareChest" => Self::SkywareChest,
6304 "SteampunkHat" => Self::SteampunkHat,
6305 "SteampunkShirt" => Self::SteampunkShirt,
6306 "SteampunkPants" => Self::SteampunkPants,
6307 "BeeHat" => Self::BeeHat,
6308 "BeeShirt" => Self::BeeShirt,
6309 "BeePants" => Self::BeePants,
6310 "WorldBanner" => Self::WorldBanner,
6311 "SunBanner" => Self::SunBanner,
6312 "GravityBanner" => Self::GravityBanner,
6313 "PharaohsMask" => Self::PharaohsMask,
6314 "Actuator" => Self::Actuator,
6315 "BlueWrench" => Self::BlueWrench,
6316 "GreenWrench" => Self::GreenWrench,
6317 "BluePressurePlate" => Self::BluePressurePlate,
6318 "YellowPressurePlate" => Self::YellowPressurePlate,
6319 "DiscountCard" => Self::DiscountCard,
6320 "LuckyCoin" => Self::LuckyCoin,
6321 "UnicornonaStick" => Self::UnicornOnAStick,
6322 "SandstorminaBottle" => Self::SandstormInABottle,
6323 "BorealWoodSofa" => Self::BorealWoodSofa,
6324 "BeachBall" => Self::BeachBall,
6325 "CharmofMyths" => Self::CharmOfMyths,
6326 "MoonShell" => Self::MoonShell,
6327 "StarVeil" => Self::StarVeil,
6328 "WaterWalkingBoots" => Self::WaterWalkingBoots,
6329 "Tiara" => Self::Tiara,
6330 "PrincessDress" => Self::PrincessDress,
6331 "PharaohsRobe" => Self::PharaohsRobe,
6332 "GreenCap" => Self::GreenCap,
6333 "MushroomCap" => Self::MushroomCap,
6334 "TamOShanter" => Self::TamOShanter,
6335 "MummyMask" => Self::MummyMask,
6336 "MummyShirt" => Self::MummyShirt,
6337 "MummyPants" => Self::MummyPants,
6338 "CowboyHat" => Self::CowboyHat,
6339 "CowboyJacket" => Self::CowboyJacket,
6340 "CowboyPants" => Self::CowboyPants,
6341 "PirateHat" => Self::PirateHat,
6342 "PirateShirt" => Self::PirateShirt,
6343 "PiratePants" => Self::PiratePants,
6344 "VikingHelmet" => Self::VikingHelmet,
6345 "CrimtaneOre" => Self::CrimtaneOre,
6346 "CactusSword" => Self::CactusSword,
6347 "CactusPickaxe" => Self::CactusPickaxe,
6348 "IceBrick" => Self::IceBrick,
6349 "IceBrickWall" => Self::IceBrickWall,
6350 "AdhesiveBandage" => Self::AdhesiveBandage,
6351 "ArmorPolish" => Self::ArmorPolish,
6352 "Bezoar" => Self::Bezoar,
6353 "Blindfold" => Self::Blindfold,
6354 "FastClock" => Self::FastClock,
6355 "Megaphone" => Self::Megaphone,
6356 "Nazar" => Self::Nazar,
6357 "Vitamins" => Self::Vitamins,
6358 "TrifoldMap" => Self::TrifoldMap,
6359 "CactusHelmet" => Self::CactusHelmet,
6360 "CactusBreastplate" => Self::CactusBreastplate,
6361 "CactusLeggings" => Self::CactusLeggings,
6362 "PowerGlove" => Self::PowerGlove,
6363 "LightningBoots" => Self::LightningBoots,
6364 "SunStone" => Self::SunStone,
6365 "MoonStone" => Self::MoonStone,
6366 "ArmorBracing" => Self::ArmorBracing,
6367 "MedicatedBandage" => Self::MedicatedBandage,
6368 "ThePlan" => Self::ThePlan,
6369 "CountercurseMantra" => Self::CountercurseMantra,
6370 "CoinGun" => Self::CoinGun,
6371 "LavaCharm" => Self::LavaCharm,
6372 "ObsidianWaterWalkingBoots" => Self::ObsidianWaterWalkingBoots,
6373 "LavaWaders" => Self::LavaWaders,
6374 "PureWaterFountain" => Self::PureWaterFountain,
6375 "DesertWaterFountain" => Self::DesertWaterFountain,
6376 "Shadewood" => Self::Shadewood,
6377 "ShadewoodDoor" => Self::ShadewoodDoor,
6378 "ShadewoodPlatform" => Self::ShadewoodPlatform,
6379 "ShadewoodChest" => Self::ShadewoodChest,
6380 "ShadewoodChair" => Self::ShadewoodChair,
6381 "ShadewoodWorkBench" => Self::ShadewoodWorkBench,
6382 "ShadewoodTable" => Self::ShadewoodTable,
6383 "ShadewoodDresser" => Self::ShadewoodDresser,
6384 "ShadewoodPiano" => Self::ShadewoodPiano,
6385 "ShadewoodBed" => Self::ShadewoodBed,
6386 "ShadewoodSword" => Self::ShadewoodSword,
6387 "ShadewoodHammer" => Self::ShadewoodHammer,
6388 "ShadewoodBow" => Self::ShadewoodBow,
6389 "ShadewoodHelmet" => Self::ShadewoodHelmet,
6390 "ShadewoodBreastplate" => Self::ShadewoodBreastplate,
6391 "ShadewoodGreaves" => Self::ShadewoodGreaves,
6392 "ShadewoodWall" => Self::ShadewoodWall,
6393 "Cannon" => Self::Cannon,
6394 "Cannonball" => Self::Cannonball,
6395 "FlareGun" => Self::FlareGun,
6396 "Flare" => Self::Flare,
6397 "BoneWand" => Self::BoneWand,
6398 "LeafWand" => Self::LeafWand,
6399 "FlyingCarpet" => Self::FlyingCarpet,
6400 "AvengerEmblem" => Self::AvengerEmblem,
6401 "MechanicalGlove" => Self::MechanicalGlove,
6402 "LandMine" => Self::LandMine,
6403 "PaladinsShield" => Self::PaladinsShield,
6404 "WebSlinger" => Self::WebSlinger,
6405 "JungleWaterFountain" => Self::JungleWaterFountain,
6406 "IcyWaterFountain" => Self::IcyWaterFountain,
6407 "CorruptWaterFountain" => Self::CorruptWaterFountain,
6408 "CrimsonWaterFountain" => Self::CrimsonWaterFountain,
6409 "HallowedWaterFountain" => Self::HallowedWaterFountain,
6410 "BloodWaterFountain" => Self::BloodWaterFountain,
6411 "Umbrella" => Self::Umbrella,
6412 "ChlorophyteOre" => Self::ChlorophyteOre,
6413 "SteampunkWings" => Self::SteampunkWings,
6414 "Snowball" => Self::Snowball,
6415 "IceSkates" => Self::IceSkates,
6416 "SnowballLauncher" => Self::SnowballLauncher,
6417 "WebCoveredChest" => Self::WebCoveredChest,
6418 "ClimbingClaws" => Self::ClimbingClaws,
6419 "AncientIronHelmet" => Self::AncientIronHelmet,
6420 "AncientGoldHelmet" => Self::AncientGoldHelmet,
6421 "AncientShadowHelmet" => Self::AncientShadowHelmet,
6422 "AncientShadowScalemail" => Self::AncientShadowScalemail,
6423 "AncientShadowGreaves" => Self::AncientShadowGreaves,
6424 "AncientNecroHelmet" => Self::AncientNecroHelmet,
6425 "AncientCobaltHelmet" => Self::AncientCobaltHelmet,
6426 "AncientCobaltBreastplate" => Self::AncientCobaltBreastplate,
6427 "AncientCobaltLeggings" => Self::AncientCobaltLeggings,
6428 "BlackBelt" => Self::BlackBelt,
6429 "Boomstick" => Self::Boomstick,
6430 "Rope" => Self::Rope,
6431 "Campfire" => Self::Campfire,
6432 "Marshmallow" => Self::Marshmallow,
6433 "MarshmallowonaStick" => Self::MarshmallowOnAStick,
6434 "CookedMarshmallow" => Self::CookedMarshmallow,
6435 "RedRocket" => Self::RedRocket,
6436 "GreenRocket" => Self::GreenRocket,
6437 "BlueRocket" => Self::BlueRocket,
6438 "YellowRocket" => Self::YellowRocket,
6439 "IceTorch" => Self::IceTorch,
6440 "ShoeSpikes" => Self::ShoeSpikes,
6441 "TigerClimbingGear" => Self::TigerClimbingGear,
6442 "Tabi" => Self::Tabi,
6443 "PinkEskimoHood" => Self::PinkEskimoHood,
6444 "PinkEskimoCoat" => Self::PinkEskimoCoat,
6445 "PinkEskimoPants" => Self::PinkEskimoPants,
6446 "PinkThread" => Self::PinkThread,
6447 "ManaRegenerationBand" => Self::ManaRegenerationBand,
6448 "SandstorminaBalloon" => Self::SandstormInABalloon,
6449 "MasterNinjaGear" => Self::MasterNinjaGear,
6450 "RopeCoil" => Self::RopeCoil,
6451 "Blowgun" => Self::Blowgun,
6452 "BlizzardinaBottle" => Self::BlizzardInABottle,
6453 "FrostburnArrow" => Self::FrostburnArrow,
6454 "EnchantedSword" => Self::EnchantedSword,
6455 "PickaxeAxe" => Self::PickaxeAxe,
6456 "CobaltWaraxe" => Self::CobaltWaraxe,
6457 "MythrilWaraxe" => Self::MythrilWaraxe,
6458 "AdamantiteWaraxe" => Self::AdamantiteWaraxe,
6459 "EatersBone" => Self::EatersBone,
6460 "BlendOMatic" => Self::BlendOMatic,
6461 "MeatGrinder" => Self::MeatGrinder,
6462 "Extractinator" => Self::Extractinator,
6463 "Solidifier" => Self::Solidifier,
6464 "Amber" => Self::Amber,
6465 "ConfettiGun" => Self::ConfettiGun,
6466 "ChlorophyteMask" => Self::ChlorophyteMask,
6467 "ChlorophyteHelmet" => Self::ChlorophyteHelmet,
6468 "ChlorophyteHeadgear" => Self::ChlorophyteHeadgear,
6469 "ChlorophytePlateMail" => Self::ChlorophytePlateMail,
6470 "ChlorophyteGreaves" => Self::ChlorophyteGreaves,
6471 "ChlorophyteBar" => Self::ChlorophyteBar,
6472 "RedDye" => Self::RedDye,
6473 "OrangeDye" => Self::OrangeDye,
6474 "YellowDye" => Self::YellowDye,
6475 "LimeDye" => Self::LimeDye,
6476 "GreenDye" => Self::GreenDye,
6477 "TealDye" => Self::TealDye,
6478 "CyanDye" => Self::CyanDye,
6479 "SkyBlueDye" => Self::SkyBlueDye,
6480 "BlueDye" => Self::BlueDye,
6481 "PurpleDye" => Self::PurpleDye,
6482 "VioletDye" => Self::VioletDye,
6483 "PinkDye" => Self::PinkDye,
6484 "RedandBlackDye" => Self::RedAndBlackDye,
6485 "OrangeandBlackDye" => Self::OrangeAndBlackDye,
6486 "YellowandBlackDye" => Self::YellowAndBlackDye,
6487 "LimeandBlackDye" => Self::LimeAndBlackDye,
6488 "GreenandBlackDye" => Self::GreenAndBlackDye,
6489 "TealandBlackDye" => Self::TealAndBlackDye,
6490 "CyanandBlackDye" => Self::CyanAndBlackDye,
6491 "SkyBlueandBlackDye" => Self::SkyBlueAndBlackDye,
6492 "BlueandBlackDye" => Self::BlueAndBlackDye,
6493 "PurpleandBlackDye" => Self::PurpleAndBlackDye,
6494 "VioletandBlackDye" => Self::VioletAndBlackDye,
6495 "PinkandBlackDye" => Self::PinkAndBlackDye,
6496 "FlameDye" => Self::FlameDye,
6497 "FlameAndBlackDye" => Self::FlameAndBlackDye,
6498 "GreenFlameDye" => Self::GreenFlameDye,
6499 "GreenFlameAndBlackDye" => Self::GreenFlameAndBlackDye,
6500 "BlueFlameDye" => Self::BlueFlameDye,
6501 "BlueFlameAndBlackDye" => Self::BlueFlameAndBlackDye,
6502 "SilverDye" => Self::SilverDye,
6503 "BrightRedDye" => Self::BrightRedDye,
6504 "BrightOrangeDye" => Self::BrightOrangeDye,
6505 "BrightYellowDye" => Self::BrightYellowDye,
6506 "BrightLimeDye" => Self::BrightLimeDye,
6507 "BrightGreenDye" => Self::BrightGreenDye,
6508 "BrightTealDye" => Self::BrightTealDye,
6509 "BrightCyanDye" => Self::BrightCyanDye,
6510 "BrightSkyBlueDye" => Self::BrightSkyBlueDye,
6511 "BrightBlueDye" => Self::BrightBlueDye,
6512 "BrightPurpleDye" => Self::BrightPurpleDye,
6513 "BrightVioletDye" => Self::BrightVioletDye,
6514 "BrightPinkDye" => Self::BrightPinkDye,
6515 "BlackDye" => Self::BlackDye,
6516 "RedandSilverDye" => Self::RedAndSilverDye,
6517 "OrangeandSilverDye" => Self::OrangeAndSilverDye,
6518 "YellowandSilverDye" => Self::YellowAndSilverDye,
6519 "LimeandSilverDye" => Self::LimeAndSilverDye,
6520 "GreenandSilverDye" => Self::GreenAndSilverDye,
6521 "TealandSilverDye" => Self::TealAndSilverDye,
6522 "CyanandSilverDye" => Self::CyanAndSilverDye,
6523 "SkyBlueandSilverDye" => Self::SkyBlueAndSilverDye,
6524 "BlueandSilverDye" => Self::BlueAndSilverDye,
6525 "PurpleandSilverDye" => Self::PurpleAndSilverDye,
6526 "VioletandSilverDye" => Self::VioletAndSilverDye,
6527 "PinkandSilverDye" => Self::PinkAndSilverDye,
6528 "IntenseFlameDye" => Self::IntenseFlameDye,
6529 "IntenseGreenFlameDye" => Self::IntenseGreenFlameDye,
6530 "IntenseBlueFlameDye" => Self::IntenseBlueFlameDye,
6531 "RainbowDye" => Self::RainbowDye,
6532 "IntenseRainbowDye" => Self::IntenseRainbowDye,
6533 "YellowGradientDye" => Self::YellowGradientDye,
6534 "CyanGradientDye" => Self::CyanGradientDye,
6535 "VioletGradientDye" => Self::VioletGradientDye,
6536 "Paintbrush" => Self::Paintbrush,
6537 "PaintRoller" => Self::PaintRoller,
6538 "RedPaint" => Self::RedPaint,
6539 "OrangePaint" => Self::OrangePaint,
6540 "YellowPaint" => Self::YellowPaint,
6541 "LimePaint" => Self::LimePaint,
6542 "GreenPaint" => Self::GreenPaint,
6543 "TealPaint" => Self::TealPaint,
6544 "CyanPaint" => Self::CyanPaint,
6545 "SkyBluePaint" => Self::SkyBluePaint,
6546 "BluePaint" => Self::BluePaint,
6547 "PurplePaint" => Self::PurplePaint,
6548 "VioletPaint" => Self::VioletPaint,
6549 "PinkPaint" => Self::PinkPaint,
6550 "DeepRedPaint" => Self::DeepRedPaint,
6551 "DeepOrangePaint" => Self::DeepOrangePaint,
6552 "DeepYellowPaint" => Self::DeepYellowPaint,
6553 "DeepLimePaint" => Self::DeepLimePaint,
6554 "DeepGreenPaint" => Self::DeepGreenPaint,
6555 "DeepTealPaint" => Self::DeepTealPaint,
6556 "DeepCyanPaint" => Self::DeepCyanPaint,
6557 "DeepSkyBluePaint" => Self::DeepSkyBluePaint,
6558 "DeepBluePaint" => Self::DeepBluePaint,
6559 "DeepPurplePaint" => Self::DeepPurplePaint,
6560 "DeepVioletPaint" => Self::DeepVioletPaint,
6561 "DeepPinkPaint" => Self::DeepPinkPaint,
6562 "BlackPaint" => Self::BlackPaint,
6563 "WhitePaint" => Self::WhitePaint,
6564 "GrayPaint" => Self::GrayPaint,
6565 "PaintScraper" => Self::PaintScraper,
6566 "LihzahrdBrick" => Self::LihzahrdBrick,
6567 "LihzahrdBrickWall" => Self::LihzahrdBrickWall,
6568 "SlushBlock" => Self::SlushBlock,
6569 "PalladiumOre" => Self::PalladiumOre,
6570 "OrichalcumOre" => Self::OrichalcumOre,
6571 "TitaniumOre" => Self::TitaniumOre,
6572 "TealMushroom" => Self::TealMushroom,
6573 "GreenMushroom" => Self::GreenMushroom,
6574 "SkyBlueFlower" => Self::SkyBlueFlower,
6575 "YellowMarigold" => Self::YellowMarigold,
6576 "BlueBerries" => Self::BlueBerries,
6577 "LimeKelp" => Self::LimeKelp,
6578 "PinkPricklyPear" => Self::PinkPricklyPear,
6579 "OrangeBloodroot" => Self::OrangeBloodroot,
6580 "RedHusk" => Self::RedHusk,
6581 "CyanHusk" => Self::CyanHusk,
6582 "VioletHusk" => Self::VioletHusk,
6583 "PurpleMucos" => Self::PurpleMucus,
6584 "BlackInk" => Self::BlackInk,
6585 "DyeVat" => Self::DyeVat,
6586 "BeeGun" => Self::BeeGun,
6587 "PossessedHatchet" => Self::PossessedHatchet,
6588 "BeeKeeper" => Self::BeeKeeper,
6589 "Hive" => Self::Hive,
6590 "HoneyBlock" => Self::HoneyBlock,
6591 "HiveWall" => Self::HiveWall,
6592 "CrispyHoneyBlock" => Self::CrispyHoneyBlock,
6593 "HoneyBucket" => Self::HoneyBucket,
6594 "HiveWand" => Self::HiveWand,
6595 "Beenade" => Self::Beenade,
6596 "GravityGlobe" => Self::GravityGlobe,
6597 "HoneyComb" => Self::HoneyComb,
6598 "Abeemination" => Self::Abeemination,
6599 "BottledHoney" => Self::BottledHoney,
6600 "RainHat" => Self::RainHat,
6601 "RainCoat" => Self::RainCoat,
6602 "LihzahrdDoor" => Self::LihzahrdDoor,
6603 "DungeonDoor" => Self::DungeonDoor,
6604 "LeadDoor" => Self::LeadDoor,
6605 "IronDoor" => Self::IronDoor,
6606 "TempleKey" => Self::TempleKey,
6607 "LihzahrdChest" => Self::LihzahrdChest,
6608 "LihzahrdChair" => Self::LihzahrdChair,
6609 "LihzahrdTable" => Self::LihzahrdTable,
6610 "LihzahrdWorkBench" => Self::LihzahrdWorkBench,
6611 "SuperDartTrap" => Self::SuperDartTrap,
6612 "FlameTrap" => Self::FlameTrap,
6613 "SpikyBallTrap" => Self::SpikyBallTrap,
6614 "SpearTrap" => Self::SpearTrap,
6615 "WoodenSpike" => Self::WoodenSpike,
6616 "LihzahrdPressurePlate" => Self::LihzahrdPressurePlate,
6617 "LihzahrdStatue" => Self::LihzahrdStatue,
6618 "LihzahrdWatcherStatue" => Self::LihzahrdWatcherStatue,
6619 "LihzahrdGuardianStatue" => Self::LihzahrdGuardianStatue,
6620 "WaspGun" => Self::WaspGun,
6621 "PiranhaGun" => Self::PiranhaGun,
6622 "PygmyStaff" => Self::PygmyStaff,
6623 "PygmyNecklace" => Self::PygmyNecklace,
6624 "TikiMask" => Self::TikiMask,
6625 "TikiShirt" => Self::TikiShirt,
6626 "TikiPants" => Self::TikiPants,
6627 "LeafWings" => Self::LeafWings,
6628 "BlizzardinaBalloon" => Self::BlizzardInABalloon,
6629 "BundleofBalloons" => Self::BundleOfBalloons,
6630 "BatWings" => Self::BatWings,
6631 "BoneSword" => Self::BoneSword,
6632 "HerculesBeetle" => Self::HerculesBeetle,
6633 "SmokeBomb" => Self::SmokeBomb,
6634 "BoneKey" => Self::BoneKey,
6635 "Nectar" => Self::Nectar,
6636 "TikiTotem" => Self::TikiTotem,
6637 "LizardEgg" => Self::LizardEgg,
6638 "GraveMarker" => Self::GraveMarker,
6639 "CrossGraveMarker" => Self::CrossGraveMarker,
6640 "Headstone" => Self::Headstone,
6641 "Gravestone" => Self::Gravestone,
6642 "Obelisk" => Self::Obelisk,
6643 "LeafBlower" => Self::LeafBlower,
6644 "ChlorophyteBullet" => Self::ChlorophyteBullet,
6645 "ParrotCracker" => Self::ParrotCracker,
6646 "StrangeGlowingMushroom" => Self::StrangeGlowingMushroom,
6647 "Seedling" => Self::Seedling,
6648 "WispinaBottle" => Self::WispInABottle,
6649 "PalladiumBar" => Self::PalladiumBar,
6650 "PalladiumSword" => Self::PalladiumSword,
6651 "PalladiumPike" => Self::PalladiumPike,
6652 "PalladiumRepeater" => Self::PalladiumRepeater,
6653 "PalladiumPickaxe" => Self::PalladiumPickaxe,
6654 "PalladiumDrill" => Self::PalladiumDrill,
6655 "PalladiumChainsaw" => Self::PalladiumChainsaw,
6656 "OrichalcumBar" => Self::OrichalcumBar,
6657 "OrichalcumSword" => Self::OrichalcumSword,
6658 "OrichalcumHalberd" => Self::OrichalcumHalberd,
6659 "OrichalcumRepeater" => Self::OrichalcumRepeater,
6660 "OrichalcumPickaxe" => Self::OrichalcumPickaxe,
6661 "OrichalcumDrill" => Self::OrichalcumDrill,
6662 "OrichalcumChainsaw" => Self::OrichalcumChainsaw,
6663 "TitaniumBar" => Self::TitaniumBar,
6664 "TitaniumSword" => Self::TitaniumSword,
6665 "TitaniumTrident" => Self::TitaniumTrident,
6666 "TitaniumRepeater" => Self::TitaniumRepeater,
6667 "TitaniumPickaxe" => Self::TitaniumPickaxe,
6668 "TitaniumDrill" => Self::TitaniumDrill,
6669 "TitaniumChainsaw" => Self::TitaniumChainsaw,
6670 "PalladiumMask" => Self::PalladiumMask,
6671 "PalladiumHelmet" => Self::PalladiumHelmet,
6672 "PalladiumHeadgear" => Self::PalladiumHeadgear,
6673 "PalladiumBreastplate" => Self::PalladiumBreastplate,
6674 "PalladiumLeggings" => Self::PalladiumLeggings,
6675 "OrichalcumMask" => Self::OrichalcumMask,
6676 "OrichalcumHelmet" => Self::OrichalcumHelmet,
6677 "OrichalcumHeadgear" => Self::OrichalcumHeadgear,
6678 "OrichalcumBreastplate" => Self::OrichalcumBreastplate,
6679 "OrichalcumLeggings" => Self::OrichalcumLeggings,
6680 "TitaniumMask" => Self::TitaniumMask,
6681 "TitaniumHelmet" => Self::TitaniumHelmet,
6682 "TitaniumHeadgear" => Self::TitaniumHeadgear,
6683 "TitaniumBreastplate" => Self::TitaniumBreastplate,
6684 "TitaniumLeggings" => Self::TitaniumLeggings,
6685 "OrichalcumAnvil" => Self::OrichalcumAnvil,
6686 "TitaniumForge" => Self::TitaniumForge,
6687 "PalladiumWaraxe" => Self::PalladiumWaraxe,
6688 "OrichalcumWaraxe" => Self::OrichalcumWaraxe,
6689 "TitaniumWaraxe" => Self::TitaniumWaraxe,
6690 "HallowedBar" => Self::HallowedBar,
6691 "ChlorophyteClaymore" => Self::ChlorophyteClaymore,
6692 "ChlorophyteSaber" => Self::ChlorophyteSaber,
6693 "ChlorophytePartisan" => Self::ChlorophytePartisan,
6694 "ChlorophyteShotbow" => Self::ChlorophyteShotbow,
6695 "ChlorophytePickaxe" => Self::ChlorophytePickaxe,
6696 "ChlorophyteDrill" => Self::ChlorophyteDrill,
6697 "ChlorophyteChainsaw" => Self::ChlorophyteChainsaw,
6698 "ChlorophyteGreataxe" => Self::ChlorophyteGreataxe,
6699 "ChlorophyteWarhammer" => Self::ChlorophyteWarhammer,
6700 "ChlorophyteArrow" => Self::ChlorophyteArrow,
6701 "AmethystHook" => Self::AmethystHook,
6702 "TopazHook" => Self::TopazHook,
6703 "SapphireHook" => Self::SapphireHook,
6704 "EmeraldHook" => Self::EmeraldHook,
6705 "RubyHook" => Self::RubyHook,
6706 "DiamondHook" => Self::DiamondHook,
6707 "AmberMosquito" => Self::AmberMosquito,
6708 "UmbrellaHat" => Self::UmbrellaHat,
6709 "NimbusRod" => Self::NimbusRod,
6710 "OrangeTorch" => Self::OrangeTorch,
6711 "CrimsandBlock" => Self::CrimsandBlock,
6712 "BeeCloak" => Self::BeeCloak,
6713 "EyeoftheGolem" => Self::EyeOfTheGolem,
6714 "HoneyBalloon" => Self::HoneyBalloon,
6715 "BlueHorseshoeBalloon" => Self::BlueHorseshoeBalloon,
6716 "WhiteHorseshoeBalloon" => Self::WhiteHorseshoeBalloon,
6717 "YellowHorseshoeBalloon" => Self::YellowHorseshoeBalloon,
6718 "FrozenTurtleShell" => Self::FrozenTurtleShell,
6719 "SniperRifle" => Self::SniperRifle,
6720 "VenusMagnum" => Self::VenusMagnum,
6721 "CrimsonRod" => Self::CrimsonRod,
6722 "CrimtaneBar" => Self::CrimtaneBar,
6723 "Stynger" => Self::Stynger,
6724 "FlowerPow" => Self::FlowerPow,
6725 "RainbowGun" => Self::RainbowGun,
6726 "StyngerBolt" => Self::StyngerBolt,
6727 "ChlorophyteJackhammer" => Self::ChlorophyteJackhammer,
6728 "Teleporter" => Self::Teleporter,
6729 "FlowerofFrost" => Self::FlowerOfFrost,
6730 "Uzi" => Self::Uzi,
6731 "MagnetSphere" => Self::MagnetSphere,
6732 "PurpleStainedGlass" => Self::PurpleStainedGlass,
6733 "YellowStainedGlass" => Self::YellowStainedGlass,
6734 "BlueStainedGlass" => Self::BlueStainedGlass,
6735 "GreenStainedGlass" => Self::GreenStainedGlass,
6736 "RedStainedGlass" => Self::RedStainedGlass,
6737 "MulticoloredStainedGlass" => Self::MulticoloredStainedGlass,
6738 "SkeletronHand" => Self::SkeletronHand,
6739 "Skull" => Self::Skull,
6740 "BallaHat" => Self::BallaHat,
6741 "GangstaHat" => Self::GangstaHat,
6742 "SailorHat" => Self::SailorHat,
6743 "EyePatch" => Self::EyePatch,
6744 "SailorShirt" => Self::SailorShirt,
6745 "SailorPants" => Self::SailorPants,
6746 "SkeletronMask" => Self::SkeletronMask,
6747 "AmethystRobe" => Self::AmethystRobe,
6748 "TopazRobe" => Self::TopazRobe,
6749 "SapphireRobe" => Self::SapphireRobe,
6750 "EmeraldRobe" => Self::EmeraldRobe,
6751 "RubyRobe" => Self::RubyRobe,
6752 "DiamondRobe" => Self::DiamondRobe,
6753 "WhiteTuxedoShirt" => Self::WhiteTuxedoShirt,
6754 "WhiteTuxedoPants" => Self::WhiteTuxedoPants,
6755 "PanicNecklace" => Self::PanicNecklace,
6756 "LifeFruit" => Self::LifeFruit,
6757 "LihzahrdAltar" => Self::LihzahrdAltar,
6758 "LihzahrdPowerCell" => Self::LihzahrdPowerCell,
6759 "Picksaw" => Self::Picksaw,
6760 "HeatRay" => Self::HeatRay,
6761 "StaffofEarth" => Self::StaffOfEarth,
6762 "GolemFist" => Self::GolemFist,
6763 "WaterChest" => Self::WaterChest,
6764 "Binoculars" => Self::Binoculars,
6765 "RifleScope" => Self::RifleScope,
6766 "DestroyerEmblem" => Self::DestroyerEmblem,
6767 "HighVelocityBullet" => Self::HighVelocityBullet,
6768 "JellyfishNecklace" => Self::JellyfishNecklace,
6769 "ZombieArm" => Self::ZombieArm,
6770 "TheAxe" => Self::TheAxe,
6771 "IceSickle" => Self::IceSickle,
6772 "ClothierVoodooDoll" => Self::ClothierVoodooDoll,
6773 "PoisonStaff" => Self::PoisonStaff,
6774 "SlimeStaff" => Self::SlimeStaff,
6775 "PoisonDart" => Self::PoisonDart,
6776 "EyeSpring" => Self::EyeSpring,
6777 "ToySled" => Self::ToySled,
6778 "BookofSkulls" => Self::BookOfSkulls,
6779 "KOCannon" => Self::KOCannon,
6780 "PirateMap" => Self::PirateMap,
6781 "TurtleHelmet" => Self::TurtleHelmet,
6782 "TurtleScaleMail" => Self::TurtleScaleMail,
6783 "TurtleLeggings" => Self::TurtleLeggings,
6784 "SnowballCannon" => Self::SnowballCannon,
6785 "BonePickaxe" => Self::BonePickaxe,
6786 "MagicQuiver" => Self::MagicQuiver,
6787 "MagmaStone" => Self::MagmaStone,
6788 "ObsidianRose" => Self::ObsidianRose,
6789 "Bananarang" => Self::Bananarang,
6790 "ChainKnife" => Self::ChainKnife,
6791 "RodofDiscord" => Self::RodOfDiscord,
6792 "DeathSickle" => Self::DeathSickle,
6793 "TurtleShell" => Self::TurtleShell,
6794 "TissueSample" => Self::TissueSample,
6795 "Vertebrae" => Self::Vertebrae,
6796 "BloodySpine" => Self::BloodySpine,
6797 "Ichor" => Self::Ichor,
6798 "IchorTorch" => Self::IchorTorch,
6799 "IchorArrow" => Self::IchorArrow,
6800 "IchorBullet" => Self::IchorBullet,
6801 "GoldenShower" => Self::GoldenShower,
6802 "BunnyCannon" => Self::BunnyCannon,
6803 "ExplosiveBunny" => Self::ExplosiveBunny,
6804 "VialofVenom" => Self::VialOfVenom,
6805 "FlaskofVenom" => Self::FlaskOfVenom,
6806 "VenomArrow" => Self::VenomArrow,
6807 "VenomBullet" => Self::VenomBullet,
6808 "FireGauntlet" => Self::FireGauntlet,
6809 "Cog" => Self::Cog,
6810 "Confetti" => Self::Confetti,
6811 "Nanites" => Self::Nanites,
6812 "ExplosivePowder" => Self::ExplosivePowder,
6813 "GoldDust" => Self::GoldDust,
6814 "PartyBullet" => Self::PartyBullet,
6815 "NanoBullet" => Self::NanoBullet,
6816 "ExplodingBullet" => Self::ExplodingBullet,
6817 "GoldenBullet" => Self::GoldenBullet,
6818 "FlaskofCursedFlames" => Self::FlaskOfCursedFlames,
6819 "FlaskofFire" => Self::FlaskOfFire,
6820 "FlaskofGold" => Self::FlaskOfGold,
6821 "FlaskofIchor" => Self::FlaskOfIchor,
6822 "FlaskofNanites" => Self::FlaskOfNanites,
6823 "FlaskofParty" => Self::FlaskOfParty,
6824 "FlaskofPoison" => Self::FlaskOfPoison,
6825 "EyeofCthulhuTrophy" => Self::EyeOfCthulhuTrophy,
6826 "EaterofWorldsTrophy" => Self::EaterOfWorldsTrophy,
6827 "BrainofCthulhuTrophy" => Self::BrainOfCthulhuTrophy,
6828 "SkeletronTrophy" => Self::SkeletronTrophy,
6829 "QueenBeeTrophy" => Self::QueenBeeTrophy,
6830 "WallofFleshTrophy" => Self::WallOfFleshTrophy,
6831 "DestroyerTrophy" => Self::DestroyerTrophy,
6832 "SkeletronPrimeTrophy" => Self::SkeletronPrimeTrophy,
6833 "RetinazerTrophy" => Self::RetinazerTrophy,
6834 "SpazmatismTrophy" => Self::SpazmatismTrophy,
6835 "PlanteraTrophy" => Self::PlanteraTrophy,
6836 "GolemTrophy" => Self::GolemTrophy,
6837 "BloodMoonRising" => Self::BloodMoonRising,
6838 "TheHangedMan" => Self::TheHangedMan,
6839 "GloryoftheFire" => Self::GloryOfTheFire,
6840 "BoneWarp" => Self::BoneWarp,
6841 "WallSkeleton" => Self::WallSkeleton,
6842 "HangingSkeleton" => Self::HangingSkeleton,
6843 "BlueSlabWall" => Self::BlueSlabWall,
6844 "BlueTiledWall" => Self::BlueTiledWall,
6845 "PinkSlabWall" => Self::PinkSlabWall,
6846 "PinkTiledWall" => Self::PinkTiledWall,
6847 "GreenSlabWall" => Self::GreenSlabWall,
6848 "GreenTiledWall" => Self::GreenTiledWall,
6849 "BlueBrickPlatform" => Self::BlueBrickPlatform,
6850 "PinkBrickPlatform" => Self::PinkBrickPlatform,
6851 "GreenBrickPlatform" => Self::GreenBrickPlatform,
6852 "MetalShelf" => Self::MetalShelf,
6853 "BrassShelf" => Self::BrassShelf,
6854 "WoodShelf" => Self::WoodShelf,
6855 "BrassLantern" => Self::BrassLantern,
6856 "CagedLantern" => Self::CagedLantern,
6857 "CarriageLantern" => Self::CarriageLantern,
6858 "AlchemyLantern" => Self::AlchemyLantern,
6859 "DiablostLamp" => Self::DiablostLamp,
6860 "OilRagSconse" => Self::OilRagSconse,
6861 "BlueDungeonChair" => Self::BlueDungeonChair,
6862 "BlueDungeonTable" => Self::BlueDungeonTable,
6863 "BlueDungeonWorkBench" => Self::BlueDungeonWorkBench,
6864 "GreenDungeonChair" => Self::GreenDungeonChair,
6865 "GreenDungeonTable" => Self::GreenDungeonTable,
6866 "GreenDungeonWorkBench" => Self::GreenDungeonWorkBench,
6867 "PinkDungeonChair" => Self::PinkDungeonChair,
6868 "PinkDungeonTable" => Self::PinkDungeonTable,
6869 "PinkDungeonWorkBench" => Self::PinkDungeonWorkBench,
6870 "BlueDungeonCandle" => Self::BlueDungeonCandle,
6871 "GreenDungeonCandle" => Self::GreenDungeonCandle,
6872 "PinkDungeonCandle" => Self::PinkDungeonCandle,
6873 "BlueDungeonVase" => Self::BlueDungeonVase,
6874 "GreenDungeonVase" => Self::GreenDungeonVase,
6875 "PinkDungeonVase" => Self::PinkDungeonVase,
6876 "BlueDungeonDoor" => Self::BlueDungeonDoor,
6877 "GreenDungeonDoor" => Self::GreenDungeonDoor,
6878 "PinkDungeonDoor" => Self::PinkDungeonDoor,
6879 "BlueDungeonBookcase" => Self::BlueDungeonBookcase,
6880 "GreenDungeonBookcase" => Self::GreenDungeonBookcase,
6881 "PinkDungeonBookcase" => Self::PinkDungeonBookcase,
6882 "Catacomb" => Self::Catacomb,
6883 "DungeonShelf" => Self::DungeonShelf,
6884 "SkellingtonJSkellingsworth" => Self::SkellingtonJSkellingsworth,
6885 "TheCursedMan" => Self::TheCursedMan,
6886 "TheEyeSeestheEnd" => Self::TheEyeSeesTheEnd,
6887 "SomethingEvilisWatchingYou" => Self::SomethingEvilIsWatchingYou,
6888 "TheTwinsHaveAwoken" => Self::TheTwinsHaveAwoken,
6889 "TheScreamer" => Self::TheScreamer,
6890 "GoblinsPlayingPoker" => Self::GoblinsPlayingPoker,
6891 "Dryadisque" => Self::Dryadisque,
6892 "Sunflowers" => Self::Sunflowers,
6893 "TerrarianGothic" => Self::TerrarianGothic,
6894 "Beanie" => Self::Beanie,
6895 "ImbuingStation" => Self::ImbuingStation,
6896 "StarinaBottle" => Self::StarInABottle,
6897 "EmptyBullet" => Self::EmptyBullet,
6898 "Impact" => Self::Impact,
6899 "PoweredbyBirds" => Self::PoweredByBirds,
6900 "TheDestroyer" => Self::TheDestroyer,
6901 "ThePersistencyofEyes" => Self::ThePersistencyOfEyes,
6902 "UnicornCrossingtheHallows" => Self::UnicornCrossingTheHallows,
6903 "GreatWave" => Self::GreatWave,
6904 "StarryNight" => Self::StarryNight,
6905 "GuidePicasso" => Self::GuidePicasso,
6906 "TheGuardiansGaze" => Self::TheGuardiansGaze,
6907 "FatherofSomeone" => Self::FatherOfSomeone,
6908 "NurseLisa" => Self::NurseLisa,
6909 "ShadowbeamStaff" => Self::ShadowbeamStaff,
6910 "InfernoFork" => Self::InfernoFork,
6911 "SpectreStaff" => Self::SpectreStaff,
6912 "WoodenFence" => Self::WoodenFence,
6913 "LeadFence" => Self::LeadFence,
6914 "BubbleMachine" => Self::BubbleMachine,
6915 "BubbleWand" => Self::BubbleWand,
6916 "MarchingBonesBanner" => Self::MarchingBonesBanner,
6917 "NecromanticSign" => Self::NecromanticSign,
6918 "RustedCompanyStandard" => Self::RustedCompanyStandard,
6919 "RaggedBrotherhoodSigil" => Self::RaggedBrotherhoodSigil,
6920 "MoltenLegionFlag" => Self::MoltenLegionFlag,
6921 "DiabolicSigil" => Self::DiabolicSigil,
6922 "ObsidianPlatform" => Self::ObsidianPlatform,
6923 "ObsidianDoor" => Self::ObsidianDoor,
6924 "ObsidianChair" => Self::ObsidianChair,
6925 "ObsidianTable" => Self::ObsidianTable,
6926 "ObsidianWorkBench" => Self::ObsidianWorkBench,
6927 "ObsidianVase" => Self::ObsidianVase,
6928 "ObsidianBookcase" => Self::ObsidianBookcase,
6929 "HellboundBanner" => Self::HellboundBanner,
6930 "HellHammerBanner" => Self::HellHammerBanner,
6931 "HelltowerBanner" => Self::HelltowerBanner,
6932 "LostHopesofManBanner" => Self::LostHopesOfManBanner,
6933 "ObsidianWatcherBanner" => Self::ObsidianWatcherBanner,
6934 "LavaEruptsBanner" => Self::LavaEruptsBanner,
6935 "BlueDungeonBed" => Self::BlueDungeonBed,
6936 "GreenDungeonBed" => Self::GreenDungeonBed,
6937 "PinkDungeonBed" => Self::PinkDungeonBed,
6938 "ObsidianBed" => Self::ObsidianBed,
6939 "Waldo" => Self::Waldo,
6940 "Darkness" => Self::Darkness,
6941 "DarkSoulReaper" => Self::DarkSoulReaper,
6942 "Land" => Self::Land,
6943 "TrappedGhost" => Self::TrappedGhost,
6944 "DemonsEye" => Self::DemonsEye,
6945 "FindingGold" => Self::FindingGold,
6946 "FirstEncounter" => Self::FirstEncounter,
6947 "GoodMorning" => Self::GoodMorning,
6948 "UndergroundReward" => Self::UndergroundReward,
6949 "ThroughtheWindow" => Self::ThroughTheWindow,
6950 "PlaceAbovetheClouds" => Self::PlaceAboveTheClouds,
6951 "DoNotStepontheGrass" => Self::DoNotStepOnTheGrass,
6952 "ColdWatersintheWhiteLand" => Self::ColdWatersInTheWhiteLand,
6953 "LightlessChasms" => Self::LightlessChasms,
6954 "TheLandofDeceivingLooks" => Self::TheLandOfDeceivingLooks,
6955 "Daylight" => Self::Daylight,
6956 "SecretoftheSands" => Self::SecretOfTheSands,
6957 "DeadlandComesAlive" => Self::DeadlandComesAlive,
6958 "EvilPresence" => Self::EvilPresence,
6959 "SkyGuardian" => Self::SkyGuardian,
6960 "AmericanExplosive" => Self::AmericanExplosive,
6961 "Discover" => Self::Discover,
6962 "HandEarth" => Self::HandEarth,
6963 "OldMiner" => Self::OldMiner,
6964 "Skelehead" => Self::Skelehead,
6965 "FacingtheCerebralMastermind" => Self::FacingTheCerebralMastermind,
6966 "LakeofFire" => Self::LakeOfFire,
6967 "TrioSuperHeroes" => Self::TrioSuperHeroes,
6968 "SpectreHood" => Self::SpectreHood,
6969 "SpectreRobe" => Self::SpectreRobe,
6970 "SpectrePants" => Self::SpectrePants,
6971 "SpectrePickaxe" => Self::SpectrePickaxe,
6972 "SpectreHamaxe" => Self::SpectreHamaxe,
6973 "Ectoplasm" => Self::Ectoplasm,
6974 "GothicChair" => Self::GothicChair,
6975 "GothicTable" => Self::GothicTable,
6976 "GothicWorkBench" => Self::GothicWorkBench,
6977 "GothicBookcase" => Self::GothicBookcase,
6978 "PaladinsHammer" => Self::PaladinsHammer,
6979 "SWATHelmet" => Self::SWATHelmet,
6980 "BeeWings" => Self::BeeWings,
6981 "GiantHarpyFeather" => Self::GiantHarpyFeather,
6982 "BoneFeather" => Self::BoneFeather,
6983 "FireFeather" => Self::FireFeather,
6984 "IceFeather" => Self::IceFeather,
6985 "BrokenBatWing" => Self::BrokenBatWing,
6986 "TatteredBeeWing" => Self::TatteredBeeWing,
6987 "LargeAmethyst" => Self::LargeAmethyst,
6988 "LargeTopaz" => Self::LargeTopaz,
6989 "LargeSapphire" => Self::LargeSapphire,
6990 "LargeEmerald" => Self::LargeEmerald,
6991 "LargeRuby" => Self::LargeRuby,
6992 "LargeDiamond" => Self::LargeDiamond,
6993 "JungleChest" => Self::JungleChest,
6994 "CorruptionChest" => Self::CorruptionChest,
6995 "CrimsonChest" => Self::CrimsonChest,
6996 "HallowedChest" => Self::HallowedChest,
6997 "FrozenChest" => Self::FrozenChest,
6998 "JungleKey" => Self::JungleKey,
6999 "CorruptionKey" => Self::CorruptionKey,
7000 "CrimsonKey" => Self::CrimsonKey,
7001 "HallowedKey" => Self::HallowedKey,
7002 "FrozenKey" => Self::FrozenKey,
7003 "ImpFace" => Self::ImpFace,
7004 "OminousPresence" => Self::OminousPresence,
7005 "ShiningMoon" => Self::ShiningMoon,
7006 "LivingGore" => Self::LivingGore,
7007 "FlowingMagma" => Self::FlowingMagma,
7008 "SpectrePaintbrush" => Self::SpectrePaintbrush,
7009 "SpectrePaintRoller" => Self::SpectrePaintRoller,
7010 "SpectrePaintScraper" => Self::SpectrePaintScraper,
7011 "ShroomiteHeadgear" => Self::ShroomiteHeadgear,
7012 "ShroomiteMask" => Self::ShroomiteMask,
7013 "ShroomiteHelmet" => Self::ShroomiteHelmet,
7014 "ShroomiteBreastplate" => Self::ShroomiteBreastplate,
7015 "ShroomiteLeggings" => Self::ShroomiteLeggings,
7016 "Autohammer" => Self::Autohammer,
7017 "ShroomiteBar" => Self::ShroomiteBar,
7018 "SDMG" => Self::Sdmg,
7019 "CenxsTiara" => Self::CenxsTiara,
7020 "CenxsBreastplate" => Self::CenxsBreastplate,
7021 "CenxsLeggings" => Self::CenxsLeggings,
7022 "CrownosMask" => Self::CrownosMask,
7023 "CrownosBreastplate" => Self::CrownosBreastplate,
7024 "CrownosLeggings" => Self::CrownosLeggings,
7025 "WillsHelmet" => Self::WillsHelmet,
7026 "WillsBreastplate" => Self::WillsBreastplate,
7027 "WillsLeggings" => Self::WillsLeggings,
7028 "JimsHelmet" => Self::JimsHelmet,
7029 "JimsBreastplate" => Self::JimsBreastplate,
7030 "JimsLeggings" => Self::JimsLeggings,
7031 "AaronsHelmet" => Self::AaronsHelmet,
7032 "AaronsBreastplate" => Self::AaronsBreastplate,
7033 "AaronsLeggings" => Self::AaronsLeggings,
7034 "VampireKnives" => Self::VampireKnives,
7035 "BrokenHeroSword" => Self::BrokenHeroSword,
7036 "ScourgeoftheCorruptor" => Self::ScourgeOfTheCorruptor,
7037 "StaffoftheFrostHydra" => Self::StaffOfTheFrostHydra,
7038 "TheCreationoftheGuide" => Self::TheCreationOfTheGuide,
7039 "TheMerchant" => Self::TheMerchant,
7040 "CrownoDevoursHisLunch" => Self::CrownoDevoursHisLunch,
7041 "RareEnchantment" => Self::RareEnchantment,
7042 "GloriousNight" => Self::GloriousNight,
7043 "SweetheartNecklace" => Self::SweetheartNecklace,
7044 "FlurryBoots" => Self::FlurryBoots,
7045 "DTownsHelmet" => Self::DTownsHelmet,
7046 "DTownsBreastplate" => Self::DTownsBreastplate,
7047 "DTownsLeggings" => Self::DTownsLeggings,
7048 "DTownsWings" => Self::DTownsWings,
7049 "WillsWings" => Self::WillsWings,
7050 "CrownosWings" => Self::CrownosWings,
7051 "CenxsWings" => Self::CenxsWings,
7052 "CenxsDress" => Self::CenxsDress,
7053 "CenxsDressPants" => Self::CenxsDressPants,
7054 "PalladiumColumn" => Self::PalladiumColumn,
7055 "PalladiumColumnWall" => Self::PalladiumColumnWall,
7056 "BubblegumBlock" => Self::BubblegumBlock,
7057 "BubblegumBlockWall" => Self::BubblegumBlockWall,
7058 "TitanstoneBlock" => Self::TitanstoneBlock,
7059 "TitanstoneBlockWall" => Self::TitanstoneBlockWall,
7060 "MagicCuffs" => Self::MagicCuffs,
7061 "MusicBoxSnow" => Self::MusicBoxSnow,
7062 "MusicBoxSpace" => Self::MusicBoxSpace,
7063 "MusicBoxCrimson" => Self::MusicBoxCrimson,
7064 "MusicBoxBoss4" => Self::MusicBoxBoss4,
7065 "MusicBoxAltOverworldDay" => Self::MusicBoxAltOverworldDay,
7066 "MusicBoxRain" => Self::MusicBoxRain,
7067 "MusicBoxIce" => Self::MusicBoxIce,
7068 "MusicBoxDesert" => Self::MusicBoxDesert,
7069 "MusicBoxOcean" => Self::MusicBoxOcean,
7070 "MusicBoxDungeon" => Self::MusicBoxDungeon,
7071 "MusicBoxPlantera" => Self::MusicBoxPlantera,
7072 "MusicBoxBoss5" => Self::MusicBoxBoss5,
7073 "MusicBoxTemple" => Self::MusicBoxTemple,
7074 "MusicBoxEclipse" => Self::MusicBoxEclipse,
7075 "MusicBoxMushrooms" => Self::MusicBoxMushrooms,
7076 "ButterflyDust" => Self::ButterflyDust,
7077 "AnkhCharm" => Self::AnkhCharm,
7078 "AnkhShield" => Self::AnkhShield,
7079 "BlueFlare" => Self::BlueFlare,
7080 "AnglerFishBanner" => Self::AnglerFishBanner,
7081 "AngryNimbusBanner" => Self::AngryNimbusBanner,
7082 "AnomuraFungusBanner" => Self::AnomuraFungusBanner,
7083 "AntlionBanner" => Self::AntlionBanner,
7084 "ArapaimaBanner" => Self::ArapaimaBanner,
7085 "ArmoredSkeletonBanner" => Self::ArmoredSkeletonBanner,
7086 "BatBanner" => Self::BatBanner,
7087 "BirdBanner" => Self::BirdBanner,
7088 "BlackRecluseBanner" => Self::BlackRecluseBanner,
7089 "BloodFeederBanner" => Self::BloodFeederBanner,
7090 "BloodJellyBanner" => Self::BloodJellyBanner,
7091 "BloodCrawlerBanner" => Self::BloodCrawlerBanner,
7092 "BoneSerpentBanner" => Self::BoneSerpentBanner,
7093 "BunnyBanner" => Self::BunnyBanner,
7094 "ChaosElementalBanner" => Self::ChaosElementalBanner,
7095 "MimicBanner" => Self::MimicBanner,
7096 "ClownBanner" => Self::ClownBanner,
7097 "CorruptBunnyBanner" => Self::CorruptBunnyBanner,
7098 "CorruptGoldfishBanner" => Self::CorruptGoldfishBanner,
7099 "CrabBanner" => Self::CrabBanner,
7100 "CrimeraBanner" => Self::CrimeraBanner,
7101 "CrimsonAxeBanner" => Self::CrimsonAxeBanner,
7102 "CursedHammerBanner" => Self::CursedHammerBanner,
7103 "DemonBanner" => Self::DemonBanner,
7104 "DemonEyeBanner" => Self::DemonEyeBanner,
7105 "DerplingBanner" => Self::DerplingBanner,
7106 "EaterofSoulsBanner" => Self::EaterOfSoulsBanner,
7107 "EnchantedSwordBanner" => Self::EnchantedSwordBanner,
7108 "ZombieEskimoBanner" => Self::ZombieEskimoBanner,
7109 "FaceMonsterBanner" => Self::FaceMonsterBanner,
7110 "FloatyGrossBanner" => Self::FloatyGrossBanner,
7111 "FlyingFishBanner" => Self::FlyingFishBanner,
7112 "FlyingSnakeBanner" => Self::FlyingSnakeBanner,
7113 "FrankensteinBanner" => Self::FrankensteinBanner,
7114 "FungiBulbBanner" => Self::FungiBulbBanner,
7115 "FungoFishBanner" => Self::FungoFishBanner,
7116 "GastropodBanner" => Self::GastropodBanner,
7117 "GoblinThiefBanner" => Self::GoblinThiefBanner,
7118 "GoblinSorcererBanner" => Self::GoblinSorcererBanner,
7119 "GoblinPeonBanner" => Self::GoblinPeonBanner,
7120 "GoblinScoutBanner" => Self::GoblinScoutBanner,
7121 "GoblinWarriorBanner" => Self::GoblinWarriorBanner,
7122 "GoldfishBanner" => Self::GoldfishBanner,
7123 "HarpyBanner" => Self::HarpyBanner,
7124 "HellbatBanner" => Self::HellbatBanner,
7125 "HerplingBanner" => Self::HerplingBanner,
7126 "HornetBanner" => Self::HornetBanner,
7127 "IceElementalBanner" => Self::IceElementalBanner,
7128 "IcyMermanBanner" => Self::IcyMermanBanner,
7129 "FireImpBanner" => Self::FireImpBanner,
7130 "JellyfishBanner" => Self::JellyfishBanner,
7131 "JungleCreeperBanner" => Self::JungleCreeperBanner,
7132 "LihzahrdBanner" => Self::LihzahrdBanner,
7133 "ManEaterBanner" => Self::ManEaterBanner,
7134 "MeteorHeadBanner" => Self::MeteorHeadBanner,
7135 "MothBanner" => Self::MothBanner,
7136 "MummyBanner" => Self::MummyBanner,
7137 "MushiLadybugBanner" => Self::MushiLadybugBanner,
7138 "ParrotBanner" => Self::ParrotBanner,
7139 "PigronBanner" => Self::PigronBanner,
7140 "PiranhaBanner" => Self::PiranhaBanner,
7141 "PirateBanner" => Self::PirateBanner,
7142 "PixieBanner" => Self::PixieBanner,
7143 "RaincoatZombieBanner" => Self::RaincoatZombieBanner,
7144 "ReaperBanner" => Self::ReaperBanner,
7145 "SharkBanner" => Self::SharkBanner,
7146 "SkeletonBanner" => Self::SkeletonBanner,
7147 "SkeletonMageBanner" => Self::SkeletonMageBanner,
7148 "SlimeBanner" => Self::SlimeBanner,
7149 "SnowFlinxBanner" => Self::SnowFlinxBanner,
7150 "SpiderBanner" => Self::SpiderBanner,
7151 "SporeZombieBanner" => Self::SporeZombieBanner,
7152 "SwampThingBanner" => Self::SwampThingBanner,
7153 "TortoiseBanner" => Self::TortoiseBanner,
7154 "ToxicSludgeBanner" => Self::ToxicSludgeBanner,
7155 "UmbrellaSlimeBanner" => Self::UmbrellaSlimeBanner,
7156 "UnicornBanner" => Self::UnicornBanner,
7157 "VampireBanner" => Self::VampireBanner,
7158 "VultureBanner" => Self::VultureBanner,
7159 "NypmhBanner" => Self::NypmhBanner,
7160 "WerewolfBanner" => Self::WerewolfBanner,
7161 "WolfBanner" => Self::WolfBanner,
7162 "WorldFeederBanner" => Self::WorldFeederBanner,
7163 "WormBanner" => Self::WormBanner,
7164 "WraithBanner" => Self::WraithBanner,
7165 "WyvernBanner" => Self::WyvernBanner,
7166 "ZombieBanner" => Self::ZombieBanner,
7167 "GlassPlatform" => Self::GlassPlatform,
7168 "GlassChair" => Self::GlassChair,
7169 "GoldenChair" => Self::GoldenChair,
7170 "GoldenToilet" => Self::GoldenToilet,
7171 "BarStool" => Self::BarStool,
7172 "HoneyChair" => Self::HoneyChair,
7173 "SteampunkChair" => Self::SteampunkChair,
7174 "GlassDoor" => Self::GlassDoor,
7175 "GoldenDoor" => Self::GoldenDoor,
7176 "HoneyDoor" => Self::HoneyDoor,
7177 "SteampunkDoor" => Self::SteampunkDoor,
7178 "GlassTable" => Self::GlassTable,
7179 "BanquetTable" => Self::BanquetTable,
7180 "Bar" => Self::Bar,
7181 "GoldenTable" => Self::GoldenTable,
7182 "HoneyTable" => Self::HoneyTable,
7183 "SteampunkTable" => Self::SteampunkTable,
7184 "GlassBed" => Self::GlassBed,
7185 "GoldenBed" => Self::GoldenBed,
7186 "HoneyBed" => Self::HoneyBed,
7187 "SteampunkBed" => Self::SteampunkBed,
7188 "LivingWoodWall" => Self::LivingWoodWall,
7189 "FartinaJar" => Self::FartInAJar,
7190 "Pumpkin" => Self::Pumpkin,
7191 "PumpkinWall" => Self::PumpkinWall,
7192 "Hay" => Self::Hay,
7193 "HayWall" => Self::HayWall,
7194 "SpookyWood" => Self::SpookyWood,
7195 "SpookyWoodWall" => Self::SpookyWoodWall,
7196 "PumpkinHelmet" => Self::PumpkinHelmet,
7197 "PumpkinBreastplate" => Self::PumpkinBreastplate,
7198 "PumpkinLeggings" => Self::PumpkinLeggings,
7199 "CandyApple" => Self::CandyApple,
7200 "SoulCake" => Self::SoulCake,
7201 "NurseHat" => Self::NurseHat,
7202 "NurseShirt" => Self::NurseShirt,
7203 "NursePants" => Self::NursePants,
7204 "WizardsHat" => Self::WizardsHat,
7205 "GuyFawkesMask" => Self::GuyFawkesMask,
7206 "DyeTraderRobe" => Self::DyeTraderRobe,
7207 "SteampunkGoggles" => Self::SteampunkGoggles,
7208 "CyborgHelmet" => Self::CyborgHelmet,
7209 "CyborgShirt" => Self::CyborgShirt,
7210 "CyborgPants" => Self::CyborgPants,
7211 "CreeperMask" => Self::CreeperMask,
7212 "CreeperShirt" => Self::CreeperShirt,
7213 "CreeperPants" => Self::CreeperPants,
7214 "CatMask" => Self::CatMask,
7215 "CatShirt" => Self::CatShirt,
7216 "CatPants" => Self::CatPants,
7217 "GhostMask" => Self::GhostMask,
7218 "GhostShirt" => Self::GhostShirt,
7219 "PumpkinMask" => Self::PumpkinMask,
7220 "PumpkinShirt" => Self::PumpkinShirt,
7221 "PumpkinPants" => Self::PumpkinPants,
7222 "RobotMask" => Self::RobotMask,
7223 "RobotShirt" => Self::RobotShirt,
7224 "RobotPants" => Self::RobotPants,
7225 "UnicornMask" => Self::UnicornMask,
7226 "UnicornShirt" => Self::UnicornShirt,
7227 "UnicornPants" => Self::UnicornPants,
7228 "VampireMask" => Self::VampireMask,
7229 "VampireShirt" => Self::VampireShirt,
7230 "VampirePants" => Self::VampirePants,
7231 "WitchHat" => Self::WitchHat,
7232 "LeprechaunHat" => Self::LeprechaunHat,
7233 "LeprechaunShirt" => Self::LeprechaunShirt,
7234 "LeprechaunPants" => Self::LeprechaunPants,
7235 "PixieShirt" => Self::PixieShirt,
7236 "PixiePants" => Self::PixiePants,
7237 "PrincessHat" => Self::PrincessHat,
7238 "PrincessDressNew" => Self::PrincessDressNew,
7239 "GoodieBag" => Self::GoodieBag,
7240 "WitchDress" => Self::WitchDress,
7241 "WitchBoots" => Self::WitchBoots,
7242 "BrideofFrankensteinMask" => Self::BrideOfFrankensteinMask,
7243 "BrideofFrankensteinDress" => Self::BrideOfFrankensteinDress,
7244 "KarateTortoiseMask" => Self::KarateTortoiseMask,
7245 "KarateTortoiseShirt" => Self::KarateTortoiseShirt,
7246 "KarateTortoisePants" => Self::KarateTortoisePants,
7247 "CandyCornRifle" => Self::CandyCornRifle,
7248 "CandyCorn" => Self::CandyCorn,
7249 "JackOLanternLauncher" => Self::JackOLanternLauncher,
7250 "ExplosiveJackOLantern" => Self::ExplosiveJackOLantern,
7251 "Sickle" => Self::Sickle,
7252 "PumpkinPie" => Self::PumpkinPie,
7253 "ScarecrowHat" => Self::ScarecrowHat,
7254 "ScarecrowShirt" => Self::ScarecrowShirt,
7255 "ScarecrowPants" => Self::ScarecrowPants,
7256 "Cauldron" => Self::Cauldron,
7257 "PumpkinChair" => Self::PumpkinChair,
7258 "PumpkinDoor" => Self::PumpkinDoor,
7259 "PumpkinTable" => Self::PumpkinTable,
7260 "PumpkinWorkBench" => Self::PumpkinWorkBench,
7261 "PumpkinPlatform" => Self::PumpkinPlatform,
7262 "TatteredFairyWings" => Self::TatteredFairyWings,
7263 "SpiderEgg" => Self::SpiderEgg,
7264 "MagicalPumpkinSeed" => Self::MagicalPumpkinSeed,
7265 "BatHook" => Self::BatHook,
7266 "BatScepter" => Self::BatScepter,
7267 "RavenStaff" => Self::RavenStaff,
7268 "JungleKeyMold" => Self::JungleKeyMold,
7269 "CorruptionKeyMold" => Self::CorruptionKeyMold,
7270 "CrimsonKeyMold" => Self::CrimsonKeyMold,
7271 "HallowedKeyMold" => Self::HallowedKeyMold,
7272 "FrozenKeyMold" => Self::FrozenKeyMold,
7273 "HangingJackOLantern" => Self::HangingJackOLantern,
7274 "RottenEgg" => Self::RottenEgg,
7275 "UnluckyYarn" => Self::UnluckyYarn,
7276 "BlackFairyDust" => Self::BlackFairyDust,
7277 "Jackelier" => Self::Jackelier,
7278 "JackOLantern" => Self::JackOLantern,
7279 "SpookyChair" => Self::SpookyChair,
7280 "SpookyDoor" => Self::SpookyDoor,
7281 "SpookyTable" => Self::SpookyTable,
7282 "SpookyWorkBench" => Self::SpookyWorkBench,
7283 "SpookyPlatform" => Self::SpookyPlatform,
7284 "ReaperHood" => Self::ReaperHood,
7285 "ReaperRobe" => Self::ReaperRobe,
7286 "FoxMask" => Self::FoxMask,
7287 "FoxShirt" => Self::FoxShirt,
7288 "FoxPants" => Self::FoxPants,
7289 "CatEars" => Self::CatEars,
7290 "BloodyMachete" => Self::BloodyMachete,
7291 "TheHorsemansBlade" => Self::TheHorsemansBlade,
7292 "BladedGlove" => Self::BladedGlove,
7293 "PumpkinSeed" => Self::PumpkinSeed,
7294 "SpookyHook" => Self::SpookyHook,
7295 "SpookyWings" => Self::SpookyWings,
7296 "SpookyTwig" => Self::SpookyTwig,
7297 "SpookyHelmet" => Self::SpookyHelmet,
7298 "SpookyBreastplate" => Self::SpookyBreastplate,
7299 "SpookyLeggings" => Self::SpookyLeggings,
7300 "StakeLauncher" => Self::StakeLauncher,
7301 "Stake" => Self::Stake,
7302 "CursedSapling" => Self::CursedSapling,
7303 "SpaceCreatureMask" => Self::SpaceCreatureMask,
7304 "SpaceCreatureShirt" => Self::SpaceCreatureShirt,
7305 "SpaceCreaturePants" => Self::SpaceCreaturePants,
7306 "WolfMask" => Self::WolfMask,
7307 "WolfShirt" => Self::WolfShirt,
7308 "WolfPants" => Self::WolfPants,
7309 "PumpkinMoonMedallion" => Self::PumpkinMoonMedallion,
7310 "NecromanticScroll" => Self::NecromanticScroll,
7311 "JackingSkeletron" => Self::JackingSkeletron,
7312 "BitterHarvest" => Self::BitterHarvest,
7313 "BloodMoonCountess" => Self::BloodMoonCountess,
7314 "HallowsEve" => Self::HallowsEve,
7315 "MorbidCuriosity" => Self::MorbidCuriosity,
7316 "TreasureHunterShirt" => Self::TreasureHunterShirt,
7317 "TreasureHunterPants" => Self::TreasureHunterPants,
7318 "DryadCoverings" => Self::DryadCoverings,
7319 "DryadLoincloth" => Self::DryadLoincloth,
7320 "MourningWoodTrophy" => Self::MourningWoodTrophy,
7321 "PumpkingTrophy" => Self::PumpkingTrophy,
7322 "JackOLanternMask" => Self::JackOLanternMask,
7323 "SniperScope" => Self::SniperScope,
7324 "HeartLantern" => Self::HeartLantern,
7325 "JellyfishDivingGear" => Self::JellyfishDivingGear,
7326 "ArcticDivingGear" => Self::ArcticDivingGear,
7327 "FrostsparkBoots" => Self::FrostsparkBoots,
7328 "FartInABalloon" => Self::FartInABalloon,
7329 "PapyrusScarab" => Self::PapyrusScarab,
7330 "CelestialStone" => Self::CelestialStone,
7331 "Hoverboard" => Self::Hoverboard,
7332 "CandyCane" => Self::CandyCane,
7333 "SugarPlum" => Self::SugarPlum,
7334 "Present" => Self::Present,
7335 "RedRyder" => Self::RedRyder,
7336 "FestiveWings" => Self::FestiveWings,
7337 "PineTreeBlock" => Self::PineTreeBlock,
7338 "ChristmasTree" => Self::ChristmasTree,
7339 "StarTopper1" => Self::StarTopper1,
7340 "StarTopper2" => Self::StarTopper2,
7341 "StarTopper3" => Self::StarTopper3,
7342 "BowTopper" => Self::BowTopper,
7343 "WhiteGarland" => Self::WhiteGarland,
7344 "WhiteAndRedGarland" => Self::WhiteAndRedGarland,
7345 "RedGardland" => Self::RedGarland,
7346 "RedAndGreenGardland" => Self::RedAndGreenGarland,
7347 "GreenGardland" => Self::GreenGarland,
7348 "GreenAndWhiteGarland" => Self::GreenAndWhiteGarland,
7349 "MulticoloredBulb" => Self::MulticoloredBulb,
7350 "RedBulb" => Self::RedBulb,
7351 "YellowBulb" => Self::YellowBulb,
7352 "GreenBulb" => Self::GreenBulb,
7353 "RedAndGreenBulb" => Self::RedAndGreenBulb,
7354 "YellowAndGreenBulb" => Self::YellowAndGreenBulb,
7355 "RedAndYellowBulb" => Self::RedAndYellowBulb,
7356 "WhiteBulb" => Self::WhiteBulb,
7357 "WhiteAndRedBulb" => Self::WhiteAndRedBulb,
7358 "WhiteAndYellowBulb" => Self::WhiteAndYellowBulb,
7359 "WhiteAndGreenBulb" => Self::WhiteAndGreenBulb,
7360 "MulticoloredLights" => Self::MulticoloredLights,
7361 "RedLights" => Self::RedLights,
7362 "GreenLights" => Self::GreenLights,
7363 "BlueLights" => Self::BlueLights,
7364 "YellowLights" => Self::YellowLights,
7365 "RedAndYellowLights" => Self::RedAndYellowLights,
7366 "RedAndGreenLights" => Self::RedAndGreenLights,
7367 "YellowAndGreenLights" => Self::YellowAndGreenLights,
7368 "BlueAndGreenLights" => Self::BlueAndGreenLights,
7369 "RedAndBlueLights" => Self::RedAndBlueLights,
7370 "BlueAndYellowLights" => Self::BlueAndYellowLights,
7371 "GiantBow" => Self::GiantBow,
7372 "ReindeerAntlers" => Self::ReindeerAntlers,
7373 "Holly" => Self::Holly,
7374 "CandyCaneSword" => Self::CandyCaneSword,
7375 "ElfMelter" => Self::ElfMelter,
7376 "ChristmasPudding" => Self::ChristmasPudding,
7377 "Eggnog" => Self::Eggnog,
7378 "StarAnise" => Self::StarAnise,
7379 "ReindeerBells" => Self::ReindeerBells,
7380 "CandyCaneHook" => Self::CandyCaneHook,
7381 "ChristmasHook" => Self::ChristmasHook,
7382 "CnadyCanePickaxe" => Self::CnadyCanePickaxe,
7383 "FruitcakeChakram" => Self::FruitcakeChakram,
7384 "SugarCookie" => Self::SugarCookie,
7385 "GingerbreadCookie" => Self::GingerbreadCookie,
7386 "HandWarmer" => Self::HandWarmer,
7387 "Coal" => Self::Coal,
7388 "Toolbox" => Self::Toolbox,
7389 "PineDoor" => Self::PineDoor,
7390 "PineChair" => Self::PineChair,
7391 "PineTable" => Self::PineTable,
7392 "DogWhistle" => Self::DogWhistle,
7393 "ChristmasTreeSword" => Self::ChristmasTreeSword,
7394 "ChainGun" => Self::ChainGun,
7395 "Razorpine" => Self::Razorpine,
7396 "BlizzardStaff" => Self::BlizzardStaff,
7397 "MrsClauseHat" => Self::MrsClauseHat,
7398 "MrsClauseShirt" => Self::MrsClauseShirt,
7399 "MrsClauseHeels" => Self::MrsClauseHeels,
7400 "ParkaHood" => Self::ParkaHood,
7401 "ParkaCoat" => Self::ParkaCoat,
7402 "ParkaPants" => Self::ParkaPants,
7403 "SnowHat" => Self::SnowHat,
7404 "UglySweater" => Self::UglySweater,
7405 "TreeMask" => Self::TreeMask,
7406 "TreeShirt" => Self::TreeShirt,
7407 "TreeTrunks" => Self::TreeTrunks,
7408 "ElfHat" => Self::ElfHat,
7409 "ElfShirt" => Self::ElfShirt,
7410 "ElfPants" => Self::ElfPants,
7411 "SnowmanCannon" => Self::SnowmanCannon,
7412 "NorthPole" => Self::NorthPole,
7413 "ChristmasTreeWallpaper" => Self::ChristmasTreeWallpaper,
7414 "OrnamentWallpaper" => Self::OrnamentWallpaper,
7415 "CandyCaneWallpaper" => Self::CandyCaneWallpaper,
7416 "FestiveWallpaper" => Self::FestiveWallpaper,
7417 "StarsWallpaper" => Self::StarsWallpaper,
7418 "SquigglesWallpaper" => Self::SquigglesWallpaper,
7419 "SnowflakeWallpaper" => Self::SnowflakeWallpaper,
7420 "KrampusHornWallpaper" => Self::KrampusHornWallpaper,
7421 "BluegreenWallpaper" => Self::BluegreenWallpaper,
7422 "GrinchFingerWallpaper" => Self::GrinchFingerWallpaper,
7423 "NaughtyPresent" => Self::NaughtyPresent,
7424 "BabyGrinchMischiefWhistle" => Self::BabyGrinchMischiefWhistle,
7425 "IceQueenTrophy" => Self::IceQueenTrophy,
7426 "SantaNK1Trophy" => Self::SantaNK1Trophy,
7427 "EverscreamTrophy" => Self::EverscreamTrophy,
7428 "MusicBoxPumpkinMoon" => Self::MusicBoxPumpkinMoon,
7429 "MusicBoxAltUnderground" => Self::MusicBoxAltUnderground,
7430 "MusicBoxFrostMoon" => Self::MusicBoxFrostMoon,
7431 "BrownPaint" => Self::BrownPaint,
7432 "ShadowPaint" => Self::ShadowPaint,
7433 "NegativePaint" => Self::NegativePaint,
7434 "TeamDye" => Self::TeamDye,
7435 "AmethystGemsparkBlock" => Self::AmethystGemsparkBlock,
7436 "TopazGemsparkBlock" => Self::TopazGemsparkBlock,
7437 "SapphireGemsparkBlock" => Self::SapphireGemsparkBlock,
7438 "EmeraldGemsparkBlock" => Self::EmeraldGemsparkBlock,
7439 "RubyGemsparkBlock" => Self::RubyGemsparkBlock,
7440 "DiamondGemsparkBlock" => Self::DiamondGemsparkBlock,
7441 "AmberGemsparkBlock" => Self::AmberGemsparkBlock,
7442 "LifeHairDye" => Self::LifeHairDye,
7443 "ManaHairDye" => Self::ManaHairDye,
7444 "DepthHairDye" => Self::DepthHairDye,
7445 "MoneyHairDye" => Self::MoneyHairDye,
7446 "TimeHairDye" => Self::TimeHairDye,
7447 "TeamHairDye" => Self::TeamHairDye,
7448 "BiomeHairDye" => Self::BiomeHairDye,
7449 "PartyHairDye" => Self::PartyHairDye,
7450 "RainbowHairDye" => Self::RainbowHairDye,
7451 "SpeedHairDye" => Self::SpeedHairDye,
7452 "AngelHalo" => Self::AngelHalo,
7453 "Fez" => Self::Fez,
7454 "Womannquin" => Self::Womannequin,
7455 "HairDyeRemover" => Self::HairDyeRemover,
7456 "BugNet" => Self::BugNet,
7457 "Firefly" => Self::Firefly,
7458 "FireflyinaBottle" => Self::FireflyInABottle,
7459 "MonarchButterfly" => Self::MonarchButterfly,
7460 "PurpleEmperorButterfly" => Self::PurpleEmperorButterfly,
7461 "RedAdmiralButterfly" => Self::RedAdmiralButterfly,
7462 "UlyssesButterfly" => Self::UlyssesButterfly,
7463 "SulphurButterfly" => Self::SulphurButterfly,
7464 "TreeNymphButterfly" => Self::TreeNymphButterfly,
7465 "ZebraSwallowtailButterfly" => Self::ZebraSwallowtailButterfly,
7466 "JuliaButterfly" => Self::JuliaButterfly,
7467 "Worm" => Self::Worm,
7468 "Mouse" => Self::Mouse,
7469 "LightningBug" => Self::LightningBug,
7470 "LightningBuginaBottle" => Self::LightningBugInABottle,
7471 "Snail" => Self::Snail,
7472 "GlowingSnail" => Self::GlowingSnail,
7473 "FancyGreyWallpaper" => Self::FancyGreyWallpaper,
7474 "IceFloeWallpaper" => Self::IceFloeWallpaper,
7475 "MusicWallpaper" => Self::MusicWallpaper,
7476 "PurpleRainWallpaper" => Self::PurpleRainWallpaper,
7477 "RainbowWallpaper" => Self::RainbowWallpaper,
7478 "SparkleStoneWallpaper" => Self::SparkleStoneWallpaper,
7479 "StarlitHeavenWallpaper" => Self::StarlitHeavenWallpaper,
7480 "Bird" => Self::Bird,
7481 "BlueJay" => Self::BlueJay,
7482 "Cardinal" => Self::Cardinal,
7483 "Squirrel" => Self::Squirrel,
7484 "Bunny" => Self::Bunny,
7485 "CactusBookcase" => Self::CactusBookcase,
7486 "EbonwoodBookcase" => Self::EbonwoodBookcase,
7487 "FleshBookcase" => Self::FleshBookcase,
7488 "HoneyBookcase" => Self::HoneyBookcase,
7489 "SteampunkBookcase" => Self::SteampunkBookcase,
7490 "GlassBookcase" => Self::GlassBookcase,
7491 "RichMahoganyBookcase" => Self::RichMahoganyBookcase,
7492 "PearlwoodBookcase" => Self::PearlwoodBookcase,
7493 "SpookyBookcase" => Self::SpookyBookcase,
7494 "SkywareBookcase" => Self::SkywareBookcase,
7495 "LihzahrdBookcase" => Self::LihzahrdBookcase,
7496 "FrozenBookcase" => Self::FrozenBookcase,
7497 "CactusLantern" => Self::CactusLantern,
7498 "EbonwoodLantern" => Self::EbonwoodLantern,
7499 "FleshLantern" => Self::FleshLantern,
7500 "HoneyLantern" => Self::HoneyLantern,
7501 "SteampunkLantern" => Self::SteampunkLantern,
7502 "GlassLantern" => Self::GlassLantern,
7503 "RichMahoganyLantern" => Self::RichMahoganyLantern,
7504 "PearlwoodLantern" => Self::PearlwoodLantern,
7505 "FrozenLantern" => Self::FrozenLantern,
7506 "LihzahrdLantern" => Self::LihzahrdLantern,
7507 "SkywareLantern" => Self::SkywareLantern,
7508 "SpookyLantern" => Self::SpookyLantern,
7509 "FrozenDoor" => Self::FrozenDoor,
7510 "CactusCandle" => Self::CactusCandle,
7511 "EbonwoodCandle" => Self::EbonwoodCandle,
7512 "FleshCandle" => Self::FleshCandle,
7513 "GlassCandle" => Self::GlassCandle,
7514 "FrozenCandle" => Self::FrozenCandle,
7515 "RichMahoganyCandle" => Self::RichMahoganyCandle,
7516 "PearlwoodCandle" => Self::PearlwoodCandle,
7517 "LihzahrdCandle" => Self::LihzahrdCandle,
7518 "SkywareCandle" => Self::SkywareCandle,
7519 "PumpkinCandle" => Self::PumpkinCandle,
7520 "CactusChandelier" => Self::CactusChandelier,
7521 "EbonwoodChandelier" => Self::EbonwoodChandelier,
7522 "FleshChandelier" => Self::FleshChandelier,
7523 "HoneyChandelier" => Self::HoneyChandelier,
7524 "FrozenChandelier" => Self::FrozenChandelier,
7525 "RichMahoganyChandelier" => Self::RichMahoganyChandelier,
7526 "PearlwoodChandelier" => Self::PearlwoodChandelier,
7527 "LihzahrdChandelier" => Self::LihzahrdChandelier,
7528 "SkywareChandelier" => Self::SkywareChandelier,
7529 "SpookyChandelier" => Self::SpookyChandelier,
7530 "GlassChandelier" => Self::GlassChandelier,
7531 "CactusBed" => Self::CactusBed,
7532 "FleshBed" => Self::FleshBed,
7533 "FrozenBed" => Self::FrozenBed,
7534 "LihzahrdBed" => Self::LihzahrdBed,
7535 "SkywareBed" => Self::SkywareBed,
7536 "SpookyBed" => Self::SpookyBed,
7537 "CactusBathtub" => Self::CactusBathtub,
7538 "EbonwoodBathtub" => Self::EbonwoodBathtub,
7539 "FleshBathtub" => Self::FleshBathtub,
7540 "GlassBathtub" => Self::GlassBathtub,
7541 "FrozenBathtub" => Self::FrozenBathtub,
7542 "RichMahoganyBathtub" => Self::RichMahoganyBathtub,
7543 "PearlwoodBathtub" => Self::PearlwoodBathtub,
7544 "LihzahrdBathtub" => Self::LihzahrdBathtub,
7545 "SkywareBathtub" => Self::SkywareBathtub,
7546 "SpookyBathtub" => Self::SpookyBathtub,
7547 "CactusLamp" => Self::CactusLamp,
7548 "EbonwoodLamp" => Self::EbonwoodLamp,
7549 "FleshLamp" => Self::FleshLamp,
7550 "GlassLamp" => Self::GlassLamp,
7551 "FrozenLamp" => Self::FrozenLamp,
7552 "RichMahoganyLamp" => Self::RichMahoganyLamp,
7553 "PearlwoodLamp" => Self::PearlwoodLamp,
7554 "LihzahrdLamp" => Self::LihzahrdLamp,
7555 "SkywareLamp" => Self::SkywareLamp,
7556 "SpookyLamp" => Self::SpookyLamp,
7557 "CactusCandelabra" => Self::CactusCandelabra,
7558 "EbonwoodCandelabra" => Self::EbonwoodCandelabra,
7559 "FleshCandelabra" => Self::FleshCandelabra,
7560 "HoneyCandelabra" => Self::HoneyCandelabra,
7561 "SteampunkCandelabra" => Self::SteampunkCandelabra,
7562 "GlassCandelabra" => Self::GlassCandelabra,
7563 "RichMahoganyCandelabra" => Self::RichMahoganyCandelabra,
7564 "PearlwoodCandelabra" => Self::PearlwoodCandelabra,
7565 "FrozenCandelabra" => Self::FrozenCandelabra,
7566 "LihzahrdCandelabra" => Self::LihzahrdCandelabra,
7567 "SkywareCandelabra" => Self::SkywareCandelabra,
7568 "SpookyCandelabra" => Self::SpookyCandelabra,
7569 "BrainMask" => Self::BrainMask,
7570 "FleshMask" => Self::FleshMask,
7571 "TwinMask" => Self::TwinMask,
7572 "SkeletronPrimeMask" => Self::SkeletronPrimeMask,
7573 "BeeMask" => Self::BeeMask,
7574 "PlanteraMask" => Self::PlanteraMask,
7575 "GolemMask" => Self::GolemMask,
7576 "EaterMask" => Self::EaterMask,
7577 "EyeMask" => Self::EyeMask,
7578 "DestroyerMask" => Self::DestroyerMask,
7579 "BlacksmithRack" => Self::BlacksmithRack,
7580 "CarpentryRack" => Self::CarpentryRack,
7581 "HelmetRack" => Self::HelmetRack,
7582 "SpearRack" => Self::SpearRack,
7583 "SwordRack" => Self::SwordRack,
7584 "StoneSlab" => Self::StoneSlab,
7585 "SandstoneSlab" => Self::SandstoneSlab,
7586 "Frog" => Self::Frog,
7587 "MallardDuck" => Self::MallardDuck,
7588 "Duck" => Self::Duck,
7589 "HoneyBathtub" => Self::HoneyBathtub,
7590 "SteampunkBathtub" => Self::SteampunkBathtub,
7591 "LivingWoodBathtub" => Self::LivingWoodBathtub,
7592 "ShadewoodBathtub" => Self::ShadewoodBathtub,
7593 "BoneBathtub" => Self::BoneBathtub,
7594 "HoneyLamp" => Self::HoneyLamp,
7595 "SteampunkLamp" => Self::SteampunkLamp,
7596 "LivingWoodLamp" => Self::LivingWoodLamp,
7597 "ShadewoodLamp" => Self::ShadewoodLamp,
7598 "GoldenLamp" => Self::GoldenLamp,
7599 "BoneLamp" => Self::BoneLamp,
7600 "LivingWoodBookcase" => Self::LivingWoodBookcase,
7601 "ShadewoodBookcase" => Self::ShadewoodBookcase,
7602 "GoldenBookcase" => Self::GoldenBookcase,
7603 "BoneBookcase" => Self::BoneBookcase,
7604 "LivingWoodBed" => Self::LivingWoodBed,
7605 "BoneBed" => Self::BoneBed,
7606 "LivingWoodChandelier" => Self::LivingWoodChandelier,
7607 "ShadewoodChandelier" => Self::ShadewoodChandelier,
7608 "GoldenChandelier" => Self::GoldenChandelier,
7609 "BoneChandelier" => Self::BoneChandelier,
7610 "LivingWoodLantern" => Self::LivingWoodLantern,
7611 "ShadewoodLantern" => Self::ShadewoodLantern,
7612 "GoldenLantern" => Self::GoldenLantern,
7613 "BoneLantern" => Self::BoneLantern,
7614 "LivingWoodCandelabra" => Self::LivingWoodCandelabra,
7615 "ShadewoodCandelabra" => Self::ShadewoodCandelabra,
7616 "GoldenCandelabra" => Self::GoldenCandelabra,
7617 "BoneCandelabra" => Self::BoneCandelabra,
7618 "LivingWoodCandle" => Self::LivingWoodCandle,
7619 "ShadewoodCandle" => Self::ShadewoodCandle,
7620 "GoldenCandle" => Self::GoldenCandle,
7621 "BlackScorpion" => Self::BlackScorpion,
7622 "Scorpion" => Self::Scorpion,
7623 "BubbleWallpaper" => Self::BubbleWallpaper,
7624 "CopperPipeWallpaper" => Self::CopperPipeWallpaper,
7625 "DuckyWallpaper" => Self::DuckyWallpaper,
7626 "FrostCore" => Self::FrostCore,
7627 "BunnyCage" => Self::BunnyCage,
7628 "SquirrelCage" => Self::SquirrelCage,
7629 "MallardDuckCage" => Self::MallardDuckCage,
7630 "DuckCage" => Self::DuckCage,
7631 "BirdCage" => Self::BirdCage,
7632 "BlueJayCage" => Self::BlueJayCage,
7633 "CardinalCage" => Self::CardinalCage,
7634 "WaterfallWall" => Self::WaterfallWall,
7635 "LavafallWall" => Self::LavafallWall,
7636 "CrimsonSeeds" => Self::CrimsonSeeds,
7637 "HeavyWorkBench" => Self::HeavyWorkBench,
7638 "CopperPlating" => Self::CopperPlating,
7639 "SnailCage" => Self::SnailCage,
7640 "GlowingSnailCage" => Self::GlowingSnailCage,
7641 "ShroomiteDiggingClaw" => Self::ShroomiteDiggingClaw,
7642 "AmmoBox" => Self::AmmoBox,
7643 "MonarchButterflyJar" => Self::MonarchButterflyJar,
7644 "PurpleEmperorButterflyJar" => Self::PurpleEmperorButterflyJar,
7645 "RedAdmiralButterflyJar" => Self::RedAdmiralButterflyJar,
7646 "UlyssesButterflyJar" => Self::UlyssesButterflyJar,
7647 "SulphurButterflyJar" => Self::SulphurButterflyJar,
7648 "TreeNymphButterflyJar" => Self::TreeNymphButterflyJar,
7649 "ZebraSwallowtailButterflyJar" => Self::ZebraSwallowtailButterflyJar,
7650 "JuliaButterflyJar" => Self::JuliaButterflyJar,
7651 "ScorpionCage" => Self::ScorpionCage,
7652 "BlackScorpionCage" => Self::BlackScorpionCage,
7653 "VenomStaff" => Self::VenomStaff,
7654 "SpectreMask" => Self::SpectreMask,
7655 "FrogCage" => Self::FrogCage,
7656 "MouseCage" => Self::MouseCage,
7657 "BoneWelder" => Self::BoneWelder,
7658 "FleshCloningVaat" => Self::FleshCloningVaat,
7659 "GlassKiln" => Self::GlassKiln,
7660 "LihzahrdFurnace" => Self::LihzahrdFurnace,
7661 "LivingLoom" => Self::LivingLoom,
7662 "SkyMill" => Self::SkyMill,
7663 "IceMachine" => Self::IceMachine,
7664 "BeetleHelmet" => Self::BeetleHelmet,
7665 "BeetleScaleMail" => Self::BeetleScaleMail,
7666 "BeetleShell" => Self::BeetleShell,
7667 "BeetleLeggings" => Self::BeetleLeggings,
7668 "SteampunkBoiler" => Self::SteampunkBoiler,
7669 "HoneyDispenser" => Self::HoneyDispenser,
7670 "Penguin" => Self::Penguin,
7671 "PenguinCage" => Self::PenguinCage,
7672 "WormCage" => Self::WormCage,
7673 "Terrarium" => Self::Terrarium,
7674 "SuperManaPotion" => Self::SuperManaPotion,
7675 "EbonwoodFence" => Self::EbonwoodFence,
7676 "RichMahoganyFence" => Self::RichMahoganyFence,
7677 "PearlwoodFence" => Self::PearlwoodFence,
7678 "ShadewoodFence" => Self::ShadewoodFence,
7679 "BrickLayer" => Self::BrickLayer,
7680 "ExtendoGrip" => Self::ExtendoGrip,
7681 "PaintSprayer" => Self::PaintSprayer,
7682 "PortableCementMixer" => Self::PortableCementMixer,
7683 "BeetleHusk" => Self::BeetleHusk,
7684 "CelestialMagnet" => Self::CelestialMagnet,
7685 "CelestialEmblem" => Self::CelestialEmblem,
7686 "CelestialCuffs" => Self::CelestialCuffs,
7687 "PeddlersHat" => Self::PeddlersHat,
7688 "PulseBow" => Self::PulseBow,
7689 "DynastyChandelier" => Self::DynastyChandelier,
7690 "DynastyLamp" => Self::DynastyLamp,
7691 "DynastyLantern" => Self::DynastyLantern,
7692 "DynastyCandelabra" => Self::DynastyCandelabra,
7693 "DynastyChair" => Self::DynastyChair,
7694 "DynastyWorkBench" => Self::DynastyWorkBench,
7695 "DynastyChest" => Self::DynastyChest,
7696 "DynastyBed" => Self::DynastyBed,
7697 "DynastyBathtub" => Self::DynastyBathtub,
7698 "DynastyBookcase" => Self::DynastyBookcase,
7699 "DynastyCup" => Self::DynastyCup,
7700 "DynastyBowl" => Self::DynastyBowl,
7701 "DynastyCandle" => Self::DynastyCandle,
7702 "DynastyClock" => Self::DynastyClock,
7703 "GoldenClock" => Self::GoldenClock,
7704 "GlassClock" => Self::GlassClock,
7705 "HoneyClock" => Self::HoneyClock,
7706 "SteampunkClock" => Self::SteampunkClock,
7707 "FancyDishes" => Self::FancyDishes,
7708 "GlassBowl" => Self::GlassBowl,
7709 "WineGlass" => Self::WineGlass,
7710 "LivingWoodPiano" => Self::LivingWoodPiano,
7711 "FleshPiano" => Self::FleshPiano,
7712 "FrozenPiano" => Self::FrozenPiano,
7713 "FrozenTable" => Self::FrozenTable,
7714 "HoneyChest" => Self::HoneyChest,
7715 "SteampunkChest" => Self::SteampunkChest,
7716 "HoneyWorkBench" => Self::HoneyWorkBench,
7717 "FrozenWorkBench" => Self::FrozenWorkBench,
7718 "SteampunkWorkBench" => Self::SteampunkWorkBench,
7719 "GlassPiano" => Self::GlassPiano,
7720 "HoneyPiano" => Self::HoneyPiano,
7721 "SteampunkPiano" => Self::SteampunkPiano,
7722 "HoneyCup" => Self::HoneyCup,
7723 "SteampunkCup" => Self::SteampunkCup,
7724 "DynastyTable" => Self::DynastyTable,
7725 "DynastyWood" => Self::DynastyWood,
7726 "RedDynastyShingles" => Self::RedDynastyShingles,
7727 "BlueDynastyShingles" => Self::BlueDynastyShingles,
7728 "WhiteDynastyWall" => Self::WhiteDynastyWall,
7729 "BlueDynastyWall" => Self::BlueDynastyWall,
7730 "DynastyDoor" => Self::DynastyDoor,
7731 "Sake" => Self::Sake,
7732 "PadThai" => Self::PadThai,
7733 "Pho" => Self::Pho,
7734 "Revolver" => Self::Revolver,
7735 "Gatligator" => Self::Gatligator,
7736 "ArcaneRuneWall" => Self::ArcaneRuneWall,
7737 "WaterGun" => Self::WaterGun,
7738 "Katana" => Self::Katana,
7739 "UltrabrightTorch" => Self::UltrabrightTorch,
7740 "MagicHat" => Self::MagicHat,
7741 "DiamondRing" => Self::DiamondRing,
7742 "Gi" => Self::Gi,
7743 "Kimono" => Self::Kimono,
7744 "GypsyRobe" => Self::GypsyRobe,
7745 "BeetleWings" => Self::BeetleWings,
7746 "TigerSkin" => Self::TigerSkin,
7747 "LeopardSkin" => Self::LeopardSkin,
7748 "ZebraSkin" => Self::ZebraSkin,
7749 "CrimsonCloak" => Self::CrimsonCloak,
7750 "MysteriousCape" => Self::MysteriousCape,
7751 "RedCape" => Self::RedCape,
7752 "WinterCape" => Self::WinterCape,
7753 "FrozenChair" => Self::FrozenChair,
7754 "WoodFishingPole" => Self::WoodFishingPole,
7755 "Bass" => Self::Bass,
7756 "ReinforcedFishingPole" => Self::ReinforcedFishingPole,
7757 "FiberglassFishingPole" => Self::FiberglassFishingPole,
7758 "FisherofSouls" => Self::FisherOfSouls,
7759 "GoldenFishingRod" => Self::GoldenFishingRod,
7760 "MechanicsRod" => Self::MechanicsRod,
7761 "SittingDucksFishingRod" => Self::SittingDucksFishingRod,
7762 "Trout" => Self::Trout,
7763 "Salmon" => Self::Salmon,
7764 "AtlanticCod" => Self::AtlanticCod,
7765 "Tuna" => Self::Tuna,
7766 "RedSnapper" => Self::RedSnapper,
7767 "NeonTetra" => Self::NeonTetra,
7768 "ArmoredCavefish" => Self::ArmoredCavefish,
7769 "Damselfish" => Self::Damselfish,
7770 "CrimsonTigerfish" => Self::CrimsonTigerfish,
7771 "FrostMinnow" => Self::FrostMinnow,
7772 "PrincessFish" => Self::PrincessFish,
7773 "GoldenCarp" => Self::GoldenCarp,
7774 "SpecularFish" => Self::SpecularFish,
7775 "Prismite" => Self::Prismite,
7776 "VariegatedLardfish" => Self::VariegatedLardfish,
7777 "FlarefinKoi" => Self::FlarefinKoi,
7778 "DoubleCod" => Self::DoubleCod,
7779 "Honeyfin" => Self::Honeyfin,
7780 "Obsidifish" => Self::Obsidifish,
7781 "Shrimp" => Self::Shrimp,
7782 "ChaosFish" => Self::ChaosFish,
7783 "Ebonkoi" => Self::Ebonkoi,
7784 "Hemopiranha" => Self::Hemopiranha,
7785 "Rockfish" => Self::Rockfish,
7786 "Stinkfish" => Self::Stinkfish,
7787 "MiningPotion" => Self::MiningPotion,
7788 "HeartreachPotion" => Self::HeartreachPotion,
7789 "CalmingPotion" => Self::CalmingPotion,
7790 "BuilderPotion" => Self::BuilderPotion,
7791 "TitanPotion" => Self::TitanPotion,
7792 "FlipperPotion" => Self::FlipperPotion,
7793 "SummoningPotion" => Self::SummoningPotion,
7794 "TrapsightPotion" => Self::TrapsightPotion,
7795 "PurpleClubberfish" => Self::PurpleClubberfish,
7796 "ObsidianSwordfish" => Self::ObsidianSwordfish,
7797 "Swordfish" => Self::Swordfish,
7798 "IronFence" => Self::IronFence,
7799 "WoodenCrate" => Self::WoodenCrate,
7800 "IronCrate" => Self::IronCrate,
7801 "GoldenCrate" => Self::GoldenCrate,
7802 "OldShoe" => Self::OldShoe,
7803 "FishingSeaweed" => Self::FishingSeaweed,
7804 "TinCan" => Self::TinCan,
7805 "MinecartTrack" => Self::MinecartTrack,
7806 "ReaverShark" => Self::ReaverShark,
7807 "SawtoothShark" => Self::SawtoothShark,
7808 "Minecart" => Self::Minecart,
7809 "AmmoReservationPotion" => Self::AmmoReservationPotion,
7810 "LifeforcePotion" => Self::LifeforcePotion,
7811 "EndurancePotion" => Self::EndurancePotion,
7812 "RagePotion" => Self::RagePotion,
7813 "InfernoPotion" => Self::InfernoPotion,
7814 "WrathPotion" => Self::WrathPotion,
7815 "RecallPotion" => Self::RecallPotion,
7816 "TeleportationPotion" => Self::TeleportationPotion,
7817 "LovePotion" => Self::LovePotion,
7818 "StinkPotion" => Self::StinkPotion,
7819 "FishingPotion" => Self::FishingPotion,
7820 "SonarPotion" => Self::SonarPotion,
7821 "CratePotion" => Self::CratePotion,
7822 "ShiverthornSeeds" => Self::ShiverthornSeeds,
7823 "Shiverthorn" => Self::Shiverthorn,
7824 "WarmthPotion" => Self::WarmthPotion,
7825 "FishHook" => Self::FishHook,
7826 "BeeHeadgear" => Self::BeeHeadgear,
7827 "BeeBreastplate" => Self::BeeBreastplate,
7828 "BeeGreaves" => Self::BeeGreaves,
7829 "HornetStaff" => Self::HornetStaff,
7830 "ImpStaff" => Self::ImpStaff,
7831 "QueenSpiderStaff" => Self::QueenSpiderStaff,
7832 "AnglerHat" => Self::AnglerHat,
7833 "AnglerVest" => Self::AnglerVest,
7834 "AnglerPants" => Self::AnglerPants,
7835 "SpiderMask" => Self::SpiderMask,
7836 "SpiderBreastplate" => Self::SpiderBreastplate,
7837 "SpiderGreaves" => Self::SpiderGreaves,
7838 "HighTestFishingLine" => Self::HighTestFishingLine,
7839 "AnglerEarring" => Self::AnglerEarring,
7840 "TackleBox" => Self::TackleBox,
7841 "BlueDungeonPiano" => Self::BlueDungeonPiano,
7842 "GreenDungeonPiano" => Self::GreenDungeonPiano,
7843 "PinkDungeonPiano" => Self::PinkDungeonPiano,
7844 "GoldenPiano" => Self::GoldenPiano,
7845 "ObsidianPiano" => Self::ObsidianPiano,
7846 "BonePiano" => Self::BonePiano,
7847 "CactusPiano" => Self::CactusPiano,
7848 "SpookyPiano" => Self::SpookyPiano,
7849 "SkywarePiano" => Self::SkywarePiano,
7850 "LihzahrdPiano" => Self::LihzahrdPiano,
7851 "BlueDungeonDresser" => Self::BlueDungeonDresser,
7852 "GreenDungeonDresser" => Self::GreenDungeonDresser,
7853 "PinkDungeonDresser" => Self::PinkDungeonDresser,
7854 "GoldenDresser" => Self::GoldenDresser,
7855 "ObsidianDresser" => Self::ObsidianDresser,
7856 "BoneDresser" => Self::BoneDresser,
7857 "CactusDresser" => Self::CactusDresser,
7858 "SpookyDresser" => Self::SpookyDresser,
7859 "SkywareDresser" => Self::SkywareDresser,
7860 "HoneyDresser" => Self::HoneyDresser,
7861 "LihzahrdDresser" => Self::LihzahrdDresser,
7862 "Sofa" => Self::Sofa,
7863 "EbonwoodSofa" => Self::EbonwoodSofa,
7864 "RichMahoganySofa" => Self::RichMahoganySofa,
7865 "PearlwoodSofa" => Self::PearlwoodSofa,
7866 "ShadewoodSofa" => Self::ShadewoodSofa,
7867 "BlueDungeonSofa" => Self::BlueDungeonSofa,
7868 "GreenDungeonSofa" => Self::GreenDungeonSofa,
7869 "PinkDungeonSofa" => Self::PinkDungeonSofa,
7870 "GoldenSofa" => Self::GoldenSofa,
7871 "ObsidianSofa" => Self::ObsidianSofa,
7872 "BoneSofa" => Self::BoneSofa,
7873 "CactusSofa" => Self::CactusSofa,
7874 "SpookySofa" => Self::SpookySofa,
7875 "SkywareSofa" => Self::SkywareSofa,
7876 "HoneySofa" => Self::HoneySofa,
7877 "SteampunkSofa" => Self::SteampunkSofa,
7878 "MushroomSofa" => Self::MushroomSofa,
7879 "GlassSofa" => Self::GlassSofa,
7880 "PumpkinSofa" => Self::PumpkinSofa,
7881 "LihzahrdSofa" => Self::LihzahrdSofa,
7882 "SeashellHairpin" => Self::SeashellHairpin,
7883 "MermaidAdornment" => Self::MermaidAdornment,
7884 "MermaidTail" => Self::MermaidTail,
7885 "ZephyrFish" => Self::ZephyrFish,
7886 "Fleshcatcher" => Self::Fleshcatcher,
7887 "HotlineFishingHook" => Self::HotlineFishingHook,
7888 "FrogLeg" => Self::FrogLeg,
7889 "Anchor" => Self::Anchor,
7890 "CookedFish" => Self::CookedFish,
7891 "CookedShrimp" => Self::CookedShrimp,
7892 "Sashimi" => Self::Sashimi,
7893 "FuzzyCarrot" => Self::FuzzyCarrot,
7894 "ScalyTruffle" => Self::ScalyTruffle,
7895 "SlimySaddle" => Self::SlimySaddle,
7896 "BeeWax" => Self::BeeWax,
7897 "CopperPlatingWall" => Self::CopperPlatingWall,
7898 "StoneSlabWall" => Self::StoneSlabWall,
7899 "Sail" => Self::Sail,
7900 "CoralstoneBlock" => Self::CoralstoneBlock,
7901 "BlueJellyfish" => Self::BlueJellyfish,
7902 "GreenJellyfish" => Self::GreenJellyfish,
7903 "PinkJellyfish" => Self::PinkJellyfish,
7904 "BlueJellyfishJar" => Self::BlueJellyfishJar,
7905 "GreenJellyfishJar" => Self::GreenJellyfishJar,
7906 "PinkJellyfishJar" => Self::PinkJellyfishJar,
7907 "LifePreserver" => Self::LifePreserver,
7908 "ShipsWheel" => Self::ShipsWheel,
7909 "CompassRose" => Self::CompassRose,
7910 "WallAnchor" => Self::WallAnchor,
7911 "GoldfishTrophy" => Self::GoldfishTrophy,
7912 "BunnyfishTrophy" => Self::BunnyfishTrophy,
7913 "SwordfishTrophy" => Self::SwordfishTrophy,
7914 "SharkteethTrophy" => Self::SharkteethTrophy,
7915 "Batfish" => Self::Batfish,
7916 "BumblebeeTuna" => Self::BumblebeeTuna,
7917 "Catfish" => Self::Catfish,
7918 "Cloudfish" => Self::Cloudfish,
7919 "Cursedfish" => Self::Cursedfish,
7920 "Dirtfish" => Self::Dirtfish,
7921 "DynamiteFish" => Self::DynamiteFish,
7922 "EaterofPlankton" => Self::EaterOfPlankton,
7923 "FallenStarfish" => Self::FallenStarfish,
7924 "TheFishofCthulu" => Self::TheFishOfCthulu,
7925 "Fishotron" => Self::Fishotron,
7926 "Harpyfish" => Self::Harpyfish,
7927 "Hungerfish" => Self::Hungerfish,
7928 "Ichorfish" => Self::Ichorfish,
7929 "Jewelfish" => Self::Jewelfish,
7930 "MirageFish" => Self::MirageFish,
7931 "MutantFlinxfin" => Self::MutantFlinxfin,
7932 "Pengfish" => Self::Pengfish,
7933 "Pixiefish" => Self::Pixiefish,
7934 "Spiderfish" => Self::Spiderfish,
7935 "TundraTrout" => Self::TundraTrout,
7936 "UnicornFish" => Self::UnicornFish,
7937 "GuideVoodooFish" => Self::GuideVoodooFish,
7938 "Wyverntail" => Self::Wyverntail,
7939 "ZombieFish" => Self::ZombieFish,
7940 "AmanitaFungifin" => Self::AmanitaFungifin,
7941 "Angelfish" => Self::Angelfish,
7942 "BloodyManowar" => Self::BloodyManowar,
7943 "Bonefish" => Self::Bonefish,
7944 "Bunnyfish" => Self::Bunnyfish,
7945 "CapnTunabeard" => Self::CapnTunabeard,
7946 "Clownfish" => Self::Clownfish,
7947 "DemonicHellfish" => Self::DemonicHellfish,
7948 "Derpfish" => Self::Derpfish,
7949 "Fishron" => Self::Fishron,
7950 "InfectedScabbardfish" => Self::InfectedScabbardfish,
7951 "Mudfish" => Self::Mudfish,
7952 "Slimefish" => Self::Slimefish,
7953 "TropicalBarracuda" => Self::TropicalBarracuda,
7954 "KingSlimeTrophy" => Self::KingSlimeTrophy,
7955 "ShipInABottle" => Self::ShipInABottle,
7956 "HardySaddle" => Self::HardySaddle,
7957 "PressureTrack" => Self::PressureTrack,
7958 "KingSlimeMask" => Self::KingSlimeMask,
7959 "FinWings" => Self::FinWings,
7960 "TreasureMap" => Self::TreasureMap,
7961 "SeaweedPlanter" => Self::SeaweedPlanter,
7962 "PillaginMePixels" => Self::PillaginMePixels,
7963 "FishCostumeMask" => Self::FishCostumeMask,
7964 "FishCostumeShirt" => Self::FishCostumeShirt,
7965 "FishCostumeFinskirt" => Self::FishCostumeFinskirt,
7966 "GingerBeard" => Self::GingerBeard,
7967 "HoneyedGoggles" => Self::HoneyedGoggles,
7968 "BorealWood" => Self::BorealWood,
7969 "PalmWood" => Self::PalmWood,
7970 "BorealWoodWall" => Self::BorealWoodWall,
7971 "PalmWoodWall" => Self::PalmWoodWall,
7972 "BorealWoodFence" => Self::BorealWoodFence,
7973 "PalmWoodFence" => Self::PalmWoodFence,
7974 "BorealWoodHelmet" => Self::BorealWoodHelmet,
7975 "BorealWoodBreastplate" => Self::BorealWoodBreastplate,
7976 "BorealWoodGreaves" => Self::BorealWoodGreaves,
7977 "PalmWoodHelmet" => Self::PalmWoodHelmet,
7978 "PalmWoodBreastplate" => Self::PalmWoodBreastplate,
7979 "PalmWoodGreaves" => Self::PalmWoodGreaves,
7980 "PalmWoodBow" => Self::PalmWoodBow,
7981 "PalmWoodHammer" => Self::PalmWoodHammer,
7982 "PalmWoodSword" => Self::PalmWoodSword,
7983 "PalmWoodPlatform" => Self::PalmWoodPlatform,
7984 "PalmWoodBathtub" => Self::PalmWoodBathtub,
7985 "PalmWoodBed" => Self::PalmWoodBed,
7986 "PalmWoodBench" => Self::PalmWoodBench,
7987 "PalmWoodCandelabra" => Self::PalmWoodCandelabra,
7988 "PalmWoodCandle" => Self::PalmWoodCandle,
7989 "PalmWoodChair" => Self::PalmWoodChair,
7990 "PalmWoodChandelier" => Self::PalmWoodChandelier,
7991 "PalmWoodChest" => Self::PalmWoodChest,
7992 "PalmWoodSofa" => Self::PalmWoodSofa,
7993 "PalmWoodDoor" => Self::PalmWoodDoor,
7994 "PalmWoodDresser" => Self::PalmWoodDresser,
7995 "PalmWoodLantern" => Self::PalmWoodLantern,
7996 "PalmWoodPiano" => Self::PalmWoodPiano,
7997 "PalmWoodTable" => Self::PalmWoodTable,
7998 "PalmWoodLamp" => Self::PalmWoodLamp,
7999 "PalmWoodWorkBench" => Self::PalmWoodWorkBench,
8000 "OpticStaff" => Self::OpticStaff,
8001 "PalmWoodBookcase" => Self::PalmWoodBookcase,
8002 "MushroomBathtub" => Self::MushroomBathtub,
8003 "MushroomBed" => Self::MushroomBed,
8004 "MushroomBench" => Self::MushroomBench,
8005 "MushroomBookcase" => Self::MushroomBookcase,
8006 "MushroomCandelabra" => Self::MushroomCandelabra,
8007 "MushroomCandle" => Self::MushroomCandle,
8008 "MushroomChandelier" => Self::MushroomChandelier,
8009 "MushroomChest" => Self::MushroomChest,
8010 "MushroomDresser" => Self::MushroomDresser,
8011 "MushroomLantern" => Self::MushroomLantern,
8012 "MushroomLamp" => Self::MushroomLamp,
8013 "MushroomPiano" => Self::MushroomPiano,
8014 "MushroomPlatform" => Self::MushroomPlatform,
8015 "MushroomTable" => Self::MushroomTable,
8016 "SpiderStaff" => Self::SpiderStaff,
8017 "BorealWoodBathtub" => Self::BorealWoodBathtub,
8018 "BorealWoodBed" => Self::BorealWoodBed,
8019 "BorealWoodBookcase" => Self::BorealWoodBookcase,
8020 "BorealWoodCandelabra" => Self::BorealWoodCandelabra,
8021 "BorealWoodCandle" => Self::BorealWoodCandle,
8022 "BorealWoodChair" => Self::BorealWoodChair,
8023 "BorealWoodChandelier" => Self::BorealWoodChandelier,
8024 "BorealWoodChest" => Self::BorealWoodChest,
8025 "BorealWoodClock" => Self::BorealWoodClock,
8026 "BorealWoodDoor" => Self::BorealWoodDoor,
8027 "BorealWoodDresser" => Self::BorealWoodDresser,
8028 "BorealWoodLamp" => Self::BorealWoodLamp,
8029 "BorealWoodLantern" => Self::BorealWoodLantern,
8030 "BorealWoodPiano" => Self::BorealWoodPiano,
8031 "BorealWoodPlatform" => Self::BorealWoodPlatform,
8032 "SlimeBathtub" => Self::SlimeBathtub,
8033 "SlimeBed" => Self::SlimeBed,
8034 "SlimeBookcase" => Self::SlimeBookcase,
8035 "SlimeCandelabra" => Self::SlimeCandelabra,
8036 "SlimeCandle" => Self::SlimeCandle,
8037 "SlimeChair" => Self::SlimeChair,
8038 "SlimeChandelier" => Self::SlimeChandelier,
8039 "SlimeChest" => Self::SlimeChest,
8040 "SlimeClock" => Self::SlimeClock,
8041 "SlimeDoor" => Self::SlimeDoor,
8042 "SlimeDresser" => Self::SlimeDresser,
8043 "SlimeLamp" => Self::SlimeLamp,
8044 "SlimeLantern" => Self::SlimeLantern,
8045 "SlimePiano" => Self::SlimePiano,
8046 "SlimePlatform" => Self::SlimePlatform,
8047 "SlimeSofa" => Self::SlimeSofa,
8048 "SlimeTable" => Self::SlimeTable,
8049 "PirateStaff" => Self::PirateStaff,
8050 "SlimeHook" => Self::SlimeHook,
8051 "StickyGrenade" => Self::StickyGrenade,
8052 "TartarSauce" => Self::TartarSauce,
8053 "DukeFishronMask" => Self::DukeFishronMask,
8054 "DukeFishronTrophy" => Self::DukeFishronTrophy,
8055 "MolotovCocktail" => Self::MolotovCocktail,
8056 "BoneClock" => Self::BoneClock,
8057 "CactusClock" => Self::CactusClock,
8058 "EbonwoodClock" => Self::EbonwoodClock,
8059 "FrozenClock" => Self::FrozenClock,
8060 "LihzahrdClock" => Self::LihzahrdClock,
8061 "LivingWoodClock" => Self::LivingWoodClock,
8062 "RichMahoganyClock" => Self::RichMahoganyClock,
8063 "FleshClock" => Self::FleshClock,
8064 "MushroomClock" => Self::MushroomClock,
8065 "ObsidianClock" => Self::ObsidianClock,
8066 "PalmWoodClock" => Self::PalmWoodClock,
8067 "PearlwoodClock" => Self::PearlwoodClock,
8068 "PumpkinClock" => Self::PumpkinClock,
8069 "ShadewoodClock" => Self::ShadewoodClock,
8070 "SpookyClock" => Self::SpookyClock,
8071 "SkywareClock" => Self::SkywareClock,
8072 "SpiderFang" => Self::SpiderFang,
8073 "FalconBlade" => Self::FalconBlade,
8074 "FishronWings" => Self::FishronWings,
8075 "SlimeGun" => Self::SlimeGun,
8076 "Flairon" => Self::Flairon,
8077 "GreenDungeonChest" => Self::GreenDungeonChest,
8078 "PinkDungeonChest" => Self::PinkDungeonChest,
8079 "BlueDungeonChest" => Self::BlueDungeonChest,
8080 "BoneChest" => Self::BoneChest,
8081 "CactusChest" => Self::CactusChest,
8082 "FleshChest" => Self::FleshChest,
8083 "ObsidianChest" => Self::ObsidianChest,
8084 "PumpkinChest" => Self::PumpkinChest,
8085 "SpookyChest" => Self::SpookyChest,
8086 "TempestStaff" => Self::TempestStaff,
8087 "RazorbladeTyphoon" => Self::RazorbladeTyphoon,
8088 "BubbleGun" => Self::BubbleGun,
8089 "Tsunami" => Self::Tsunami,
8090 "Seashell" => Self::Seashell,
8091 "Starfish" => Self::Starfish,
8092 "SteampunkPlatform" => Self::SteampunkPlatform,
8093 "SkywarePlatform" => Self::SkywarePlatform,
8094 "LivingWoodPlatform" => Self::LivingWoodPlatform,
8095 "HoneyPlatform" => Self::HoneyPlatform,
8096 "SkywareWorkbench" => Self::SkywareWorkbench,
8097 "GlassWorkBench" => Self::GlassWorkBench,
8098 "LivingWoodWorkBench" => Self::LivingWoodWorkBench,
8099 "FleshSofa" => Self::FleshSofa,
8100 "FrozenSofa" => Self::FrozenSofa,
8101 "LivingWoodSofa" => Self::LivingWoodSofa,
8102 "PumpkinDresser" => Self::PumpkinDresser,
8103 "SteampunkDresser" => Self::SteampunkDresser,
8104 "GlassDresser" => Self::GlassDresser,
8105 "FleshDresser" => Self::FleshDresser,
8106 "PumpkinLantern" => Self::PumpkinLantern,
8107 "ObsidianLantern" => Self::ObsidianLantern,
8108 "PumpkinLamp" => Self::PumpkinLamp,
8109 "ObsidianLamp" => Self::ObsidianLamp,
8110 "BlueDungeonLamp" => Self::BlueDungeonLamp,
8111 "GreenDungeonLamp" => Self::GreenDungeonLamp,
8112 "PinkDungeonLamp" => Self::PinkDungeonLamp,
8113 "HoneyCandle" => Self::HoneyCandle,
8114 "SteampunkCandle" => Self::SteampunkCandle,
8115 "SpookyCandle" => Self::SpookyCandle,
8116 "ObsidianCandle" => Self::ObsidianCandle,
8117 "BlueDungeonChandelier" => Self::BlueDungeonChandelier,
8118 "GreenDungeonChandelier" => Self::GreenDungeonChandelier,
8119 "PinkDungeonChandelier" => Self::PinkDungeonChandelier,
8120 "SteampunkChandelier" => Self::SteampunkChandelier,
8121 "PumpkinChandelier" => Self::PumpkinChandelier,
8122 "ObsidianChandelier" => Self::ObsidianChandelier,
8123 "BlueDungeonBathtub" => Self::BlueDungeonBathtub,
8124 "GreenDungeonBathtub" => Self::GreenDungeonBathtub,
8125 "PinkDungeonBathtub" => Self::PinkDungeonBathtub,
8126 "PumpkinBathtub" => Self::PumpkinBathtub,
8127 "ObsidianBathtub" => Self::ObsidianBathtub,
8128 "GoldenBathtub" => Self::GoldenBathtub,
8129 "BlueDungeonCandelabra" => Self::BlueDungeonCandelabra,
8130 "GreenDungeonCandelabra" => Self::GreenDungeonCandelabra,
8131 "PinkDungeonCandelabra" => Self::PinkDungeonCandelabra,
8132 "ObsidianCandelabra" => Self::ObsidianCandelabra,
8133 "PumpkinCandelabra" => Self::PumpkinCandelabra,
8134 "PumpkinBed" => Self::PumpkinBed,
8135 "PumpkinBookcase" => Self::PumpkinBookcase,
8136 "PumpkinPiano" => Self::PumpkinPiano,
8137 "SharkStatue" => Self::SharkStatue,
8138 "TruffleWorm" => Self::TruffleWorm,
8139 "ApprenticeBait" => Self::ApprenticeBait,
8140 "JourneymanBait" => Self::JourneymanBait,
8141 "MasterBait" => Self::MasterBait,
8142 "AmberGemsparkWall" => Self::AmberGemsparkWall,
8143 "AmberGemsparkWallOff" => Self::AmberGemsparkWallOff,
8144 "AmethystGemsparkWall" => Self::AmethystGemsparkWall,
8145 "AmethystGemsparkWallOff" => Self::AmethystGemsparkWallOff,
8146 "DiamondGemsparkWall" => Self::DiamondGemsparkWall,
8147 "DiamondGemsparkWallOff" => Self::DiamondGemsparkWallOff,
8148 "EmeraldGemsparkWall" => Self::EmeraldGemsparkWall,
8149 "EmeraldGemsparkWallOff" => Self::EmeraldGemsparkWallOff,
8150 "RubyGemsparkWall" => Self::RubyGemsparkWall,
8151 "RubyGemsparkWallOff" => Self::RubyGemsparkWallOff,
8152 "SapphireGemsparkWall" => Self::SapphireGemsparkWall,
8153 "SapphireGemsparkWallOff" => Self::SapphireGemsparkWallOff,
8154 "TopazGemsparkWall" => Self::TopazGemsparkWall,
8155 "TopazGemsparkWallOff" => Self::TopazGemsparkWallOff,
8156 "TinPlatingWall" => Self::TinPlatingWall,
8157 "TinPlating" => Self::TinPlating,
8158 "WaterfallBlock" => Self::WaterfallBlock,
8159 "LavafallBlock" => Self::LavafallBlock,
8160 "ConfettiBlock" => Self::ConfettiBlock,
8161 "ConfettiWall" => Self::ConfettiWall,
8162 "ConfettiBlockBlack" => Self::ConfettiBlockBlack,
8163 "ConfettiWallBlack" => Self::ConfettiWallBlack,
8164 "WeaponRack" => Self::WeaponRack,
8165 "FireworksBox" => Self::FireworksBox,
8166 "LivingFireBlock" => Self::LivingFireBlock,
8167 "AlphabetStatue0" => Self::AlphabetStatue0,
8168 "AlphabetStatue1" => Self::AlphabetStatue1,
8169 "AlphabetStatue2" => Self::AlphabetStatue2,
8170 "AlphabetStatue3" => Self::AlphabetStatue3,
8171 "AlphabetStatue4" => Self::AlphabetStatue4,
8172 "AlphabetStatue5" => Self::AlphabetStatue5,
8173 "AlphabetStatue6" => Self::AlphabetStatue6,
8174 "AlphabetStatue7" => Self::AlphabetStatue7,
8175 "AlphabetStatue8" => Self::AlphabetStatue8,
8176 "AlphabetStatue9" => Self::AlphabetStatue9,
8177 "AlphabetStatueA" => Self::AlphabetStatueA,
8178 "AlphabetStatueB" => Self::AlphabetStatueB,
8179 "AlphabetStatueC" => Self::AlphabetStatueC,
8180 "AlphabetStatueD" => Self::AlphabetStatueD,
8181 "AlphabetStatueE" => Self::AlphabetStatueE,
8182 "AlphabetStatueF" => Self::AlphabetStatueF,
8183 "AlphabetStatueG" => Self::AlphabetStatueG,
8184 "AlphabetStatueH" => Self::AlphabetStatueH,
8185 "AlphabetStatueI" => Self::AlphabetStatueI,
8186 "AlphabetStatueJ" => Self::AlphabetStatueJ,
8187 "AlphabetStatueK" => Self::AlphabetStatueK,
8188 "AlphabetStatueL" => Self::AlphabetStatueL,
8189 "AlphabetStatueM" => Self::AlphabetStatueM,
8190 "AlphabetStatueN" => Self::AlphabetStatueN,
8191 "AlphabetStatueO" => Self::AlphabetStatueO,
8192 "AlphabetStatueP" => Self::AlphabetStatueP,
8193 "AlphabetStatueQ" => Self::AlphabetStatueQ,
8194 "AlphabetStatueR" => Self::AlphabetStatueR,
8195 "AlphabetStatueS" => Self::AlphabetStatueS,
8196 "AlphabetStatueT" => Self::AlphabetStatueT,
8197 "AlphabetStatueU" => Self::AlphabetStatueU,
8198 "AlphabetStatueV" => Self::AlphabetStatueV,
8199 "AlphabetStatueW" => Self::AlphabetStatueW,
8200 "AlphabetStatueX" => Self::AlphabetStatueX,
8201 "AlphabetStatueY" => Self::AlphabetStatueY,
8202 "AlphabetStatueZ" => Self::AlphabetStatueZ,
8203 "FireworkFountain" => Self::FireworkFountain,
8204 "BoosterTrack" => Self::BoosterTrack,
8205 "Grasshopper" => Self::Grasshopper,
8206 "GrasshopperCage" => Self::GrasshopperCage,
8207 "MusicBoxUndergroundCrimson" => Self::MusicBoxUndergroundCrimson,
8208 "CactusTable" => Self::CactusTable,
8209 "CactusPlatform" => Self::CactusPlatform,
8210 "BorealWoodSword" => Self::BorealWoodSword,
8211 "BorealWoodHammer" => Self::BorealWoodHammer,
8212 "BorealWoodBow" => Self::BorealWoodBow,
8213 "GlassChest" => Self::GlassChest,
8214 "XenoStaff" => Self::XenoStaff,
8215 "MeteorStaff" => Self::MeteorStaff,
8216 "LivingCursedFireBlock" => Self::LivingCursedFireBlock,
8217 "LivingDemonFireBlock" => Self::LivingDemonFireBlock,
8218 "LivingFrostFireBlock" => Self::LivingFrostFireBlock,
8219 "LivingIchorBlock" => Self::LivingIchorBlock,
8220 "LivingUltrabrightFireBlock" => Self::LivingUltrabrightFireBlock,
8221 "GenderChangePotion" => Self::GenderChangePotion,
8222 "VortexHelmet" => Self::VortexHelmet,
8223 "VortexBreastplate" => Self::VortexBreastplate,
8224 "VortexLeggings" => Self::VortexLeggings,
8225 "NebulaHelmet" => Self::NebulaHelmet,
8226 "NebulaBreastplate" => Self::NebulaBreastplate,
8227 "NebulaLeggings" => Self::NebulaLeggings,
8228 "SolarFlareHelmet" => Self::SolarFlareHelmet,
8229 "SolarFlareBreastplate" => Self::SolarFlareBreastplate,
8230 "SolarFlareLeggings" => Self::SolarFlareLeggings,
8231 "LunarTabletFragment" => Self::LunarTabletFragment,
8232 "SolarTablet" => Self::SolarTablet,
8233 "DrillContainmentUnit" => Self::DrillContainmentUnit,
8234 "CosmicCarKey" => Self::CosmicCarKey,
8235 "MothronWings" => Self::MothronWings,
8236 "BrainScrambler" => Self::BrainScrambler,
8237 "VortexAxe" => Self::VortexAxe,
8238 "VortexChainsaw" => Self::VortexChainsaw,
8239 "VortexDrill" => Self::VortexDrill,
8240 "VortexHammer" => Self::VortexHammer,
8241 "VortexPickaxe" => Self::VortexPickaxe,
8242 "NebulaAxe" => Self::NebulaAxe,
8243 "NebulaChainsaw" => Self::NebulaChainsaw,
8244 "NebulaDrill" => Self::NebulaDrill,
8245 "NebulaHammer" => Self::NebulaHammer,
8246 "NebulaPickaxe" => Self::NebulaPickaxe,
8247 "SolarFlareAxe" => Self::SolarFlareAxe,
8248 "SolarFlareChainsaw" => Self::SolarFlareChainsaw,
8249 "SolarFlareDrill" => Self::SolarFlareDrill,
8250 "SolarFlareHammer" => Self::SolarFlareHammer,
8251 "SolarFlarePickaxe" => Self::SolarFlarePickaxe,
8252 "HoneyfallBlock" => Self::HoneyfallBlock,
8253 "HoneyfallWall" => Self::HoneyfallWall,
8254 "ChlorophyteBrickWall" => Self::ChlorophyteBrickWall,
8255 "CrimtaneBrickWall" => Self::CrimtaneBrickWall,
8256 "ShroomitePlatingWall" => Self::ShroomitePlatingWall,
8257 "ChlorophyteBrick" => Self::ChlorophyteBrick,
8258 "CrimtaneBrick" => Self::CrimtaneBrick,
8259 "ShroomitePlating" => Self::ShroomitePlating,
8260 "LaserMachinegun" => Self::LaserMachinegun,
8261 "ElectrosphereLauncher" => Self::ElectrosphereLauncher,
8262 "Xenopopper" => Self::Xenopopper,
8263 "LaserDrill" => Self::LaserDrill,
8264 "LaserRuler" => Self::LaserRuler,
8265 "AntiGravityHook" => Self::AntiGravityHook,
8266 "MoonMask" => Self::MoonMask,
8267 "SunMask" => Self::SunMask,
8268 "MartianCostumeMask" => Self::MartianCostumeMask,
8269 "MartianCostumeShirt" => Self::MartianCostumeShirt,
8270 "MartianCostumePants" => Self::MartianCostumePants,
8271 "MartianUniformHelmet" => Self::MartianUniformHelmet,
8272 "MartianUniformTorso" => Self::MartianUniformTorso,
8273 "MartianUniformPants" => Self::MartianUniformPants,
8274 "MartianAstroClock" => Self::MartianAstroClock,
8275 "MartianBathtub" => Self::MartianBathtub,
8276 "MartianBed" => Self::MartianBed,
8277 "MartianHoverChair" => Self::MartianHoverChair,
8278 "MartianChandelier" => Self::MartianChandelier,
8279 "MartianChest" => Self::MartianChest,
8280 "MartianDoor" => Self::MartianDoor,
8281 "MartianDresser" => Self::MartianDresser,
8282 "MartianHolobookcase" => Self::MartianHolobookcase,
8283 "MartianHoverCandle" => Self::MartianHoverCandle,
8284 "MartianLamppost" => Self::MartianLamppost,
8285 "MartianLantern" => Self::MartianLantern,
8286 "MartianPiano" => Self::MartianPiano,
8287 "MartianPlatform" => Self::MartianPlatform,
8288 "MartianSofa" => Self::MartianSofa,
8289 "MartianTable" => Self::MartianTable,
8290 "MartianTableLamp" => Self::MartianTableLamp,
8291 "MartianWorkBench" => Self::MartianWorkBench,
8292 "WoodenSink" => Self::WoodenSink,
8293 "EbonwoodSink" => Self::EbonwoodSink,
8294 "RichMahoganySink" => Self::RichMahoganySink,
8295 "PearlwoodSink" => Self::PearlwoodSink,
8296 "BoneSink" => Self::BoneSink,
8297 "FleshSink" => Self::FleshSink,
8298 "LivingWoodSink" => Self::LivingWoodSink,
8299 "SkywareSink" => Self::SkywareSink,
8300 "ShadewoodSink" => Self::ShadewoodSink,
8301 "LihzahrdSink" => Self::LihzahrdSink,
8302 "BlueDungeonSink" => Self::BlueDungeonSink,
8303 "GreenDungeonSink" => Self::GreenDungeonSink,
8304 "PinkDungeonSink" => Self::PinkDungeonSink,
8305 "ObsidianSink" => Self::ObsidianSink,
8306 "MetalSink" => Self::MetalSink,
8307 "GlassSink" => Self::GlassSink,
8308 "GoldenSink" => Self::GoldenSink,
8309 "HoneySink" => Self::HoneySink,
8310 "SteampunkSink" => Self::SteampunkSink,
8311 "PumpkinSink" => Self::PumpkinSink,
8312 "SpookySink" => Self::SpookySink,
8313 "FrozenSink" => Self::FrozenSink,
8314 "DynastySink" => Self::DynastySink,
8315 "PalmWoodSink" => Self::PalmWoodSink,
8316 "MushroomSink" => Self::MushroomSink,
8317 "BorealWoodSink" => Self::BorealWoodSink,
8318 "SlimeSink" => Self::SlimeSink,
8319 "CactusSink" => Self::CactusSink,
8320 "MartianSink" => Self::MartianSink,
8321 "WhiteLunaticHood" => Self::WhiteLunaticHood,
8322 "BlueLunaticHood" => Self::BlueLunaticHood,
8323 "WhiteLunaticRobe" => Self::WhiteLunaticRobe,
8324 "BlueLunaticRobe" => Self::BlueLunaticRobe,
8325 "MartianConduitPlating" => Self::MartianConduitPlating,
8326 "MartianConduitWall" => Self::MartianConduitWall,
8327 "HiTekSunglasses" => Self::HiTekSunglasses,
8328 "MartianHairDye" => Self::MartianHairDye,
8329 "MartianArmorDye" => Self::MartianArmorDye,
8330 "PaintingCastleMarsberg" => Self::PaintingCastleMarsberg,
8331 "PaintingMartiaLisa" => Self::PaintingMartiaLisa,
8332 "PaintingTheTruthIsUpThere" => Self::PaintingTheTruthIsUpThere,
8333 "SmokeBlock" => Self::SmokeBlock,
8334 "LivingFlameDye" => Self::LivingFlameDye,
8335 "LivingRainbowDye" => Self::LivingRainbowDye,
8336 "ShadowDye" => Self::ShadowDye,
8337 "NegativeDye" => Self::NegativeDye,
8338 "LivingOceanDye" => Self::LivingOceanDye,
8339 "BrownDye" => Self::BrownDye,
8340 "BrownAndBlackDye" => Self::BrownAndBlackDye,
8341 "BrightBrownDye" => Self::BrightBrownDye,
8342 "BrownAndSilverDye" => Self::BrownAndSilverDye,
8343 "WispDye" => Self::WispDye,
8344 "PixieDye" => Self::PixieDye,
8345 "InfluxWaver" => Self::InfluxWaver,
8346 "PhasicWarpEjector" => Self::PhasicWarpEjector,
8347 "ChargedBlasterCannon" => Self::ChargedBlasterCannon,
8348 "ChlorophyteDye" => Self::ChlorophyteDye,
8349 "UnicornWispDye" => Self::UnicornWispDye,
8350 "InfernalWispDye" => Self::InfernalWispDye,
8351 "ViciousPowder" => Self::ViciousPowder,
8352 "ViciousMushroom" => Self::ViciousMushroom,
8353 "BeesKnees" => Self::BeesKnees,
8354 "GoldBird" => Self::GoldBird,
8355 "GoldBunny" => Self::GoldBunny,
8356 "GoldButterfly" => Self::GoldButterfly,
8357 "GoldFrog" => Self::GoldFrog,
8358 "GoldGrasshopper" => Self::GoldGrasshopper,
8359 "GoldMouse" => Self::GoldMouse,
8360 "GoldWorm" => Self::GoldWorm,
8361 "StickyDynamite" => Self::StickyDynamite,
8362 "AngryTrapperBanner" => Self::AngryTrapperBanner,
8363 "ArmoredVikingBanner" => Self::ArmoredVikingBanner,
8364 "BlackSlimeBanner" => Self::BlackSlimeBanner,
8365 "BlueArmoredBonesBanner" => Self::BlueArmoredBonesBanner,
8366 "BlueCultistArcherBanner" => Self::BlueCultistArcherBanner,
8367 "BlueCultistCasterBanner" => Self::BlueCultistCasterBanner,
8368 "BlueCultistFighterBanner" => Self::BlueCultistFighterBanner,
8369 "BoneLeeBanner" => Self::BoneLeeBanner,
8370 "ClingerBanner" => Self::ClingerBanner,
8371 "CochinealBeetleBanner" => Self::CochinealBeetleBanner,
8372 "CorruptPenguinBanner" => Self::CorruptPenguinBanner,
8373 "CorruptSlimeBanner" => Self::CorruptSlimeBanner,
8374 "CorruptorBanner" => Self::CorruptorBanner,
8375 "CrimslimeBanner" => Self::CrimslimeBanner,
8376 "CursedSkullBanner" => Self::CursedSkullBanner,
8377 "CyanBeetleBanner" => Self::CyanBeetleBanner,
8378 "DevourerBanner" => Self::DevourerBanner,
8379 "DiablolistBanner" => Self::DiablolistBanner,
8380 "DoctorBonesBanner" => Self::DoctorBonesBanner,
8381 "DungeonSlimeBanner" => Self::DungeonSlimeBanner,
8382 "DungeonSpiritBanner" => Self::DungeonSpiritBanner,
8383 "ElfArcherBanner" => Self::ElfArcherBanner,
8384 "ElfCopterBanner" => Self::ElfCopterBanner,
8385 "EyezorBanner" => Self::EyezorBanner,
8386 "FlockoBanner" => Self::FlockoBanner,
8387 "GhostBanner" => Self::GhostBanner,
8388 "GiantBatBanner" => Self::GiantBatBanner,
8389 "GiantCursedSkullBanner" => Self::GiantCursedSkullBanner,
8390 "GiantFlyingFoxBanner" => Self::GiantFlyingFoxBanner,
8391 "GingerbreadManBanner" => Self::GingerbreadManBanner,
8392 "GoblinArcherBanner" => Self::GoblinArcherBanner,
8393 "GreenSlimeBanner" => Self::GreenSlimeBanner,
8394 "HeadlessHorsemanBanner" => Self::HeadlessHorsemanBanner,
8395 "HellArmoredBonesBanner" => Self::HellArmoredBonesBanner,
8396 "HellhoundBanner" => Self::HellhoundBanner,
8397 "HoppinJackBanner" => Self::HoppinJackBanner,
8398 "IceBatBanner" => Self::IceBatBanner,
8399 "IceGolemBanner" => Self::IceGolemBanner,
8400 "IceSlimeBanner" => Self::IceSlimeBanner,
8401 "IchorStickerBanner" => Self::IchorStickerBanner,
8402 "IlluminantBatBanner" => Self::IlluminantBatBanner,
8403 "IlluminantSlimeBanner" => Self::IlluminantSlimeBanner,
8404 "JungleBatBanner" => Self::JungleBatBanner,
8405 "JungleSlimeBanner" => Self::JungleSlimeBanner,
8406 "KrampusBanner" => Self::KrampusBanner,
8407 "LacBeetleBanner" => Self::LacBeetleBanner,
8408 "LavaBatBanner" => Self::LavaBatBanner,
8409 "LavaSlimeBanner" => Self::LavaSlimeBanner,
8410 "MartianBrainscramblerBanner" => Self::MartianBrainscramblerBanner,
8411 "MartianDroneBanner" => Self::MartianDroneBanner,
8412 "MartianEngineerBanner" => Self::MartianEngineerBanner,
8413 "MartianGigazapperBanner" => Self::MartianGigazapperBanner,
8414 "MartianGreyGruntBanner" => Self::MartianGreyGruntBanner,
8415 "MartianOfficerBanner" => Self::MartianOfficerBanner,
8416 "MartianRaygunnerBanner" => Self::MartianRaygunnerBanner,
8417 "MartianScutlixGunnerBanner" => Self::MartianScutlixGunnerBanner,
8418 "MartianTeslaTurretBanner" => Self::MartianTeslaTurretBanner,
8419 "MisterStabbyBanner" => Self::MisterStabbyBanner,
8420 "MotherSlimeBanner" => Self::MotherSlimeBanner,
8421 "NecromancerBanner" => Self::NecromancerBanner,
8422 "NutcrackerBanner" => Self::NutcrackerBanner,
8423 "PaladinBanner" => Self::PaladinBanner,
8424 "PenguinBanner" => Self::PenguinBanner,
8425 "PinkyBanner" => Self::PinkyBanner,
8426 "PoltergeistBanner" => Self::PoltergeistBanner,
8427 "PossessedArmorBanner" => Self::PossessedArmorBanner,
8428 "PresentMimicBanner" => Self::PresentMimicBanner,
8429 "PurpleSlimeBanner" => Self::PurpleSlimeBanner,
8430 "RaggedCasterBanner" => Self::RaggedCasterBanner,
8431 "RainbowSlimeBanner" => Self::RainbowSlimeBanner,
8432 "RavenBanner" => Self::RavenBanner,
8433 "RedSlimeBanner" => Self::RedSlimeBanner,
8434 "RuneWizardBanner" => Self::RuneWizardBanner,
8435 "RustyArmoredBonesBanner" => Self::RustyArmoredBonesBanner,
8436 "ScarecrowBanner" => Self::ScarecrowBanner,
8437 "ScutlixBanner" => Self::ScutlixBanner,
8438 "SkeletonArcherBanner" => Self::SkeletonArcherBanner,
8439 "SkeletonCommandoBanner" => Self::SkeletonCommandoBanner,
8440 "SkeletonSniperBanner" => Self::SkeletonSniperBanner,
8441 "SlimerBanner" => Self::SlimerBanner,
8442 "SnatcherBanner" => Self::SnatcherBanner,
8443 "SnowBallaBanner" => Self::SnowBallaBanner,
8444 "SnowmanGangstaBanner" => Self::SnowmanGangstaBanner,
8445 "SpikedIceSlimeBanner" => Self::SpikedIceSlimeBanner,
8446 "SpikedJungleSlimeBanner" => Self::SpikedJungleSlimeBanner,
8447 "SplinterlingBanner" => Self::SplinterlingBanner,
8448 "SquidBanner" => Self::SquidBanner,
8449 "TacticalSkeletonBanner" => Self::TacticalSkeletonBanner,
8450 "TheGroomBanner" => Self::TheGroomBanner,
8451 "TimBanner" => Self::TimBanner,
8452 "UndeadMinerBanner" => Self::UndeadMinerBanner,
8453 "UndeadVikingBanner" => Self::UndeadVikingBanner,
8454 "WhiteCultistArcherBanner" => Self::WhiteCultistArcherBanner,
8455 "WhiteCultistCasterBanner" => Self::WhiteCultistCasterBanner,
8456 "WhiteCultistFighterBanner" => Self::WhiteCultistFighterBanner,
8457 "YellowSlimeBanner" => Self::YellowSlimeBanner,
8458 "YetiBanner" => Self::YetiBanner,
8459 "ZombieElfBanner" => Self::ZombieElfBanner,
8460 "SparkyPainting" => Self::SparkyPainting,
8461 "VineRope" => Self::VineRope,
8462 "WormholePotion" => Self::WormholePotion,
8463 "SummonerEmblem" => Self::SummonerEmblem,
8464 "BewitchingTable" => Self::BewitchingTable,
8465 "AlchemyTable" => Self::AlchemyTable,
8466 "StrangeBrew" => Self::StrangeBrew,
8467 "SpelunkerGlowstick" => Self::SpelunkerGlowstick,
8468 "BoneArrow" => Self::BoneArrow,
8469 "BoneTorch" => Self::BoneTorch,
8470 "VineRopeCoil" => Self::VineRopeCoil,
8471 "SoulDrain" => Self::SoulDrain,
8472 "DartPistol" => Self::DartPistol,
8473 "DartRifle" => Self::DartRifle,
8474 "CrystalDart" => Self::CrystalDart,
8475 "CursedDart" => Self::CursedDart,
8476 "IchorDart" => Self::IchorDart,
8477 "ChainGuillotines" => Self::ChainGuillotines,
8478 "FetidBaghnakhs" => Self::FetidBaghnakhs,
8479 "ClingerStaff" => Self::ClingerStaff,
8480 "PutridScent" => Self::PutridScent,
8481 "FleshKnuckles" => Self::FleshKnuckles,
8482 "FlowerBoots" => Self::FlowerBoots,
8483 "Seedler" => Self::Seedler,
8484 "HellwingBow" => Self::HellwingBow,
8485 "TendonHook" => Self::TendonHook,
8486 "ThornHook" => Self::ThornHook,
8487 "IlluminantHook" => Self::IlluminantHook,
8488 "WormHook" => Self::WormHook,
8489 "DevDye" => Self::DevDye,
8490 "PurpleOozeDye" => Self::PurpleOozeDye,
8491 "ReflectiveSilverDye" => Self::ReflectiveSilverDye,
8492 "ReflectiveGoldDye" => Self::ReflectiveGoldDye,
8493 "BlueAcidDye" => Self::BlueAcidDye,
8494 "DaedalusStormbow" => Self::DaedalusStormbow,
8495 "FlyingKnife" => Self::FlyingKnife,
8496 "BottomlessBucket" => Self::BottomlessBucket,
8497 "SuperAbsorbantSponge" => Self::SuperAbsorbantSponge,
8498 "GoldRing" => Self::GoldRing,
8499 "CoinRing" => Self::CoinRing,
8500 "GreedyRing" => Self::GreedyRing,
8501 "FishFinder" => Self::FishFinder,
8502 "WeatherRadio" => Self::WeatherRadio,
8503 "HadesDye" => Self::HadesDye,
8504 "TwilightDye" => Self::TwilightDye,
8505 "AcidDye" => Self::AcidDye,
8506 "MushroomDye" => Self::MushroomDye,
8507 "PhaseDye" => Self::PhaseDye,
8508 "MagicLantern" => Self::MagicLantern,
8509 "MusicBoxLunarBoss" => Self::MusicBoxLunarBoss,
8510 "RainbowTorch" => Self::RainbowTorch,
8511 "CursedCampfire" => Self::CursedCampfire,
8512 "DemonCampfire" => Self::DemonCampfire,
8513 "FrozenCampfire" => Self::FrozenCampfire,
8514 "IchorCampfire" => Self::IchorCampfire,
8515 "RainbowCampfire" => Self::RainbowCampfire,
8516 "CrystalVileShard" => Self::CrystalVileShard,
8517 "ShadowFlameBow" => Self::ShadowFlameBow,
8518 "ShadowFlameHexDoll" => Self::ShadowFlameHexDoll,
8519 "ShadowFlameKnife" => Self::ShadowFlameKnife,
8520 "PaintingAcorns" => Self::PaintingAcorns,
8521 "PaintingColdSnap" => Self::PaintingColdSnap,
8522 "PaintingCursedSaint" => Self::PaintingCursedSaint,
8523 "PaintingSnowfellas" => Self::PaintingSnowfellas,
8524 "PaintingTheSeason" => Self::PaintingTheSeason,
8525 "BoneRattle" => Self::BoneRattle,
8526 "ArchitectGizmoPack" => Self::ArchitectGizmoPack,
8527 "CrimsonHeart" => Self::CrimsonHeart,
8528 "Meowmere" => Self::Meowmere,
8529 "Sundial" => Self::Sundial,
8530 "StarWrath" => Self::StarWrath,
8531 "MarbleBlock" => Self::MarbleBlock,
8532 "HellstoneBrickWall" => Self::HellstoneBrickWall,
8533 "CordageGuide" => Self::CordageGuide,
8534 "WandofSparking" => Self::WandOfSparking,
8535 "GoldBirdCage" => Self::GoldBirdCage,
8536 "GoldBunnyCage" => Self::GoldBunnyCage,
8537 "GoldButterflyCage" => Self::GoldButterflyCage,
8538 "GoldFrogCage" => Self::GoldFrogCage,
8539 "GoldGrasshopperCage" => Self::GoldGrasshopperCage,
8540 "GoldMouseCage" => Self::GoldMouseCage,
8541 "GoldWormCage" => Self::GoldWormCage,
8542 "SilkRope" => Self::SilkRope,
8543 "WebRope" => Self::WebRope,
8544 "SilkRopeCoil" => Self::SilkRopeCoil,
8545 "WebRopeCoil" => Self::WebRopeCoil,
8546 "Marble" => Self::Marble,
8547 "MarbleWall" => Self::MarbleWall,
8548 "MarbleBlockWall" => Self::MarbleBlockWall,
8549 "Radar" => Self::Radar,
8550 "LockBox" => Self::LockBox,
8551 "Granite" => Self::Granite,
8552 "GraniteBlock" => Self::GraniteBlock,
8553 "GraniteWall" => Self::GraniteWall,
8554 "GraniteBlockWall" => Self::GraniteBlockWall,
8555 "RoyalGel" => Self::RoyalGel,
8556 "NightKey" => Self::NightKey,
8557 "LightKey" => Self::LightKey,
8558 "HerbBag" => Self::HerbBag,
8559 "Javelin" => Self::Javelin,
8560 "TallyCounter" => Self::TallyCounter,
8561 "Sextant" => Self::Sextant,
8562 "EoCShield" => Self::EoCShield,
8563 "ButchersChainsaw" => Self::ButchersChainsaw,
8564 "Stopwatch" => Self::Stopwatch,
8565 "MeteoriteBrick" => Self::MeteoriteBrick,
8566 "MeteoriteBrickWall" => Self::MeteoriteBrickWall,
8567 "MetalDetector" => Self::MetalDetector,
8568 "EndlessQuiver" => Self::EndlessQuiver,
8569 "EndlessMusketPouch" => Self::EndlessMusketPouch,
8570 "ToxicFlask" => Self::ToxicFlask,
8571 "PsychoKnife" => Self::PsychoKnife,
8572 "NailGun" => Self::NailGun,
8573 "Nail" => Self::Nail,
8574 "NightVisionHelmet" => Self::NightVisionHelmet,
8575 "CelestialShell" => Self::CelestialShell,
8576 "PinkGel" => Self::PinkGel,
8577 "BouncyGlowstick" => Self::BouncyGlowstick,
8578 "PinkSlimeBlock" => Self::PinkSlimeBlock,
8579 "PinkTorch" => Self::PinkTorch,
8580 "BouncyBomb" => Self::BouncyBomb,
8581 "BouncyGrenade" => Self::BouncyGrenade,
8582 "PeaceCandle" => Self::PeaceCandle,
8583 "LifeformAnalyzer" => Self::LifeformAnalyzer,
8584 "DPSMeter" => Self::DPSMeter,
8585 "FishermansGuide" => Self::FishermansGuide,
8586 "GoblinTech" => Self::GoblinTech,
8587 "REK" => Self::Rek,
8588 "PDA" => Self::Pda,
8589 "CellPhone" => Self::CellPhone,
8590 "GraniteChest" => Self::GraniteChest,
8591 "MeteoriteClock" => Self::MeteoriteClock,
8592 "MarbleClock" => Self::MarbleClock,
8593 "GraniteClock" => Self::GraniteClock,
8594 "MeteoriteDoor" => Self::MeteoriteDoor,
8595 "MarbleDoor" => Self::MarbleDoor,
8596 "GraniteDoor" => Self::GraniteDoor,
8597 "MeteoriteDresser" => Self::MeteoriteDresser,
8598 "MarbleDresser" => Self::MarbleDresser,
8599 "GraniteDresser" => Self::GraniteDresser,
8600 "MeteoriteLamp" => Self::MeteoriteLamp,
8601 "MarbleLamp" => Self::MarbleLamp,
8602 "GraniteLamp" => Self::GraniteLamp,
8603 "MeteoriteLantern" => Self::MeteoriteLantern,
8604 "MarbleLantern" => Self::MarbleLantern,
8605 "GraniteLantern" => Self::GraniteLantern,
8606 "MeteoritePiano" => Self::MeteoritePiano,
8607 "MarblePiano" => Self::MarblePiano,
8608 "GranitePiano" => Self::GranitePiano,
8609 "MeteoritePlatform" => Self::MeteoritePlatform,
8610 "MarblePlatform" => Self::MarblePlatform,
8611 "GranitePlatform" => Self::GranitePlatform,
8612 "MeteoriteSink" => Self::MeteoriteSink,
8613 "MarbleSink" => Self::MarbleSink,
8614 "GraniteSink" => Self::GraniteSink,
8615 "MeteoriteSofa" => Self::MeteoriteSofa,
8616 "MarbleSofa" => Self::MarbleSofa,
8617 "GraniteSofa" => Self::GraniteSofa,
8618 "MeteoriteTable" => Self::MeteoriteTable,
8619 "MarbleTable" => Self::MarbleTable,
8620 "GraniteTable" => Self::GraniteTable,
8621 "MeteoriteWorkBench" => Self::MeteoriteWorkBench,
8622 "MarbleWorkBench" => Self::MarbleWorkBench,
8623 "GraniteWorkBench" => Self::GraniteWorkBench,
8624 "MeteoriteBathtub" => Self::MeteoriteBathtub,
8625 "MarbleBathtub" => Self::MarbleBathtub,
8626 "GraniteBathtub" => Self::GraniteBathtub,
8627 "MeteoriteBed" => Self::MeteoriteBed,
8628 "MarbleBed" => Self::MarbleBed,
8629 "GraniteBed" => Self::GraniteBed,
8630 "MeteoriteBookcase" => Self::MeteoriteBookcase,
8631 "MarbleBookcase" => Self::MarbleBookcase,
8632 "GraniteBookcase" => Self::GraniteBookcase,
8633 "MeteoriteCandelabra" => Self::MeteoriteCandelabra,
8634 "MarbleCandelabra" => Self::MarbleCandelabra,
8635 "GraniteCandelabra" => Self::GraniteCandelabra,
8636 "MeteoriteCandle" => Self::MeteoriteCandle,
8637 "MarbleCandle" => Self::MarbleCandle,
8638 "GraniteCandle" => Self::GraniteCandle,
8639 "MeteoriteChair" => Self::MeteoriteChair,
8640 "MarbleChair" => Self::MarbleChair,
8641 "GraniteChair" => Self::GraniteChair,
8642 "MeteoriteChandelier" => Self::MeteoriteChandelier,
8643 "MarbleChandelier" => Self::MarbleChandelier,
8644 "GraniteChandelier" => Self::GraniteChandelier,
8645 "MeteoriteChest" => Self::MeteoriteChest,
8646 "MarbleChest" => Self::MarbleChest,
8647 "MagicWaterDropper" => Self::MagicWaterDropper,
8648 "GoldenBugNet" => Self::GoldenBugNet,
8649 "MagicLavaDropper" => Self::MagicLavaDropper,
8650 "MagicHoneyDropper" => Self::MagicHoneyDropper,
8651 "EmptyDropper" => Self::EmptyDropper,
8652 "GladiatorHelmet" => Self::GladiatorHelmet,
8653 "GladiatorBreastplate" => Self::GladiatorBreastplate,
8654 "GladiatorLeggings" => Self::GladiatorLeggings,
8655 "ReflectiveDye" => Self::ReflectiveDye,
8656 "EnchantedNightcrawler" => Self::EnchantedNightcrawler,
8657 "Grubby" => Self::Grubby,
8658 "Sluggy" => Self::Sluggy,
8659 "Buggy" => Self::Buggy,
8660 "GrubSoup" => Self::GrubSoup,
8661 "BombFish" => Self::BombFish,
8662 "FrostDaggerfish" => Self::FrostDaggerfish,
8663 "SharpeningStation" => Self::SharpeningStation,
8664 "IceMirror" => Self::IceMirror,
8665 "SailfishBoots" => Self::SailfishBoots,
8666 "TsunamiInABottle" => Self::TsunamiInABottle,
8667 "TargetDummy" => Self::TargetDummy,
8668 "CorruptFishingCrate" => Self::CorruptFishingCrate,
8669 "CrimsonFishingCrate" => Self::CrimsonFishingCrate,
8670 "DungeonFishingCrate" => Self::DungeonFishingCrate,
8671 "FloatingIslandFishingCrate" => Self::FloatingIslandFishingCrate,
8672 "HallowedFishingCrate" => Self::HallowedFishingCrate,
8673 "JungleFishingCrate" => Self::JungleFishingCrate,
8674 "CrystalSerpent" => Self::CrystalSerpent,
8675 "Toxikarp" => Self::Toxikarp,
8676 "Bladetongue" => Self::Bladetongue,
8677 "SharkToothNecklace" => Self::SharkToothNecklace,
8678 "MoneyTrough" => Self::MoneyTrough,
8679 "Bubble" => Self::Bubble,
8680 "DayBloomPlanterBox" => Self::DayBloomPlanterBox,
8681 "MoonglowPlanterBox" => Self::MoonglowPlanterBox,
8682 "CorruptPlanterBox" => Self::CorruptPlanterBox,
8683 "CrimsonPlanterBox" => Self::CrimsonPlanterBox,
8684 "BlinkrootPlanterBox" => Self::BlinkrootPlanterBox,
8685 "WaterleafPlanterBox" => Self::WaterleafPlanterBox,
8686 "ShiverthornPlanterBox" => Self::ShiverthornPlanterBox,
8687 "FireBlossomPlanterBox" => Self::FireBlossomPlanterBox,
8688 "BrainOfConfusion" => Self::BrainOfConfusion,
8689 "WormScarf" => Self::WormScarf,
8690 "BalloonPufferfish" => Self::BalloonPufferfish,
8691 "BejeweledValkyrieHead" => Self::BejeweledValkyrieHead,
8692 "BejeweledValkyrieBody" => Self::BejeweledValkyrieBody,
8693 "BejeweledValkyrieWing" => Self::BejeweledValkyrieWing,
8694 "RichGravestone1" => Self::RichGravestone1,
8695 "RichGravestone2" => Self::RichGravestone2,
8696 "RichGravestone3" => Self::RichGravestone3,
8697 "RichGravestone4" => Self::RichGravestone4,
8698 "RichGravestone5" => Self::RichGravestone5,
8699 "CrystalBlock" => Self::CrystalBlock,
8700 "MusicBoxMartians" => Self::MusicBoxMartians,
8701 "MusicBoxPirates" => Self::MusicBoxPirates,
8702 "MusicBoxHell" => Self::MusicBoxHell,
8703 "CrystalBlockWall" => Self::CrystalBlockWall,
8704 "Trapdoor" => Self::Trapdoor,
8705 "TallGate" => Self::TallGate,
8706 "SharkronBalloon" => Self::SharkronBalloon,
8707 "TaxCollectorHat" => Self::TaxCollectorHat,
8708 "TaxCollectorSuit" => Self::TaxCollectorSuit,
8709 "TaxCollectorPants" => Self::TaxCollectorPants,
8710 "BoneGlove" => Self::BoneGlove,
8711 "ClothierJacket" => Self::ClothierJacket,
8712 "ClothierPants" => Self::ClothierPants,
8713 "DyeTraderTurban" => Self::DyeTraderTurban,
8714 "DeadlySphereStaff" => Self::DeadlySphereStaff,
8715 "BalloonHorseshoeFart" => Self::BalloonHorseshoeFart,
8716 "BalloonHorseshoeHoney" => Self::BalloonHorseshoeHoney,
8717 "BalloonHorseshoeSharkron" => Self::BalloonHorseshoeSharkron,
8718 "LavaLamp" => Self::LavaLamp,
8719 "CageEnchantedNightcrawler" => Self::CageEnchantedNightcrawler,
8720 "CageBuggy" => Self::CageBuggy,
8721 "CageGrubby" => Self::CageGrubby,
8722 "CageSluggy" => Self::CageSluggy,
8723 "SlapHand" => Self::SlapHand,
8724 "TwilightHairDye" => Self::TwilightHairDye,
8725 "BlessedApple" => Self::BlessedApple,
8726 "SpectreBar" => Self::SpectreBar,
8727 "Code1" => Self::Code1,
8728 "BuccaneerBandana" => Self::BuccaneerBandana,
8729 "BuccaneerShirt" => Self::BuccaneerShirt,
8730 "BuccaneerPants" => Self::BuccaneerPants,
8731 "ObsidianHelm" => Self::ObsidianHelm,
8732 "ObsidianShirt" => Self::ObsidianShirt,
8733 "ObsidianPants" => Self::ObsidianPants,
8734 "MedusaHead" => Self::MedusaHead,
8735 "ItemFrame" => Self::ItemFrame,
8736 "Sandstone" => Self::Sandstone,
8737 "HardenedSand" => Self::HardenedSand,
8738 "SandstoneWall" => Self::SandstoneWall,
8739 "CorruptHardenedSand" => Self::CorruptHardenedSand,
8740 "CrimsonHardenedSand" => Self::CrimsonHardenedSand,
8741 "CorruptSandstone" => Self::CorruptSandstone,
8742 "CrimsonSandstone" => Self::CrimsonSandstone,
8743 "WoodYoyo" => Self::WoodYoyo,
8744 "CorruptYoyo" => Self::CorruptYoyo,
8745 "CrimsonYoyo" => Self::CrimsonYoyo,
8746 "JungleYoyo" => Self::JungleYoyo,
8747 "Cascade" => Self::Cascade,
8748 "Chik" => Self::Chik,
8749 "Code2" => Self::Code2,
8750 "Rally" => Self::Rally,
8751 "Yelets" => Self::Yelets,
8752 "RedsYoyo" => Self::RedsYoyo,
8753 "ValkyrieYoyo" => Self::ValkyrieYoyo,
8754 "Amarok" => Self::Amarok,
8755 "HelFire" => Self::HelFire,
8756 "Kraken" => Self::Kraken,
8757 "TheEyeOfCthulhu" => Self::TheEyeOfCthulhu,
8758 "RedString" => Self::RedString,
8759 "OrangeString" => Self::OrangeString,
8760 "YellowString" => Self::YellowString,
8761 "LimeString" => Self::LimeString,
8762 "GreenString" => Self::GreenString,
8763 "TealString" => Self::TealString,
8764 "CyanString" => Self::CyanString,
8765 "SkyBlueString" => Self::SkyBlueString,
8766 "BlueString" => Self::BlueString,
8767 "PurpleString" => Self::PurpleString,
8768 "VioletString" => Self::VioletString,
8769 "PinkString" => Self::PinkString,
8770 "BrownString" => Self::BrownString,
8771 "WhiteString" => Self::WhiteString,
8772 "RainbowString" => Self::RainbowString,
8773 "BlackString" => Self::BlackString,
8774 "BlackCounterweight" => Self::BlackCounterweight,
8775 "BlueCounterweight" => Self::BlueCounterweight,
8776 "GreenCounterweight" => Self::GreenCounterweight,
8777 "PurpleCounterweight" => Self::PurpleCounterweight,
8778 "RedCounterweight" => Self::RedCounterweight,
8779 "YellowCounterweight" => Self::YellowCounterweight,
8780 "FormatC" => Self::FormatC,
8781 "Gradient" => Self::Gradient,
8782 "Valor" => Self::Valor,
8783 "KingSlimeBossBag" => Self::KingSlimeBossBag,
8784 "EyeOfCthulhuBossBag" => Self::EyeOfCthulhuBossBag,
8785 "EaterOfWorldsBossBag" => Self::EaterOfWorldsBossBag,
8786 "BrainOfCthulhuBossBag" => Self::BrainOfCthulhuBossBag,
8787 "QueenBeeBossBag" => Self::QueenBeeBossBag,
8788 "SkeletronBossBag" => Self::SkeletronBossBag,
8789 "WallOfFleshBossBag" => Self::WallOfFleshBossBag,
8790 "DestroyerBossBag" => Self::DestroyerBossBag,
8791 "TwinsBossBag" => Self::TwinsBossBag,
8792 "SkeletronPrimeBossBag" => Self::SkeletronPrimeBossBag,
8793 "PlanteraBossBag" => Self::PlanteraBossBag,
8794 "GolemBossBag" => Self::GolemBossBag,
8795 "FishronBossBag" => Self::FishronBossBag,
8796 "CultistBossBag" => Self::CultistBossBag,
8797 "MoonLordBossBag" => Self::MoonLordBossBag,
8798 "HiveBackpack" => Self::HiveBackpack,
8799 "YoYoGlove" => Self::YoYoGlove,
8800 "DemonHeart" => Self::DemonHeart,
8801 "SporeSac" => Self::SporeSac,
8802 "ShinyStone" => Self::ShinyStone,
8803 "HallowHardenedSand" => Self::HallowHardenedSand,
8804 "HallowSandstone" => Self::HallowSandstone,
8805 "HardenedSandWall" => Self::HardenedSandWall,
8806 "CorruptHardenedSandWall" => Self::CorruptHardenedSandWall,
8807 "CrimsonHardenedSandWall" => Self::CrimsonHardenedSandWall,
8808 "HallowHardenedSandWall" => Self::HallowHardenedSandWall,
8809 "CorruptSandstoneWall" => Self::CorruptSandstoneWall,
8810 "CrimsonSandstoneWall" => Self::CrimsonSandstoneWall,
8811 "HallowSandstoneWall" => Self::HallowSandstoneWall,
8812 "DesertFossil" => Self::DesertFossil,
8813 "DesertFossilWall" => Self::DesertFossilWall,
8814 "DyeTradersScimitar" => Self::DyeTradersScimitar,
8815 "PainterPaintballGun" => Self::PainterPaintballGun,
8816 "TaxCollectorsStickOfDoom" => Self::TaxCollectorsStickOfDoom,
8817 "StylistKilLaKillScissorsIWish" => Self::StylistKilLaKillScissorsIWish,
8818 "MinecartMech" => Self::MinecartMech,
8819 "MechanicalWheelPiece" => Self::MechanicalWheelPiece,
8820 "MechanicalWagonPiece" => Self::MechanicalWagonPiece,
8821 "MechanicalBatteryPiece" => Self::MechanicalBatteryPiece,
8822 "AncientCultistTrophy" => Self::AncientCultistTrophy,
8823 "MartianSaucerTrophy" => Self::MartianSaucerTrophy,
8824 "FlyingDutchmanTrophy" => Self::FlyingDutchmanTrophy,
8825 "LivingMahoganyWand" => Self::LivingMahoganyWand,
8826 "LivingMahoganyLeafWand" => Self::LivingMahoganyLeafWand,
8827 "FallenTuxedoShirt" => Self::FallenTuxedoShirt,
8828 "FallenTuxedoPants" => Self::FallenTuxedoPants,
8829 "Fireplace" => Self::Fireplace,
8830 "Chimney" => Self::Chimney,
8831 "YoyoBag" => Self::YoyoBag,
8832 "ShrimpyTruffle" => Self::ShrimpyTruffle,
8833 "Arkhalis" => Self::Arkhalis,
8834 "ConfettiCannon" => Self::ConfettiCannon,
8835 "MusicBoxTowers" => Self::MusicBoxTowers,
8836 "MusicBoxGoblins" => Self::MusicBoxGoblins,
8837 "BossMaskCultist" => Self::BossMaskCultist,
8838 "BossMaskMoonlord" => Self::BossMaskMoonlord,
8839 "FossilHelm" => Self::FossilHelm,
8840 "FossilShirt" => Self::FossilShirt,
8841 "FossilPants" => Self::FossilPants,
8842 "AmberStaff" => Self::AmberStaff,
8843 "BoneJavelin" => Self::BoneJavelin,
8844 "BoneDagger" => Self::BoneDagger,
8845 "FossilOre" => Self::FossilOre,
8846 "StardustHelmet" => Self::StardustHelmet,
8847 "StardustBreastplate" => Self::StardustBreastplate,
8848 "StardustLeggings" => Self::StardustLeggings,
8849 "PortalGun" => Self::PortalGun,
8850 "StrangePlant1" => Self::StrangePlant1,
8851 "StrangePlant2" => Self::StrangePlant2,
8852 "StrangePlant3" => Self::StrangePlant3,
8853 "StrangePlant4" => Self::StrangePlant4,
8854 "Terrarian" => Self::Terrarian,
8855 "GoblinSummonerBanner" => Self::GoblinSummonerBanner,
8856 "SalamanderBanner" => Self::SalamanderBanner,
8857 "GiantShellyBanner" => Self::GiantShellyBanner,
8858 "CrawdadBanner" => Self::CrawdadBanner,
8859 "FritzBanner" => Self::FritzBanner,
8860 "CreatureFromTheDeepBanner" => Self::CreatureFromTheDeepBanner,
8861 "DrManFlyBanner" => Self::DrManFlyBanner,
8862 "MothronBanner" => Self::MothronBanner,
8863 "SeveredHandBanner" => Self::SeveredHandBanner,
8864 "ThePossessedBanner" => Self::ThePossessedBanner,
8865 "ButcherBanner" => Self::ButcherBanner,
8866 "PsychoBanner" => Self::PsychoBanner,
8867 "DeadlySphereBanner" => Self::DeadlySphereBanner,
8868 "NailheadBanner" => Self::NailheadBanner,
8869 "PoisonousSporeBanner" => Self::PoisonousSporeBanner,
8870 "MedusaBanner" => Self::MedusaBanner,
8871 "GreekSkeletonBanner" => Self::GreekSkeletonBanner,
8872 "GraniteFlyerBanner" => Self::GraniteFlyerBanner,
8873 "GraniteGolemBanner" => Self::GraniteGolemBanner,
8874 "BloodZombieBanner" => Self::BloodZombieBanner,
8875 "DripplerBanner" => Self::DripplerBanner,
8876 "TombCrawlerBanner" => Self::TombCrawlerBanner,
8877 "DuneSplicerBanner" => Self::DuneSplicerBanner,
8878 "FlyingAntlionBanner" => Self::FlyingAntlionBanner,
8879 "WalkingAntlionBanner" => Self::WalkingAntlionBanner,
8880 "DesertGhoulBanner" => Self::DesertGhoulBanner,
8881 "DesertLamiaBanner" => Self::DesertLamiaBanner,
8882 "DesertDjinnBanner" => Self::DesertDjinnBanner,
8883 "DesertBasiliskBanner" => Self::DesertBasiliskBanner,
8884 "RavagerScorpionBanner" => Self::RavagerScorpionBanner,
8885 "StardustSoldierBanner" => Self::StardustSoldierBanner,
8886 "StardustWormBanner" => Self::StardustWormBanner,
8887 "StardustJellyfishBanner" => Self::StardustJellyfishBanner,
8888 "StardustSpiderBanner" => Self::StardustSpiderBanner,
8889 "StardustSmallCellBanner" => Self::StardustSmallCellBanner,
8890 "StardustLargeCellBanner" => Self::StardustLargeCellBanner,
8891 "SolarCoriteBanner" => Self::SolarCoriteBanner,
8892 "SolarSrollerBanner" => Self::SolarSrollerBanner,
8893 "SolarCrawltipedeBanner" => Self::SolarCrawltipedeBanner,
8894 "SolarDrakomireRiderBanner" => Self::SolarDrakomireRiderBanner,
8895 "SolarDrakomireBanner" => Self::SolarDrakomireBanner,
8896 "SolarSolenianBanner" => Self::SolarSelenianBanner,
8897 "NebulaSoldierBanner" => Self::NebulaSoldierBanner,
8898 "NebulaHeadcrabBanner" => Self::NebulaHeadcrabBanner,
8899 "NebulaBrainBanner" => Self::NebulaBrainBanner,
8900 "NebulaBeastBanner" => Self::NebulaBeastBanner,
8901 "VortexLarvaBanner" => Self::VortexLarvaBanner,
8902 "VortexHornetQueenBanner" => Self::VortexHornetQueenBanner,
8903 "VortexHornetBanner" => Self::VortexHornetBanner,
8904 "VortexSoldierBanner" => Self::VortexSoldierBanner,
8905 "VortexRiflemanBanner" => Self::VortexRiflemanBanner,
8906 "PirateCaptainBanner" => Self::PirateCaptainBanner,
8907 "PirateDeadeyeBanner" => Self::PirateDeadeyeBanner,
8908 "PirateCorsairBanner" => Self::PirateCorsairBanner,
8909 "PirateCrossbowerBanner" => Self::PirateCrossbowerBanner,
8910 "MartianWalkerBanner" => Self::MartianWalkerBanner,
8911 "RedDevilBanner" => Self::RedDevilBanner,
8912 "PinkJellyfishBanner" => Self::PinkJellyfishBanner,
8913 "GreenJellyfishBanner" => Self::GreenJellyfishBanner,
8914 "DarkMummyBanner" => Self::DarkMummyBanner,
8915 "LightMummyBanner" => Self::LightMummyBanner,
8916 "AngryBonesBanner" => Self::AngryBonesBanner,
8917 "IceTortoiseBanner" => Self::IceTortoiseBanner,
8918 "NebulaPickup1" => Self::NebulaPickup1,
8919 "NebulaPickup2" => Self::NebulaPickup2,
8920 "NebulaPickup3" => Self::NebulaPickup3,
8921 "FragmentVortex" => Self::FragmentVortex,
8922 "FragmentNebula" => Self::FragmentNebula,
8923 "FragmentSolar" => Self::FragmentSolar,
8924 "FragmentStardust" => Self::FragmentStardust,
8925 "LunarOre" => Self::LunarOre,
8926 "LunarBrick" => Self::LunarBrick,
8927 "StardustAxe" => Self::StardustAxe,
8928 "StardustChainsaw" => Self::StardustChainsaw,
8929 "StardustDrill" => Self::StardustDrill,
8930 "StardustHammer" => Self::StardustHammer,
8931 "StardustPickaxe" => Self::StardustPickaxe,
8932 "LunarBar" => Self::LunarBar,
8933 "WingsSolar" => Self::WingsSolar,
8934 "WingsVortex" => Self::WingsVortex,
8935 "WingsNebula" => Self::WingsNebula,
8936 "WingsStardust" => Self::WingsStardust,
8937 "LunarBrickWall" => Self::LunarBrickWall,
8938 "SolarEruption" => Self::SolarEruption,
8939 "StardustCellStaff" => Self::StardustCellStaff,
8940 "VortexBeater" => Self::VortexBeater,
8941 "NebulaArcanum" => Self::NebulaArcanum,
8942 "BloodWater" => Self::BloodWater,
8943 "TheBrideHat" => Self::TheBrideHat,
8944 "TheBrideDress" => Self::TheBrideDress,
8945 "PlatinumBow" => Self::PlatinumBow,
8946 "PlatinumHammer" => Self::PlatinumHammer,
8947 "PlatinumAxe" => Self::PlatinumAxe,
8948 "PlatinumShortsword" => Self::PlatinumShortsword,
8949 "PlatinumBroadsword" => Self::PlatinumBroadsword,
8950 "PlatinumPickaxe" => Self::PlatinumPickaxe,
8951 "TungstenBow" => Self::TungstenBow,
8952 "TungstenHammer" => Self::TungstenHammer,
8953 "TungstenAxe" => Self::TungstenAxe,
8954 "TungstenShortsword" => Self::TungstenShortsword,
8955 "TungstenBroadsword" => Self::TungstenBroadsword,
8956 "TungstenPickaxe" => Self::TungstenPickaxe,
8957 "LeadBow" => Self::LeadBow,
8958 "LeadHammer" => Self::LeadHammer,
8959 "LeadAxe" => Self::LeadAxe,
8960 "LeadShortsword" => Self::LeadShortsword,
8961 "LeadBroadsword" => Self::LeadBroadsword,
8962 "LeadPickaxe" => Self::LeadPickaxe,
8963 "TinBow" => Self::TinBow,
8964 "TinHammer" => Self::TinHammer,
8965 "TinAxe" => Self::TinAxe,
8966 "TinShortsword" => Self::TinShortsword,
8967 "TinBroadsword" => Self::TinBroadsword,
8968 "TinPickaxe" => Self::TinPickaxe,
8969 "CopperBow" => Self::CopperBow,
8970 "CopperHammer" => Self::CopperHammer,
8971 "CopperAxe" => Self::CopperAxe,
8972 "CopperShortsword" => Self::CopperShortsword,
8973 "CopperBroadsword" => Self::CopperBroadsword,
8974 "CopperPickaxe" => Self::CopperPickaxe,
8975 "SilverBow" => Self::SilverBow,
8976 "SilverHammer" => Self::SilverHammer,
8977 "SilverAxe" => Self::SilverAxe,
8978 "SilverShortsword" => Self::SilverShortsword,
8979 "SilverBroadsword" => Self::SilverBroadsword,
8980 "SilverPickaxe" => Self::SilverPickaxe,
8981 "GoldBow" => Self::GoldBow,
8982 "GoldHammer" => Self::GoldHammer,
8983 "GoldAxe" => Self::GoldAxe,
8984 "GoldShortsword" => Self::GoldShortsword,
8985 "GoldBroadsword" => Self::GoldBroadsword,
8986 "GoldPickaxe" => Self::GoldPickaxe,
8987 "LunarHamaxeSolar" => Self::LunarHamaxeSolar,
8988 "LunarHamaxeVortex" => Self::LunarHamaxeVortex,
8989 "LunarHamaxeNebula" => Self::LunarHamaxeNebula,
8990 "LunarHamaxeStardust" => Self::LunarHamaxeStardust,
8991 "SolarDye" => Self::SolarDye,
8992 "NebulaDye" => Self::NebulaDye,
8993 "VortexDye" => Self::VortexDye,
8994 "StardustDye" => Self::StardustDye,
8995 "VoidDye" => Self::VoidDye,
8996 "StardustDragonStaff" => Self::StardustDragonStaff,
8997 "Bacon" => Self::Bacon,
8998 "ShiftingSandsDye" => Self::ShiftingSandsDye,
8999 "MirageDye" => Self::MirageDye,
9000 "ShiftingPearlSandsDye" => Self::ShiftingPearlSandsDye,
9001 "VortexMonolith" => Self::VortexMonolith,
9002 "NebulaMonolith" => Self::NebulaMonolith,
9003 "StardustMonolith" => Self::StardustMonolith,
9004 "SolarMonolith" => Self::SolarMonolith,
9005 "Phantasm" => Self::Phantasm,
9006 "LastPrism" => Self::LastPrism,
9007 "NebulaBlaze" => Self::NebulaBlaze,
9008 "DayBreak" => Self::DayBreak,
9009 "SuperHealingPotion" => Self::SuperHealingPotion,
9010 "Detonator" => Self::Detonator,
9011 "FireworksLauncher" => Self::FireworksLauncher,
9012 "BouncyDynamite" => Self::BouncyDynamite,
9013 "PartyGirlGrenade" => Self::PartyGirlGrenade,
9014 "LunarCraftingStation" => Self::LunarCraftingStation,
9015 "FlameAndSilverDye" => Self::FlameAndSilverDye,
9016 "GreenFlameAndSilverDye" => Self::GreenFlameAndSilverDye,
9017 "BlueFlameAndSilverDye" => Self::BlueFlameAndSilverDye,
9018 "ReflectiveCopperDye" => Self::ReflectiveCopperDye,
9019 "ReflectiveObsidianDye" => Self::ReflectiveObsidianDye,
9020 "ReflectiveMetalDye" => Self::ReflectiveMetalDye,
9021 "MidnightRainbowDye" => Self::MidnightRainbowDye,
9022 "BlackAndWhiteDye" => Self::BlackAndWhiteDye,
9023 "BrightSilverDye" => Self::BrightSilverDye,
9024 "SilverAndBlackDye" => Self::SilverAndBlackDye,
9025 "RedAcidDye" => Self::RedAcidDye,
9026 "GelDye" => Self::GelDye,
9027 "PinkGelDye" => Self::PinkGelDye,
9028 "SquirrelRed" => Self::SquirrelRed,
9029 "SquirrelGold" => Self::SquirrelGold,
9030 "SquirrelOrangeCage" => Self::SquirrelOrangeCage,
9031 "SquirrelGoldCage" => Self::SquirrelGoldCage,
9032 "MoonlordBullet" => Self::MoonlordBullet,
9033 "MoonlordArrow" => Self::MoonlordArrow,
9034 "MoonlordTurretStaff" => Self::MoonlordTurretStaff,
9035 "LunarFlareBook" => Self::LunarFlareBook,
9036 "RainbowCrystalStaff" => Self::RainbowCrystalStaff,
9037 "LunarHook" => Self::LunarHook,
9038 "LunarBlockSolar" => Self::LunarBlockSolar,
9039 "LunarBlockVortex" => Self::LunarBlockVortex,
9040 "LunarBlockNebula" => Self::LunarBlockNebula,
9041 "LunarBlockStardust" => Self::LunarBlockStardust,
9042 "SuspiciousLookingTentacle" => Self::SuspiciousLookingTentacle,
9043 "Yoraiz0rShirt" => Self::Yoraiz0rShirt,
9044 "Yoraiz0rPants" => Self::Yoraiz0rPants,
9045 "Yoraiz0rWings" => Self::Yoraiz0rWings,
9046 "Yoraiz0rDarkness" => Self::Yoraiz0rDarkness,
9047 "JimsWings" => Self::JimsWings,
9048 "Yoraiz0rHead" => Self::Yoraiz0rHead,
9049 "LivingLeafWall" => Self::LivingLeafWall,
9050 "SkiphsHelm" => Self::SkiphsHelm,
9051 "SkiphsShirt" => Self::SkiphsShirt,
9052 "SkiphsPants" => Self::SkiphsPants,
9053 "SkiphsWings" => Self::SkiphsWings,
9054 "LokisHelm" => Self::LokisHelm,
9055 "LokisShirt" => Self::LokisShirt,
9056 "LokisPants" => Self::LokisPants,
9057 "LokisWings" => Self::LokisWings,
9058 "SandSlimeBanner" => Self::SandSlimeBanner,
9059 "SeaSnailBanner" => Self::SeaSnailBanner,
9060 "MoonLordTrophy" => Self::MoonLordTrophy,
9061 "MoonLordPainting" => Self::MoonLordPainting,
9062 "BurningHadesDye" => Self::BurningHadesDye,
9063 "GrimDye" => Self::GrimDye,
9064 "LokisDye" => Self::LokisDye,
9065 "ShadowflameHadesDye" => Self::ShadowflameHadesDye,
9066 "CelestialSigil" => Self::CelestialSigil,
9067 "LogicGateLamp_Off" => Self::LogicGateLampOff,
9068 "LogicGate_AND" => Self::LogicGateAnd,
9069 "LogicGate_OR" => Self::LogicGateOr,
9070 "LogicGate_NAND" => Self::LogicGateNand,
9071 "LogicGate_NOR" => Self::LogicGateNor,
9072 "LogicGate_XOR" => Self::LogicGateXor,
9073 "LogicGate_NXOR" => Self::LogicGateNxor,
9074 "ConveyorBeltLeft" => Self::ConveyorBeltLeft,
9075 "ConveyorBeltRight" => Self::ConveyorBeltRight,
9076 "WireKite" => Self::WireKite,
9077 "YellowWrench" => Self::YellowWrench,
9078 "LogicSensor_Sun" => Self::LogicSensorSun,
9079 "LogicSensor_Moon" => Self::LogicSensorMoon,
9080 "LogicSensor_Above" => Self::LogicSensorAbove,
9081 "WirePipe" => Self::WirePipe,
9082 "AnnouncementBox" => Self::AnnouncementBox,
9083 "LogicGateLamp_On" => Self::LogicGateLampOn,
9084 "MechanicalLens" => Self::MechanicalLens,
9085 "ActuationRod" => Self::ActuationRod,
9086 "TeamBlockRed" => Self::TeamBlockRed,
9087 "TeamBlockRedPlatform" => Self::TeamBlockRedPlatform,
9088 "StaticHook" => Self::StaticHook,
9089 "ActuationAccessory" => Self::ActuationAccessory,
9090 "MulticolorWrench" => Self::MulticolorWrench,
9091 "WeightedPressurePlatePink" => Self::WeightedPressurePlatePink,
9092 "EngineeringHelmet" => Self::EngineeringHelmet,
9093 "CompanionCube" => Self::CompanionCube,
9094 "WireBulb" => Self::WireBulb,
9095 "WeightedPressurePlateOrange" => Self::WeightedPressurePlateOrange,
9096 "WeightedPressurePlatePurple" => Self::WeightedPressurePlatePurple,
9097 "WeightedPressurePlateCyan" => Self::WeightedPressurePlateCyan,
9098 "TeamBlockGreen" => Self::TeamBlockGreen,
9099 "TeamBlockBlue" => Self::TeamBlockBlue,
9100 "TeamBlockYellow" => Self::TeamBlockYellow,
9101 "TeamBlockPink" => Self::TeamBlockPink,
9102 "TeamBlockWhite" => Self::TeamBlockWhite,
9103 "TeamBlockGreenPlatform" => Self::TeamBlockGreenPlatform,
9104 "TeamBlockBluePlatform" => Self::TeamBlockBluePlatform,
9105 "TeamBlockYellowPlatform" => Self::TeamBlockYellowPlatform,
9106 "TeamBlockPinkPlatform" => Self::TeamBlockPinkPlatform,
9107 "TeamBlockWhitePlatform" => Self::TeamBlockWhitePlatform,
9108 "LargeAmber" => Self::LargeAmber,
9109 "GemLockRuby" => Self::GemLockRuby,
9110 "GemLockSapphire" => Self::GemLockSapphire,
9111 "GemLockEmerald" => Self::GemLockEmerald,
9112 "GemLockTopaz" => Self::GemLockTopaz,
9113 "GemLockAmethyst" => Self::GemLockAmethyst,
9114 "GemLockDiamond" => Self::GemLockDiamond,
9115 "GemLockAmber" => Self::GemLockAmber,
9116 "SquirrelStatue" => Self::SquirrelStatue,
9117 "ButterflyStatue" => Self::ButterflyStatue,
9118 "WormStatue" => Self::WormStatue,
9119 "FireflyStatue" => Self::FireflyStatue,
9120 "ScorpionStatue" => Self::ScorpionStatue,
9121 "SnailStatue" => Self::SnailStatue,
9122 "GrasshopperStatue" => Self::GrasshopperStatue,
9123 "MouseStatue" => Self::MouseStatue,
9124 "DuckStatue" => Self::DuckStatue,
9125 "PenguinStatue" => Self::PenguinStatue,
9126 "FrogStatue" => Self::FrogStatue,
9127 "BuggyStatue" => Self::BuggyStatue,
9128 "LogicGateLamp_Faulty" => Self::LogicGateLampFaulty,
9129 "PortalGunStation" => Self::PortalGunStation,
9130 "Fake_Chest" => Self::FakeChest,
9131 "Fake_GoldChest" => Self::FakeGoldChest,
9132 "Fake_ShadowChest" => Self::FakeShadowChest,
9133 "Fake_EbonwoodChest" => Self::FakeEbonwoodChest,
9134 "Fake_RichMahoganyChest" => Self::FakeRichMahoganyChest,
9135 "Fake_PearlwoodChest" => Self::FakePearlwoodChest,
9136 "Fake_IvyChest" => Self::FakeIvyChest,
9137 "Fake_IceChest" => Self::FakeIceChest,
9138 "Fake_LivingWoodChest" => Self::FakeLivingWoodChest,
9139 "Fake_SkywareChest" => Self::FakeSkywareChest,
9140 "Fake_ShadewoodChest" => Self::FakeShadewoodChest,
9141 "Fake_WebCoveredChest" => Self::FakeWebCoveredChest,
9142 "Fake_LihzahrdChest" => Self::FakeLihzahrdChest,
9143 "Fake_WaterChest" => Self::FakeWaterChest,
9144 "Fake_JungleChest" => Self::FakeJungleChest,
9145 "Fake_CorruptionChest" => Self::FakeCorruptionChest,
9146 "Fake_CrimsonChest" => Self::FakeCrimsonChest,
9147 "Fake_HallowedChest" => Self::FakeHallowedChest,
9148 "Fake_FrozenChest" => Self::FakeFrozenChest,
9149 "Fake_DynastyChest" => Self::FakeDynastyChest,
9150 "Fake_HoneyChest" => Self::FakeHoneyChest,
9151 "Fake_SteampunkChest" => Self::FakeSteampunkChest,
9152 "Fake_PalmWoodChest" => Self::FakePalmWoodChest,
9153 "Fake_MushroomChest" => Self::FakeMushroomChest,
9154 "Fake_BorealWoodChest" => Self::FakeBorealWoodChest,
9155 "Fake_SlimeChest" => Self::FakeSlimeChest,
9156 "Fake_GreenDungeonChest" => Self::FakeGreenDungeonChest,
9157 "Fake_PinkDungeonChest" => Self::FakePinkDungeonChest,
9158 "Fake_BlueDungeonChest" => Self::FakeBlueDungeonChest,
9159 "Fake_BoneChest" => Self::FakeBoneChest,
9160 "Fake_CactusChest" => Self::FakeCactusChest,
9161 "Fake_FleshChest" => Self::FakeFleshChest,
9162 "Fake_ObsidianChest" => Self::FakeObsidianChest,
9163 "Fake_PumpkinChest" => Self::FakePumpkinChest,
9164 "Fake_SpookyChest" => Self::FakeSpookyChest,
9165 "Fake_GlassChest" => Self::FakeGlassChest,
9166 "Fake_MartianChest" => Self::FakeMartianChest,
9167 "Fake_MeteoriteChest" => Self::FakeMeteoriteChest,
9168 "Fake_GraniteChest" => Self::FakeGraniteChest,
9169 "Fake_MarbleChest" => Self::FakeMarbleChest,
9170 "Fake_newchest1" => Self::FakeNewChest1,
9171 "Fake_newchest2" => Self::FakeNewChest2,
9172 "ProjectilePressurePad" => Self::ProjectilePressurePad,
9173 "WallCreeperStatue" => Self::WallCreeperStatue,
9174 "UnicornStatue" => Self::UnicornStatue,
9175 "DripplerStatue" => Self::DripplerStatue,
9176 "WraithStatue" => Self::WraithStatue,
9177 "BoneSkeletonStatue" => Self::BoneSkeletonStatue,
9178 "UndeadVikingStatue" => Self::UndeadVikingStatue,
9179 "MedusaStatue" => Self::MedusaStatue,
9180 "HarpyStatue" => Self::HarpyStatue,
9181 "PigronStatue" => Self::PigronStatue,
9182 "HopliteStatue" => Self::HopliteStatue,
9183 "GraniteGolemStatue" => Self::GraniteGolemStatue,
9184 "ZombieArmStatue" => Self::ZombieArmStatue,
9185 "BloodZombieStatue" => Self::BloodZombieStatue,
9186 "AnglerTackleBag" => Self::AnglerTackleBag,
9187 "GeyserTrap" => Self::GeyserTrap,
9188 "UltraBrightCampfire" => Self::UltraBrightCampfire,
9189 "BoneCampfire" => Self::BoneCampfire,
9190 "PixelBox" => Self::PixelBox,
9191 "LogicSensor_Water" => Self::LogicSensorWater,
9192 "LogicSensor_Lava" => Self::LogicSensorLava,
9193 "LogicSensor_Honey" => Self::LogicSensorHoney,
9194 "LogicSensor_Liquid" => Self::LogicSensorLiquid,
9195 "PartyBundleOfBalloonsAccessory" => Self::PartyBundleOfBalloonsAccessory,
9196 "PartyBalloonAnimal" => Self::PartyBalloonAnimal,
9197 "PartyHat" => Self::PartyHat,
9198 "FlowerBoyHat" => Self::FlowerBoyHat,
9199 "FlowerBoyShirt" => Self::FlowerBoyShirt,
9200 "FlowerBoyPants" => Self::FlowerBoyPants,
9201 "SillyBalloonPink" => Self::SillyBalloonPink,
9202 "SillyBalloonPurple" => Self::SillyBalloonPurple,
9203 "SillyBalloonGreen" => Self::SillyBalloonGreen,
9204 "SillyStreamerBlue" => Self::SillyStreamerBlue,
9205 "SillyStreamerGreen" => Self::SillyStreamerGreen,
9206 "SillyStreamerPink" => Self::SillyStreamerPink,
9207 "SillyBalloonMachine" => Self::SillyBalloonMachine,
9208 "SillyBalloonTiedPink" => Self::SillyBalloonTiedPink,
9209 "SillyBalloonTiedPurple" => Self::SillyBalloonTiedPurple,
9210 "SillyBalloonTiedGreen" => Self::SillyBalloonTiedGreen,
9211 "Pigronata" => Self::Pigronata,
9212 "PartyMonolith" => Self::PartyMonolith,
9213 "PartyBundleOfBalloonTile" => Self::PartyBundleOfBalloonTile,
9214 "PartyPresent" => Self::PartyPresent,
9215 "SliceOfCake" => Self::SliceOfCake,
9216 "CogWall" => Self::CogWall,
9217 "SandFallWall" => Self::SandFallWall,
9218 "SnowFallWall" => Self::SnowFallWall,
9219 "SandFallBlock" => Self::SandFallBlock,
9220 "SnowFallBlock" => Self::SnowFallBlock,
9221 "SnowCloudBlock" => Self::SnowCloudBlock,
9222 "PedguinHat" => Self::PedguinHat,
9223 "PedguinShirt" => Self::PedguinShirt,
9224 "PedguinPants" => Self::PedguinPants,
9225 "SillyBalloonPinkWall" => Self::SillyBalloonPinkWall,
9226 "SillyBalloonPurpleWall" => Self::SillyBalloonPurpleWall,
9227 "SillyBalloonGreenWall" => Self::SillyBalloonGreenWall,
9228 "AviatorSunglasses" => Self::AviatorSunglasses,
9229 "BluePhasesaber" => Self::BluePhasesaber,
9230 "RedPhasesaber" => Self::RedPhasesaber,
9231 "GreenPhasesaber" => Self::GreenPhasesaber,
9232 "PurplePhasesaber" => Self::PurplePhasesaber,
9233 "WhitePhasesaber" => Self::WhitePhasesaber,
9234 "YellowPhasesaber" => Self::YellowPhasesaber,
9235 "DjinnsCurse" => Self::DjinnsCurse,
9236 "AncientHorn" => Self::AncientHorn,
9237 "AntlionClaw" => Self::AntlionClaw,
9238 "AncientArmorHat" => Self::AncientArmorHat,
9239 "AncientArmorShirt" => Self::AncientArmorShirt,
9240 "AncientArmorPants" => Self::AncientArmorPants,
9241 "AncientBattleArmorHat" => Self::AncientBattleArmorHat,
9242 "AncientBattleArmorShirt" => Self::AncientBattleArmorShirt,
9243 "AncientBattleArmorPants" => Self::AncientBattleArmorPants,
9244 "SpiritFlame" => Self::SpiritFlame,
9245 "SandElementalBanner" => Self::SandElementalBanner,
9246 "PocketMirror" => Self::PocketMirror,
9247 "MagicSandDropper" => Self::MagicSandDropper,
9248 "AncientBattleArmorMaterial" => Self::AncientBattleArmorMaterial,
9249 "LamiaPants" => Self::LamiaPants,
9250 "LamiaShirt" => Self::LamiaShirt,
9251 "LamiaHat" => Self::LamiaHat,
9252 "SkyFracture" => Self::SkyFracture,
9253 "OnyxBlaster" => Self::OnyxBlaster,
9254 "SandsharkBanner" => Self::SandsharkBanner,
9255 "SandsharkCorruptBanner" => Self::SandsharkCorruptBanner,
9256 "SandsharkCrimsonBanner" => Self::SandsharkCrimsonBanner,
9257 "SandsharkHallowedBanner" => Self::SandsharkHallowedBanner,
9258 "TumbleweedBanner" => Self::TumbleweedBanner,
9259 "AncientCloth" => Self::AncientCloth,
9260 "DjinnLamp" => Self::DjinnLamp,
9261 "MusicBoxSandstorm" => Self::MusicBoxSandstorm,
9262 "ApprenticeHat" => Self::ApprenticeHat,
9263 "ApprenticeRobe" => Self::ApprenticeRobe,
9264 "ApprenticeTrousers" => Self::ApprenticeTrousers,
9265 "SquireGreatHelm" => Self::SquireGreatHelm,
9266 "SquirePlating" => Self::SquirePlating,
9267 "SquireGreaves" => Self::SquireGreaves,
9268 "HuntressWig" => Self::HuntressWig,
9269 "HuntressJerkin" => Self::HuntressJerkin,
9270 "HuntressPants" => Self::HuntressPants,
9271 "MonkBrows" => Self::MonkBrows,
9272 "MonkShirt" => Self::MonkShirt,
9273 "MonkPants" => Self::MonkPants,
9274 "ApprenticeScarf" => Self::ApprenticeScarf,
9275 "SquireShield" => Self::SquireShield,
9276 "HuntressBuckler" => Self::HuntressBuckler,
9277 "MonkBelt" => Self::MonkBelt,
9278 "DefendersForge" => Self::DefendersForge,
9279 "WarTable" => Self::WarTable,
9280 "WarTableBanner" => Self::WarTableBanner,
9281 "DD2ElderCrystalStand" => Self::DD2ElderCrystalStand,
9282 "DefenderMedal" => Self::DefenderMedal,
9283 "DD2FlameburstTowerT1Popper" => Self::DD2FlameburstTowerT1Popper,
9284 "DD2FlameburstTowerT2Popper" => Self::DD2FlameburstTowerT2Popper,
9285 "DD2FlameburstTowerT3Popper" => Self::DD2FlameburstTowerT3Popper,
9286 "AleThrowingGlove" => Self::AleThrowingGlove,
9287 "DD2EnergyCrystal" => Self::DD2EnergyCrystal,
9288 "DD2SquireDemonSword" => Self::DD2SquireDemonSword,
9289 "DD2BallistraTowerT1Popper" => Self::DD2BallistraTowerT1Popper,
9290 "DD2BallistraTowerT2Popper" => Self::DD2BallistraTowerT2Popper,
9291 "DD2BallistraTowerT3Popper" => Self::DD2BallistraTowerT3Popper,
9292 "DD2SquireBetsySword" => Self::DD2SquireBetsySword,
9293 "DD2ElderCrystal" => Self::DD2ElderCrystal,
9294 "DD2LightningAuraT1Popper" => Self::DD2LightningAuraT1Popper,
9295 "DD2LightningAuraT2Popper" => Self::DD2LightningAuraT2Popper,
9296 "DD2LightningAuraT3Popper" => Self::DD2LightningAuraT3Popper,
9297 "DD2ExplosiveTrapT1Popper" => Self::DD2ExplosiveTrapT1Popper,
9298 "DD2ExplosiveTrapT2Popper" => Self::DD2ExplosiveTrapT2Popper,
9299 "DD2ExplosiveTrapT3Popper" => Self::DD2ExplosiveTrapT3Popper,
9300 "MonkStaffT1" => Self::MonkStaffT1,
9301 "MonkStaffT2" => Self::MonkStaffT2,
9302 "DD2GoblinBomberBanner" => Self::DD2GoblinBomberBanner,
9303 "DD2GoblinBanner" => Self::DD2GoblinBanner,
9304 "DD2SkeletonBanner" => Self::DD2SkeletonBanner,
9305 "DD2DrakinBanner" => Self::DD2DrakinBanner,
9306 "DD2KoboldFlyerBanner" => Self::DD2KoboldFlyerBanner,
9307 "DD2KoboldBanner" => Self::DD2KoboldBanner,
9308 "DD2WitherBeastBanner" => Self::DD2WitherBeastBanner,
9309 "DD2WyvernBanner" => Self::DD2WyvernBanner,
9310 "DD2JavelinThrowerBanner" => Self::DD2JavelinThrowerBanner,
9311 "DD2LightningBugBanner" => Self::DD2LightningBugBanner,
9312 "OgreMask" => Self::OgreMask,
9313 "GoblinMask" => Self::GoblinMask,
9314 "GoblinBomberCap" => Self::GoblinBomberCap,
9315 "EtherianJavelin" => Self::EtherianJavelin,
9316 "KoboldDynamiteBackpack" => Self::KoboldDynamiteBackpack,
9317 "BookStaff" => Self::BookStaff,
9318 "BoringBow" => Self::BoringBow,
9319 "DD2PhoenixBow" => Self::DD2PhoenixBow,
9320 "DD2PetGato" => Self::DD2PetGato,
9321 "DD2PetGhost" => Self::DD2PetGhost,
9322 "DD2PetDragon" => Self::DD2PetDragon,
9323 "MonkStaffT3" => Self::MonkStaffT3,
9324 "DD2BetsyBow" => Self::DD2BetsyBow,
9325 "BossBagBetsy" => Self::BossBagBetsy,
9326 "BossBagOgre" => Self::BossBagOgre,
9327 "BossBagDarkMage" => Self::BossBagDarkMage,
9328 "BossMaskBetsy" => Self::BossMaskBetsy,
9329 "BossMaskDarkMage" => Self::BossMaskDarkMage,
9330 "BossMaskOgre" => Self::BossMaskOgre,
9331 "BossTrophyBetsy" => Self::BossTrophyBetsy,
9332 "BossTrophyDarkmage" => Self::BossTrophyDarkmage,
9333 "BossTrophyOgre" => Self::BossTrophyOgre,
9334 "MusicBoxDD2" => Self::MusicBoxDD2,
9335 "ApprenticeStaffT3" => Self::ApprenticeStaffT3,
9336 "SquireAltHead" => Self::SquireAltHead,
9337 "SquireAltShirt" => Self::SquireAltShirt,
9338 "SquireAltPants" => Self::SquireAltPants,
9339 "ApprenticeAltHead" => Self::ApprenticeAltHead,
9340 "ApprenticeAltShirt" => Self::ApprenticeAltShirt,
9341 "ApprenticeAltPants" => Self::ApprenticeAltPants,
9342 "HuntressAltHead" => Self::HuntressAltHead,
9343 "HuntressAltShirt" => Self::HuntressAltShirt,
9344 "HuntressAltPants" => Self::HuntressAltPants,
9345 "MonkAltHead" => Self::MonkAltHead,
9346 "MonkAltShirt" => Self::MonkAltShirt,
9347 "MonkAltPants" => Self::MonkAltPants,
9348 "BetsyWings" => Self::BetsyWings,
9349 "CrystalChest" => Self::CrystalChest,
9350 "GoldenChest" => Self::GoldenChest,
9351 "Fake_CrystalChest" => Self::FakeCrystalChest,
9352 "Fake_GoldenChest" => Self::FakeGoldenChest,
9353 "CrystalDoor" => Self::CrystalDoor,
9354 "CrystalChair" => Self::CrystalChair,
9355 "CrystalCandle" => Self::CrystalCandle,
9356 "CrystalLantern" => Self::CrystalLantern,
9357 "CrystalLamp" => Self::CrystalLamp,
9358 "CrystalCandelabra" => Self::CrystalCandelabra,
9359 "CrystalChandelier" => Self::CrystalChandelier,
9360 "CrystalBathtub" => Self::CrystalBathtub,
9361 "CrystalSink" => Self::CrystalSink,
9362 "CrystalBed" => Self::CrystalBed,
9363 "CrystalClock" => Self::CrystalClock,
9364 "SkywareClock2" => Self::SkywareClock2,
9365 "DungeonClockBlue" => Self::DungeonClockBlue,
9366 "DungeonClockGreen" => Self::DungeonClockGreen,
9367 "DungeonClockPink" => Self::DungeonClockPink,
9368 "CrystalPlatform" => Self::CrystalPlatform,
9369 "GoldenPlatform" => Self::GoldenPlatform,
9370 "DynastyPlatform" => Self::DynastyPlatform,
9371 "LihzahrdPlatform" => Self::LihzahrdPlatform,
9372 "FleshPlatform" => Self::FleshPlatform,
9373 "FrozenPlatform" => Self::FrozenPlatform,
9374 "CrystalWorkbench" => Self::CrystalWorkbench,
9375 "GoldenWorkbench" => Self::GoldenWorkbench,
9376 "CrystalDresser" => Self::CrystalDresser,
9377 "DynastyDresser" => Self::DynastyDresser,
9378 "FrozenDresser" => Self::FrozenDresser,
9379 "LivingWoodDresser" => Self::LivingWoodDresser,
9380 "CrystalPiano" => Self::CrystalPiano,
9381 "DynastyPiano" => Self::DynastyPiano,
9382 "CrystalBookCase" => Self::CrystalBookCase,
9383 "CrystalSofaHowDoesThatEvenWork" => Self::CrystalSofaHowDoesThatEvenWork,
9384 "DynastySofa" => Self::DynastySofa,
9385 "CrystalTable" => Self::CrystalTable,
9386 "ArkhalisHat" => Self::ArkhalisHat,
9387 "ArkhalisShirt" => Self::ArkhalisShirt,
9388 "ArkhalisPants" => Self::ArkhalisPants,
9389 "ArkhalisWings" => Self::ArkhalisWings,
9390 "LeinforsHat" => Self::LeinforsHat,
9391 "LeinforsShirt" => Self::LeinforsShirt,
9392 "LeinforsPants" => Self::LeinforsPants,
9393 "LeinforsWings" => Self::LeinforsWings,
9394 "LeinforsAccessory" => Self::LeinforsAccessory,
9395 "Celeb2" => Self::Celeb2,
9396 "SpiderBathtub" => Self::SpiderBathtub,
9397 "SpiderBed" => Self::SpiderBed,
9398 "SpiderBookcase" => Self::SpiderBookcase,
9399 "SpiderDresser" => Self::SpiderDresser,
9400 "SpiderCandelabra" => Self::SpiderCandelabra,
9401 "SpiderCandle" => Self::SpiderCandle,
9402 "SpiderChair" => Self::SpiderChair,
9403 "SpiderChandelier" => Self::SpiderChandelier,
9404 "SpiderChest" => Self::SpiderChest,
9405 "SpiderClock" => Self::SpiderClock,
9406 "SpiderDoor" => Self::SpiderDoor,
9407 "SpiderLamp" => Self::SpiderLamp,
9408 "SpiderLantern" => Self::SpiderLantern,
9409 "SpiderPiano" => Self::SpiderPiano,
9410 "SpiderPlatform" => Self::SpiderPlatform,
9411 "SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes" => {
9412 Self::SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes
9413 }
9414 "SpiderSofa" => Self::SpiderSofa,
9415 "SpiderTable" => Self::SpiderTable,
9416 "SpiderWorkbench" => Self::SpiderWorkbench,
9417 "Fake_SpiderChest" => Self::FakeSpiderChest,
9418 "IronBrick" => Self::IronBrick,
9419 "IronBrickWall" => Self::IronBrickWall,
9420 "LeadBrick" => Self::LeadBrick,
9421 "LeadBrickWall" => Self::LeadBrickWall,
9422 "LesionBlock" => Self::LesionBlock,
9423 "LesionBlockWall" => Self::LesionBlockWall,
9424 "LesionPlatform" => Self::LesionPlatform,
9425 "LesionBathtub" => Self::LesionBathtub,
9426 "LesionBed" => Self::LesionBed,
9427 "LesionBookcase" => Self::LesionBookcase,
9428 "LesionCandelabra" => Self::LesionCandelabra,
9429 "LesionCandle" => Self::LesionCandle,
9430 "LesionChair" => Self::LesionChair,
9431 "LesionChandelier" => Self::LesionChandelier,
9432 "LesionChest" => Self::LesionChest,
9433 "LesionClock" => Self::LesionClock,
9434 "LesionDoor" => Self::LesionDoor,
9435 "LesionDresser" => Self::LesionDresser,
9436 "LesionLamp" => Self::LesionLamp,
9437 "LesionLantern" => Self::LesionLantern,
9438 "LesionPiano" => Self::LesionPiano,
9439 "LesionSink" => Self::LesionSink,
9440 "LesionSofa" => Self::LesionSofa,
9441 "LesionTable" => Self::LesionTable,
9442 "LesionWorkbench" => Self::LesionWorkbench,
9443 "Fake_LesionChest" => Self::FakeLesionChest,
9444 "HatRack" => Self::HatRack,
9445 "ColorOnlyDye" => Self::ColorOnlyDye,
9446 "WoodenCrateHard" => Self::WoodenCrateHard,
9447 "IronCrateHard" => Self::IronCrateHard,
9448 "GoldenCrateHard" => Self::GoldenCrateHard,
9449 "CorruptFishingCrateHard" => Self::CorruptFishingCrateHard,
9450 "CrimsonFishingCrateHard" => Self::CrimsonFishingCrateHard,
9451 "DungeonFishingCrateHard" => Self::DungeonFishingCrateHard,
9452 "FloatingIslandFishingCrateHard" => Self::FloatingIslandFishingCrateHard,
9453 "HallowedFishingCrateHard" => Self::HallowedFishingCrateHard,
9454 "JungleFishingCrateHard" => Self::JungleFishingCrateHard,
9455 "DeadMansChest" => Self::DeadMansChest,
9456 "GolfBall" => Self::GolfBall,
9457 "AmphibianBoots" => Self::AmphibianBoots,
9458 "ArcaneFlower" => Self::ArcaneFlower,
9459 "BerserkerGlove" => Self::BerserkerGlove,
9460 "FairyBoots" => Self::FairyBoots,
9461 "FrogFlipper" => Self::FrogFlipper,
9462 "FrogGear" => Self::FrogGear,
9463 "FrogWebbing" => Self::FrogWebbing,
9464 "FrozenShield" => Self::FrozenShield,
9465 "HeroShield" => Self::HeroShield,
9466 "LavaSkull" => Self::LavaSkull,
9467 "MagnetFlower" => Self::MagnetFlower,
9468 "ManaCloak" => Self::ManaCloak,
9469 "MoltenQuiver" => Self::MoltenQuiver,
9470 "MoltenSkullRose" => Self::MoltenSkullRose,
9471 "ObsidianSkullRose" => Self::ObsidianSkullRose,
9472 "ReconScope" => Self::ReconScope,
9473 "StalkersQuiver" => Self::StalkersQuiver,
9474 "StingerNecklace" => Self::StingerNecklace,
9475 "UltrabrightHelmet" => Self::UltrabrightHelmet,
9476 "Apple" => Self::Apple,
9477 "ApplePieSlice" => Self::ApplePieSlice,
9478 "ApplePie" => Self::ApplePie,
9479 "BananaSplit" => Self::BananaSplit,
9480 "BBQRibs" => Self::BBQRibs,
9481 "BunnyStew" => Self::BunnyStew,
9482 "Burger" => Self::Burger,
9483 "ChickenNugget" => Self::ChickenNugget,
9484 "ChocolateChipCookie" => Self::ChocolateChipCookie,
9485 "CreamSoda" => Self::CreamSoda,
9486 "Escargot" => Self::Escargot,
9487 "FriedEgg" => Self::FriedEgg,
9488 "Fries" => Self::Fries,
9489 "GoldenDelight" => Self::GoldenDelight,
9490 "Grapes" => Self::Grapes,
9491 "GrilledSquirrel" => Self::GrilledSquirrel,
9492 "Hotdog" => Self::Hotdog,
9493 "IceCream" => Self::IceCream,
9494 "Milkshake" => Self::Milkshake,
9495 "Nachos" => Self::Nachos,
9496 "Pizza" => Self::Pizza,
9497 "PotatoChips" => Self::PotatoChips,
9498 "RoastedBird" => Self::RoastedBird,
9499 "RoastedDuck" => Self::RoastedDuck,
9500 "SauteedFrogLegs" => Self::SauteedFrogLegs,
9501 "SeafoodDinner" => Self::SeafoodDinner,
9502 "ShrimpPoBoy" => Self::ShrimpPoBoy,
9503 "Spaghetti" => Self::Spaghetti,
9504 "Steak" => Self::Steak,
9505 "MoltenCharm" => Self::MoltenCharm,
9506 "GolfClubIron" => Self::GolfClubIron,
9507 "GolfCup" => Self::GolfCup,
9508 "FlowerPacketBlue" => Self::FlowerPacketBlue,
9509 "FlowerPacketMagenta" => Self::FlowerPacketMagenta,
9510 "FlowerPacketPink" => Self::FlowerPacketPink,
9511 "FlowerPacketRed" => Self::FlowerPacketRed,
9512 "FlowerPacketYellow" => Self::FlowerPacketYellow,
9513 "FlowerPacketViolet" => Self::FlowerPacketViolet,
9514 "FlowerPacketWhite" => Self::FlowerPacketWhite,
9515 "FlowerPacketTallGrass" => Self::FlowerPacketTallGrass,
9516 "LawnMower" => Self::LawnMower,
9517 "CrimstoneBrick" => Self::CrimstoneBrick,
9518 "SmoothSandstone" => Self::SmoothSandstone,
9519 "CrimstoneBrickWall" => Self::CrimstoneBrickWall,
9520 "SmoothSandstoneWall" => Self::SmoothSandstoneWall,
9521 "BloodMoonMonolith" => Self::BloodMoonMonolith,
9522 "SandBoots" => Self::SandBoots,
9523 "AncientChisel" => Self::AncientChisel,
9524 "CarbonGuitar" => Self::CarbonGuitar,
9525 "SkeletonBow" => Self::SkeletonBow,
9526 "FossilPickaxe" => Self::FossilPickaxe,
9527 "SuperStarCannon" => Self::SuperStarCannon,
9528 "ThunderSpear" => Self::ThunderSpear,
9529 "ThunderStaff" => Self::ThunderStaff,
9530 "DrumSet" => Self::DrumSet,
9531 "PicnicTable" => Self::PicnicTable,
9532 "PicnicTableWithCloth" => Self::PicnicTableWithCloth,
9533 "DesertMinecart" => Self::DesertMinecart,
9534 "FishMinecart" => Self::FishMinecart,
9535 "FairyCritterPink" => Self::FairyCritterPink,
9536 "FairyCritterGreen" => Self::FairyCritterGreen,
9537 "FairyCritterBlue" => Self::FairyCritterBlue,
9538 "JunoniaShell" => Self::JunoniaShell,
9539 "LightningWhelkShell" => Self::LightningWhelkShell,
9540 "TulipShell" => Self::TulipShell,
9541 "PinWheel" => Self::PinWheel,
9542 "WeatherVane" => Self::WeatherVane,
9543 "VoidVault" => Self::VoidVault,
9544 "MusicBoxOceanAlt" => Self::MusicBoxOceanAlt,
9545 "MusicBoxSlimeRain" => Self::MusicBoxSlimeRain,
9546 "MusicBoxSpaceAlt" => Self::MusicBoxSpaceAlt,
9547 "MusicBoxTownDay" => Self::MusicBoxTownDay,
9548 "MusicBoxTownNight" => Self::MusicBoxTownNight,
9549 "MusicBoxWindyDay" => Self::MusicBoxWindyDay,
9550 "GolfCupFlagWhite" => Self::GolfCupFlagWhite,
9551 "GolfCupFlagRed" => Self::GolfCupFlagRed,
9552 "GolfCupFlagGreen" => Self::GolfCupFlagGreen,
9553 "GolfCupFlagBlue" => Self::GolfCupFlagBlue,
9554 "GolfCupFlagYellow" => Self::GolfCupFlagYellow,
9555 "GolfCupFlagPurple" => Self::GolfCupFlagPurple,
9556 "GolfTee" => Self::GolfTee,
9557 "ShellPileBlock" => Self::ShellPileBlock,
9558 "AntiPortalBlock" => Self::AntiPortalBlock,
9559 "GolfClubPutter" => Self::GolfClubPutter,
9560 "GolfClubWedge" => Self::GolfClubWedge,
9561 "GolfClubDriver" => Self::GolfClubDriver,
9562 "GolfWhistle" => Self::GolfWhistle,
9563 "ToiletEbonyWood" => Self::ToiletEbonyWood,
9564 "ToiletRichMahogany" => Self::ToiletRichMahogany,
9565 "ToiletPearlwood" => Self::ToiletPearlwood,
9566 "ToiletLivingWood" => Self::ToiletLivingWood,
9567 "ToiletCactus" => Self::ToiletCactus,
9568 "ToiletBone" => Self::ToiletBone,
9569 "ToiletFlesh" => Self::ToiletFlesh,
9570 "ToiletMushroom" => Self::ToiletMushroom,
9571 "ToiletSunplate" => Self::ToiletSunplate,
9572 "ToiletShadewood" => Self::ToiletShadewood,
9573 "ToiletLihzhard" => Self::ToiletLihzhard,
9574 "ToiletDungeonBlue" => Self::ToiletDungeonBlue,
9575 "ToiletDungeonGreen" => Self::ToiletDungeonGreen,
9576 "ToiletDungeonPink" => Self::ToiletDungeonPink,
9577 "ToiletObsidian" => Self::ToiletObsidian,
9578 "ToiletFrozen" => Self::ToiletFrozen,
9579 "ToiletGlass" => Self::ToiletGlass,
9580 "ToiletHoney" => Self::ToiletHoney,
9581 "ToiletSteampunk" => Self::ToiletSteampunk,
9582 "ToiletPumpkin" => Self::ToiletPumpkin,
9583 "ToiletSpooky" => Self::ToiletSpooky,
9584 "ToiletDynasty" => Self::ToiletDynasty,
9585 "ToiletPalm" => Self::ToiletPalm,
9586 "ToiletBoreal" => Self::ToiletBoreal,
9587 "ToiletSlime" => Self::ToiletSlime,
9588 "ToiletMartian" => Self::ToiletMartian,
9589 "ToiletGranite" => Self::ToiletGranite,
9590 "ToiletMarble" => Self::ToiletMarble,
9591 "ToiletCrystal" => Self::ToiletCrystal,
9592 "ToiletSpider" => Self::ToiletSpider,
9593 "ToiletLesion" => Self::ToiletLesion,
9594 "ToiletDiamond" => Self::ToiletDiamond,
9595 "MaidHead" => Self::MaidHead,
9596 "MaidShirt" => Self::MaidShirt,
9597 "MaidPants" => Self::MaidPants,
9598 "VoidLens" => Self::VoidLens,
9599 "MaidHead2" => Self::MaidHead2,
9600 "MaidShirt2" => Self::MaidShirt2,
9601 "MaidPants2" => Self::MaidPants2,
9602 "GolfHat" => Self::GolfHat,
9603 "GolfShirt" => Self::GolfShirt,
9604 "GolfPants" => Self::GolfPants,
9605 "GolfVisor" => Self::GolfVisor,
9606 "SpiderBlock" => Self::SpiderBlock,
9607 "SpiderWall" => Self::SpiderWall,
9608 "ToiletMeteor" => Self::ToiletMeteor,
9609 "LesionStation" => Self::LesionStation,
9610 "ManaCloakStar" => Self::ManaCloakStar,
9611 "Terragrim" => Self::Terragrim,
9612 "SolarBathtub" => Self::SolarBathtub,
9613 "SolarBed" => Self::SolarBed,
9614 "SolarBookcase" => Self::SolarBookcase,
9615 "SolarDresser" => Self::SolarDresser,
9616 "SolarCandelabra" => Self::SolarCandelabra,
9617 "SolarCandle" => Self::SolarCandle,
9618 "SolarChair" => Self::SolarChair,
9619 "SolarChandelier" => Self::SolarChandelier,
9620 "SolarChest" => Self::SolarChest,
9621 "SolarClock" => Self::SolarClock,
9622 "SolarDoor" => Self::SolarDoor,
9623 "SolarLamp" => Self::SolarLamp,
9624 "SolarLantern" => Self::SolarLantern,
9625 "SolarPiano" => Self::SolarPiano,
9626 "SolarPlatform" => Self::SolarPlatform,
9627 "SolarSink" => Self::SolarSink,
9628 "SolarSofa" => Self::SolarSofa,
9629 "SolarTable" => Self::SolarTable,
9630 "SolarWorkbench" => Self::SolarWorkbench,
9631 "Fake_SolarChest" => Self::FakeSolarChest,
9632 "SolarToilet" => Self::SolarToilet,
9633 "VortexBathtub" => Self::VortexBathtub,
9634 "VortexBed" => Self::VortexBed,
9635 "VortexBookcase" => Self::VortexBookcase,
9636 "VortexDresser" => Self::VortexDresser,
9637 "VortexCandelabra" => Self::VortexCandelabra,
9638 "VortexCandle" => Self::VortexCandle,
9639 "VortexChair" => Self::VortexChair,
9640 "VortexChandelier" => Self::VortexChandelier,
9641 "VortexChest" => Self::VortexChest,
9642 "VortexClock" => Self::VortexClock,
9643 "VortexDoor" => Self::VortexDoor,
9644 "VortexLamp" => Self::VortexLamp,
9645 "VortexLantern" => Self::VortexLantern,
9646 "VortexPiano" => Self::VortexPiano,
9647 "VortexPlatform" => Self::VortexPlatform,
9648 "VortexSink" => Self::VortexSink,
9649 "VortexSofa" => Self::VortexSofa,
9650 "VortexTable" => Self::VortexTable,
9651 "VortexWorkbench" => Self::VortexWorkbench,
9652 "Fake_VortexChest" => Self::FakeVortexChest,
9653 "VortexToilet" => Self::VortexToilet,
9654 "NebulaBathtub" => Self::NebulaBathtub,
9655 "NebulaBed" => Self::NebulaBed,
9656 "NebulaBookcase" => Self::NebulaBookcase,
9657 "NebulaDresser" => Self::NebulaDresser,
9658 "NebulaCandelabra" => Self::NebulaCandelabra,
9659 "NebulaCandle" => Self::NebulaCandle,
9660 "NebulaChair" => Self::NebulaChair,
9661 "NebulaChandelier" => Self::NebulaChandelier,
9662 "NebulaChest" => Self::NebulaChest,
9663 "NebulaClock" => Self::NebulaClock,
9664 "NebulaDoor" => Self::NebulaDoor,
9665 "NebulaLamp" => Self::NebulaLamp,
9666 "NebulaLantern" => Self::NebulaLantern,
9667 "NebulaPiano" => Self::NebulaPiano,
9668 "NebulaPlatform" => Self::NebulaPlatform,
9669 "NebulaSink" => Self::NebulaSink,
9670 "NebulaSofa" => Self::NebulaSofa,
9671 "NebulaTable" => Self::NebulaTable,
9672 "NebulaWorkbench" => Self::NebulaWorkbench,
9673 "Fake_NebulaChest" => Self::FakeNebulaChest,
9674 "NebulaToilet" => Self::NebulaToilet,
9675 "StardustBathtub" => Self::StardustBathtub,
9676 "StardustBed" => Self::StardustBed,
9677 "StardustBookcase" => Self::StardustBookcase,
9678 "StardustDresser" => Self::StardustDresser,
9679 "StardustCandelabra" => Self::StardustCandelabra,
9680 "StardustCandle" => Self::StardustCandle,
9681 "StardustChair" => Self::StardustChair,
9682 "StardustChandelier" => Self::StardustChandelier,
9683 "StardustChest" => Self::StardustChest,
9684 "StardustClock" => Self::StardustClock,
9685 "StardustDoor" => Self::StardustDoor,
9686 "StardustLamp" => Self::StardustLamp,
9687 "StardustLantern" => Self::StardustLantern,
9688 "StardustPiano" => Self::StardustPiano,
9689 "StardustPlatform" => Self::StardustPlatform,
9690 "StardustSink" => Self::StardustSink,
9691 "StardustSofa" => Self::StardustSofa,
9692 "StardustTable" => Self::StardustTable,
9693 "StardustWorkbench" => Self::StardustWorkbench,
9694 "Fake_StardustChest" => Self::FakeStardustChest,
9695 "StardustToilet" => Self::StardustToilet,
9696 "SolarBrick" => Self::SolarBrick,
9697 "VortexBrick" => Self::VortexBrick,
9698 "NebulaBrick" => Self::NebulaBrick,
9699 "StardustBrick" => Self::StardustBrick,
9700 "SolarBrickWall" => Self::SolarBrickWall,
9701 "VortexBrickWall" => Self::VortexBrickWall,
9702 "NebulaBrickWall" => Self::NebulaBrickWall,
9703 "StardustBrickWall" => Self::StardustBrickWall,
9704 "MusicBoxDayRemix" => Self::MusicBoxDayRemix,
9705 "CrackedBlueBrick" => Self::CrackedBlueBrick,
9706 "CrackedGreenBrick" => Self::CrackedGreenBrick,
9707 "CrackedPinkBrick" => Self::CrackedPinkBrick,
9708 "FlowerPacketWild" => Self::FlowerPacketWild,
9709 "GolfBallDyedBlack" => Self::GolfBallDyedBlack,
9710 "GolfBallDyedBlue" => Self::GolfBallDyedBlue,
9711 "GolfBallDyedBrown" => Self::GolfBallDyedBrown,
9712 "GolfBallDyedCyan" => Self::GolfBallDyedCyan,
9713 "GolfBallDyedGreen" => Self::GolfBallDyedGreen,
9714 "GolfBallDyedLimeGreen" => Self::GolfBallDyedLimeGreen,
9715 "GolfBallDyedOrange" => Self::GolfBallDyedOrange,
9716 "GolfBallDyedPink" => Self::GolfBallDyedPink,
9717 "GolfBallDyedPurple" => Self::GolfBallDyedPurple,
9718 "GolfBallDyedRed" => Self::GolfBallDyedRed,
9719 "GolfBallDyedSkyBlue" => Self::GolfBallDyedSkyBlue,
9720 "GolfBallDyedTeal" => Self::GolfBallDyedTeal,
9721 "GolfBallDyedViolet" => Self::GolfBallDyedViolet,
9722 "GolfBallDyedYellow" => Self::GolfBallDyedYellow,
9723 "AmberRobe" => Self::AmberRobe,
9724 "AmberHook" => Self::AmberHook,
9725 "OrangePhaseblade" => Self::OrangePhaseblade,
9726 "OrangePhasesaber" => Self::OrangePhasesaber,
9727 "OrangeStainedGlass" => Self::OrangeStainedGlass,
9728 "OrangePressurePlate" => Self::OrangePressurePlate,
9729 "MysticCoilSnake" => Self::MysticCoilSnake,
9730 "MagicConch" => Self::MagicConch,
9731 "GolfCart" => Self::GolfCart,
9732 "GolfChest" => Self::GolfChest,
9733 "Fake_GolfChest" => Self::FakeGolfChest,
9734 "DesertChest" => Self::DesertChest,
9735 "Fake_DesertChest" => Self::FakeDesertChest,
9736 "SanguineStaff" => Self::SanguineStaff,
9737 "SharpTears" => Self::SharpTears,
9738 "BloodMoonStarter" => Self::BloodMoonStarter,
9739 "DripplerFlail" => Self::DripplerFlail,
9740 "VampireFrogStaff" => Self::VampireFrogStaff,
9741 "GoldGoldfish" => Self::GoldGoldfish,
9742 "GoldGoldfishBowl" => Self::GoldGoldfishBowl,
9743 "CatBast" => Self::CatBast,
9744 "GoldStarryGlassBlock" => Self::GoldStarryGlassBlock,
9745 "BlueStarryGlassBlock" => Self::BlueStarryGlassBlock,
9746 "GoldStarryGlassWall" => Self::GoldStarryGlassWall,
9747 "BlueStarryGlassWall" => Self::BlueStarryGlassWall,
9748 "BabyBirdStaff" => Self::BabyBirdStaff,
9749 "Apricot" => Self::Apricot,
9750 "Banana" => Self::Banana,
9751 "BlackCurrant" => Self::BlackCurrant,
9752 "BloodOrange" => Self::BloodOrange,
9753 "Cherry" => Self::Cherry,
9754 "Coconut" => Self::Coconut,
9755 "Dragonfruit" => Self::DragonFruit,
9756 "Elderberry" => Self::Elderberry,
9757 "Grapefruit" => Self::Grapefruit,
9758 "Lemon" => Self::Lemon,
9759 "Mango" => Self::Mango,
9760 "Peach" => Self::Peach,
9761 "Pineapple" => Self::Pineapple,
9762 "Plum" => Self::Plum,
9763 "Rambutan" => Self::Rambutan,
9764 "Starfruit" => Self::Starfruit,
9765 "SandstoneBathtub" => Self::SandstoneBathtub,
9766 "SandstoneBed" => Self::SandstoneBed,
9767 "SandstoneBookcase" => Self::SandstoneBookcase,
9768 "SandstoneDresser" => Self::SandstoneDresser,
9769 "SandstoneCandelabra" => Self::SandstoneCandelabra,
9770 "SandstoneCandle" => Self::SandstoneCandle,
9771 "SandstoneChair" => Self::SandstoneChair,
9772 "SandstoneChandelier" => Self::SandstoneChandelier,
9773 "SandstoneClock" => Self::SandstoneClock,
9774 "SandstoneDoor" => Self::SandstoneDoor,
9775 "SandstoneLamp" => Self::SandstoneLamp,
9776 "SandstoneLantern" => Self::SandstoneLantern,
9777 "SandstonePiano" => Self::SandstonePiano,
9778 "SandstonePlatform" => Self::SandstonePlatform,
9779 "SandstoneSink" => Self::SandstoneSink,
9780 "SandstoneSofa" => Self::SandstoneSofa,
9781 "SandstoneTable" => Self::SandstoneTable,
9782 "SandstoneWorkbench" => Self::SandstoneWorkbench,
9783 "SandstoneToilet" => Self::SandstoneToilet,
9784 "BloodHamaxe" => Self::BloodHamaxe,
9785 "VoidMonolith" => Self::VoidMonolith,
9786 "ArrowSign" => Self::ArrowSign,
9787 "PaintedArrowSign" => Self::PaintedArrowSign,
9788 "GameMasterShirt" => Self::GameMasterShirt,
9789 "GameMasterPants" => Self::GameMasterPants,
9790 "StarPrincessCrown" => Self::StarPrincessCrown,
9791 "StarPrincessDress" => Self::StarPrincessDress,
9792 "BloodFishingRod" => Self::BloodFishingRod,
9793 "FoodPlatter" => Self::FoodPlatter,
9794 "BlackDragonflyJar" => Self::BlackDragonflyJar,
9795 "BlueDragonflyJar" => Self::BlueDragonflyJar,
9796 "GreenDragonflyJar" => Self::GreenDragonflyJar,
9797 "OrangeDragonflyJar" => Self::OrangeDragonflyJar,
9798 "RedDragonflyJar" => Self::RedDragonflyJar,
9799 "YellowDragonflyJar" => Self::YellowDragonflyJar,
9800 "GoldDragonflyJar" => Self::GoldDragonflyJar,
9801 "BlackDragonfly" => Self::BlackDragonfly,
9802 "BlueDragonfly" => Self::BlueDragonfly,
9803 "GreenDragonfly" => Self::GreenDragonfly,
9804 "OrangeDragonfly" => Self::OrangeDragonfly,
9805 "RedDragonfly" => Self::RedDragonfly,
9806 "YellowDragonfly" => Self::YellowDragonfly,
9807 "GoldDragonfly" => Self::GoldDragonfly,
9808 "PortableStool" => Self::PortableStool,
9809 "DragonflyStatue" => Self::DragonflyStatue,
9810 "PaperAirplaneA" => Self::PaperAirplaneA,
9811 "PaperAirplaneB" => Self::PaperAirplaneB,
9812 "CanOfWorms" => Self::CanOfWorms,
9813 "EncumberingStone" => Self::EncumberingStone,
9814 "ZapinatorGray" => Self::ZapinatorGray,
9815 "ZapinatorOrange" => Self::ZapinatorOrange,
9816 "GreenMoss" => Self::GreenMoss,
9817 "BrownMoss" => Self::BrownMoss,
9818 "RedMoss" => Self::RedMoss,
9819 "BlueMoss" => Self::BlueMoss,
9820 "PurpleMoss" => Self::PurpleMoss,
9821 "LavaMoss" => Self::LavaMoss,
9822 "BoulderStatue" => Self::BoulderStatue,
9823 "MusicBoxTitleAlt" => Self::MusicBoxTitleAlt,
9824 "MusicBoxStorm" => Self::MusicBoxStorm,
9825 "MusicBoxGraveyard" => Self::MusicBoxGraveyard,
9826 "Seagull" => Self::Seagull,
9827 "SeagullStatue" => Self::SeagullStatue,
9828 "LadyBug" => Self::LadyBug,
9829 "GoldLadyBug" => Self::GoldLadyBug,
9830 "Maggot" => Self::Maggot,
9831 "MaggotCage" => Self::MaggotCage,
9832 "CelestialWand" => Self::CelestialWand,
9833 "EucaluptusSap" => Self::EucaluptusSap,
9834 "KiteBlue" => Self::KiteBlue,
9835 "KiteBlueAndYellow" => Self::KiteBlueAndYellow,
9836 "KiteRed" => Self::KiteRed,
9837 "KiteRedAndYellow" => Self::KiteRedAndYellow,
9838 "KiteYellow" => Self::KiteYellow,
9839 "IvyGuitar" => Self::IvyGuitar,
9840 "Pupfish" => Self::Pupfish,
9841 "Grebe" => Self::Grebe,
9842 "Rat" => Self::Rat,
9843 "RatCage" => Self::RatCage,
9844 "KryptonMoss" => Self::KryptonMoss,
9845 "XenonMoss" => Self::XenonMoss,
9846 "KiteWyvern" => Self::KiteWyvern,
9847 "LadybugCage" => Self::LadybugCage,
9848 "BloodRainBow" => Self::BloodRainBow,
9849 "CombatBook" => Self::CombatBook,
9850 "DesertTorch" => Self::DesertTorch,
9851 "CoralTorch" => Self::CoralTorch,
9852 "CorruptTorch" => Self::CorruptTorch,
9853 "CrimsonTorch" => Self::CrimsonTorch,
9854 "HallowedTorch" => Self::HallowedTorch,
9855 "JungleTorch" => Self::JungleTorch,
9856 "ArgonMoss" => Self::ArgonMoss,
9857 "RollingCactus" => Self::RollingCactus,
9858 "ThinIce" => Self::ThinIce,
9859 "EchoBlock" => Self::EchoBlock,
9860 "ScarabFish" => Self::ScarabFish,
9861 "ScorpioFish" => Self::ScorpioFish,
9862 "Owl" => Self::Owl,
9863 "OwlCage" => Self::OwlCage,
9864 "OwlStatue" => Self::OwlStatue,
9865 "PupfishBowl" => Self::PupfishBowl,
9866 "GoldLadybugCage" => Self::GoldLadybugCage,
9867 "Geode" => Self::Geode,
9868 "Flounder" => Self::Flounder,
9869 "RockLobster" => Self::RockLobster,
9870 "LobsterTail" => Self::LobsterTail,
9871 "FloatingTube" => Self::FloatingTube,
9872 "FrozenCrate" => Self::FrozenCrate,
9873 "FrozenCrateHard" => Self::FrozenCrateHard,
9874 "OasisCrate" => Self::OasisCrate,
9875 "OasisCrateHard" => Self::OasisCrateHard,
9876 "SpectreGoggles" => Self::SpectreGoggles,
9877 "Oyster" => Self::Oyster,
9878 "ShuckedOyster" => Self::ShuckedOyster,
9879 "WhitePearl" => Self::WhitePearl,
9880 "BlackPearl" => Self::BlackPearl,
9881 "PinkPearl" => Self::PinkPearl,
9882 "StoneDoor" => Self::StoneDoor,
9883 "StonePlatform" => Self::StonePlatform,
9884 "OasisFountain" => Self::OasisFountain,
9885 "WaterStrider" => Self::WaterStrider,
9886 "GoldWaterStrider" => Self::GoldWaterStrider,
9887 "LawnFlamingo" => Self::LawnFlamingo,
9888 "MusicBoxUndergroundJungle" => Self::MusicBoxUndergroundJungle,
9889 "Grate" => Self::Grate,
9890 "ScarabBomb" => Self::ScarabBomb,
9891 "WroughtIronFence" => Self::WroughtIronFence,
9892 "SharkBait" => Self::SharkBait,
9893 "BeeMinecart" => Self::BeeMinecart,
9894 "LadybugMinecart" => Self::LadybugMinecart,
9895 "PigronMinecart" => Self::PigronMinecart,
9896 "SunflowerMinecart" => Self::SunflowerMinecart,
9897 "PottedForestCedar" => Self::PottedForestCedar,
9898 "PottedJungleCedar" => Self::PottedJungleCedar,
9899 "PottedHallowCedar" => Self::PottedHallowCedar,
9900 "PottedForestTree" => Self::PottedForestTree,
9901 "PottedJungleTree" => Self::PottedJungleTree,
9902 "PottedHallowTree" => Self::PottedHallowTree,
9903 "PottedForestPalm" => Self::PottedForestPalm,
9904 "PottedJunglePalm" => Self::PottedJunglePalm,
9905 "PottedHallowPalm" => Self::PottedHallowPalm,
9906 "PottedForestBamboo" => Self::PottedForestBamboo,
9907 "PottedJungleBamboo" => Self::PottedJungleBamboo,
9908 "PottedHallowBamboo" => Self::PottedHallowBamboo,
9909 "ScarabFishingRod" => Self::ScarabFishingRod,
9910 "HellMinecart" => Self::HellMinecart,
9911 "WitchBroom" => Self::WitchBroom,
9912 "ClusterRocketI" => Self::ClusterRocketI,
9913 "ClusterRocketII" => Self::ClusterRocketII,
9914 "WetRocket" => Self::WetRocket,
9915 "LavaRocket" => Self::LavaRocket,
9916 "HoneyRocket" => Self::HoneyRocket,
9917 "ShroomMinecart" => Self::ShroomMinecart,
9918 "AmethystMinecart" => Self::AmethystMinecart,
9919 "TopazMinecart" => Self::TopazMinecart,
9920 "SapphireMinecart" => Self::SapphireMinecart,
9921 "EmeraldMinecart" => Self::EmeraldMinecart,
9922 "RubyMinecart" => Self::RubyMinecart,
9923 "DiamondMinecart" => Self::DiamondMinecart,
9924 "MiniNukeI" => Self::MiniNukeI,
9925 "MiniNukeII" => Self::MiniNukeII,
9926 "DryRocket" => Self::DryRocket,
9927 "SandcastleBucket" => Self::SandcastleBucket,
9928 "TurtleCage" => Self::TurtleCage,
9929 "TurtleJungleCage" => Self::TurtleJungleCage,
9930 "Gladius" => Self::Gladius,
9931 "Turtle" => Self::Turtle,
9932 "TurtleJungle" => Self::TurtleJungle,
9933 "TurtleStatue" => Self::TurtleStatue,
9934 "AmberMinecart" => Self::AmberMinecart,
9935 "BeetleMinecart" => Self::BeetleMinecart,
9936 "MeowmereMinecart" => Self::MeowmereMinecart,
9937 "PartyMinecart" => Self::PartyMinecart,
9938 "PirateMinecart" => Self::PirateMinecart,
9939 "SteampunkMinecart" => Self::SteampunkMinecart,
9940 "GrebeCage" => Self::GrebeCage,
9941 "SeagullCage" => Self::SeagullCage,
9942 "WaterStriderCage" => Self::WaterStriderCage,
9943 "GoldWaterStriderCage" => Self::GoldWaterStriderCage,
9944 "LuckPotionLesser" => Self::LuckPotionLesser,
9945 "LuckPotion" => Self::LuckPotion,
9946 "LuckPotionGreater" => Self::LuckPotionGreater,
9947 "Seahorse" => Self::Seahorse,
9948 "SeahorseCage" => Self::SeahorseCage,
9949 "GoldSeahorse" => Self::GoldSeahorse,
9950 "GoldSeahorseCage" => Self::GoldSeahorseCage,
9951 "TimerOneHalfSecond" => Self::TimerOneHalfSecond,
9952 "TimerOneFourthSecond" => Self::TimerOneFourthSecond,
9953 "EbonstoneEcho" => Self::EbonstoneEcho,
9954 "MudWallEcho" => Self::MudWallEcho,
9955 "PearlstoneEcho" => Self::PearlstoneEcho,
9956 "SnowWallEcho" => Self::SnowWallEcho,
9957 "AmethystEcho" => Self::AmethystEcho,
9958 "TopazEcho" => Self::TopazEcho,
9959 "SapphireEcho" => Self::SapphireEcho,
9960 "EmeraldEcho" => Self::EmeraldEcho,
9961 "RubyEcho" => Self::RubyEcho,
9962 "DiamondEcho" => Self::DiamondEcho,
9963 "Cave1Echo" => Self::Cave1Echo,
9964 "Cave2Echo" => Self::Cave2Echo,
9965 "Cave3Echo" => Self::Cave3Echo,
9966 "Cave4Echo" => Self::Cave4Echo,
9967 "Cave5Echo" => Self::Cave5Echo,
9968 "Cave6Echo" => Self::Cave6Echo,
9969 "Cave7Echo" => Self::Cave7Echo,
9970 "SpiderEcho" => Self::SpiderEcho,
9971 "CorruptGrassEcho" => Self::CorruptGrassEcho,
9972 "HallowedGrassEcho" => Self::HallowedGrassEcho,
9973 "IceEcho" => Self::IceEcho,
9974 "ObsidianBackEcho" => Self::ObsidianBackEcho,
9975 "CrimsonGrassEcho" => Self::CrimsonGrassEcho,
9976 "CrimstoneEcho" => Self::CrimstoneEcho,
9977 "CaveWall1Echo" => Self::CaveWall1Echo,
9978 "CaveWall2Echo" => Self::CaveWall2Echo,
9979 "Cave8Echo" => Self::Cave8Echo,
9980 "Corruption1Echo" => Self::Corruption1Echo,
9981 "Corruption2Echo" => Self::Corruption2Echo,
9982 "Corruption3Echo" => Self::Corruption3Echo,
9983 "Corruption4Echo" => Self::Corruption4Echo,
9984 "Crimson1Echo" => Self::Crimson1Echo,
9985 "Crimson2Echo" => Self::Crimson2Echo,
9986 "Crimson3Echo" => Self::Crimson3Echo,
9987 "Crimson4Echo" => Self::Crimson4Echo,
9988 "Dirt1Echo" => Self::Dirt1Echo,
9989 "Dirt2Echo" => Self::Dirt2Echo,
9990 "Dirt3Echo" => Self::Dirt3Echo,
9991 "Dirt4Echo" => Self::Dirt4Echo,
9992 "Hallow1Echo" => Self::Hallow1Echo,
9993 "Hallow2Echo" => Self::Hallow2Echo,
9994 "Hallow3Echo" => Self::Hallow3Echo,
9995 "Hallow4Echo" => Self::Hallow4Echo,
9996 "Jungle1Echo" => Self::Jungle1Echo,
9997 "Jungle2Echo" => Self::Jungle2Echo,
9998 "Jungle3Echo" => Self::Jungle3Echo,
9999 "Jungle4Echo" => Self::Jungle4Echo,
10000 "Lava1Echo" => Self::Lava1Echo,
10001 "Lava2Echo" => Self::Lava2Echo,
10002 "Lava3Echo" => Self::Lava3Echo,
10003 "Lava4Echo" => Self::Lava4Echo,
10004 "Rocks1Echo" => Self::Rocks1Echo,
10005 "Rocks2Echo" => Self::Rocks2Echo,
10006 "Rocks3Echo" => Self::Rocks3Echo,
10007 "Rocks4Echo" => Self::Rocks4Echo,
10008 "TheBrideBanner" => Self::TheBrideBanner,
10009 "ZombieMermanBanner" => Self::ZombieMermanBanner,
10010 "EyeballFlyingFishBanner" => Self::EyeballFlyingFishBanner,
10011 "BloodSquidBanner" => Self::BloodSquidBanner,
10012 "BloodEelBanner" => Self::BloodEelBanner,
10013 "GoblinSharkBanner" => Self::GoblinSharkBanner,
10014 "LargeBambooBlock" => Self::LargeBambooBlock,
10015 "LargeBambooBlockWall" => Self::LargeBambooBlockWall,
10016 "DemonHorns" => Self::DemonHorns,
10017 "BambooLeaf" => Self::BambooLeaf,
10018 "HellCake" => Self::HellCake,
10019 "FogMachine" => Self::FogMachine,
10020 "PlasmaLamp" => Self::PlasmaLamp,
10021 "MarbleColumn" => Self::MarbleColumn,
10022 "ChefHat" => Self::ChefHat,
10023 "ChefShirt" => Self::ChefShirt,
10024 "ChefPants" => Self::ChefPants,
10025 "StarHairpin" => Self::StarHairpin,
10026 "HeartHairpin" => Self::HeartHairpin,
10027 "BunnyEars" => Self::BunnyEars,
10028 "DevilHorns" => Self::DevilHorns,
10029 "Fedora" => Self::Fedora,
10030 "UnicornHornHat" => Self::UnicornHornHat,
10031 "BambooBlock" => Self::BambooBlock,
10032 "BambooBlockWall" => Self::BambooBlockWall,
10033 "BambooBathtub" => Self::BambooBathtub,
10034 "BambooBed" => Self::BambooBed,
10035 "BambooBookcase" => Self::BambooBookcase,
10036 "BambooDresser" => Self::BambooDresser,
10037 "BambooCandelabra" => Self::BambooCandelabra,
10038 "BambooCandle" => Self::BambooCandle,
10039 "BambooChair" => Self::BambooChair,
10040 "BambooChandelier" => Self::BambooChandelier,
10041 "BambooChest" => Self::BambooChest,
10042 "BambooClock" => Self::BambooClock,
10043 "BambooDoor" => Self::BambooDoor,
10044 "BambooLamp" => Self::BambooLamp,
10045 "BambooLantern" => Self::BambooLantern,
10046 "BambooPiano" => Self::BambooPiano,
10047 "BambooPlatform" => Self::BambooPlatform,
10048 "BambooSink" => Self::BambooSink,
10049 "BambooSofa" => Self::BambooSofa,
10050 "BambooTable" => Self::BambooTable,
10051 "BambooWorkbench" => Self::BambooWorkbench,
10052 "Fake_BambooChest" => Self::FakeBambooChest,
10053 "BambooToilet" => Self::BambooToilet,
10054 "GolfClubStoneIron" => Self::GolfClubStoneIron,
10055 "GolfClubRustyPutter" => Self::GolfClubRustyPutter,
10056 "GolfClubBronzeWedge" => Self::GolfClubBronzeWedge,
10057 "GolfClubWoodDriver" => Self::GolfClubWoodDriver,
10058 "GolfClubMythrilIron" => Self::GolfClubMythrilIron,
10059 "GolfClubLeadPutter" => Self::GolfClubLeadPutter,
10060 "GolfClubGoldWedge" => Self::GolfClubGoldWedge,
10061 "GolfClubPearlwoodDriver" => Self::GolfClubPearlwoodDriver,
10062 "GolfClubTitaniumIron" => Self::GolfClubTitaniumIron,
10063 "GolfClubShroomitePutter" => Self::GolfClubShroomitePutter,
10064 "GolfClubDiamondWedge" => Self::GolfClubDiamondWedge,
10065 "GolfClubChlorophyteDriver" => Self::GolfClubChlorophyteDriver,
10066 "GolfTrophyBronze" => Self::GolfTrophyBronze,
10067 "GolfTrophySilver" => Self::GolfTrophySilver,
10068 "GolfTrophyGold" => Self::GolfTrophyGold,
10069 "BloodNautilusBanner" => Self::BloodNautilusBanner,
10070 "BirdieRattle" => Self::BirdieRattle,
10071 "ExoticEasternChewToy" => Self::ExoticEasternChewToy,
10072 "BedazzledNectar" => Self::BedazzledNectar,
10073 "MusicBoxJungleNight" => Self::MusicBoxJungleNight,
10074 "StormTigerStaff" => Self::StormTigerStaff,
10075 "ChumBucket" => Self::ChumBucket,
10076 "GardenGnome" => Self::GardenGnome,
10077 "KiteBoneSerpent" => Self::KiteBoneSerpent,
10078 "KiteWorldFeeder" => Self::KiteWorldFeeder,
10079 "KiteBunny" => Self::KiteBunny,
10080 "KitePigron" => Self::KitePigron,
10081 "AppleJuice" => Self::AppleJuice,
10082 "GrapeJuice" => Self::GrapeJuice,
10083 "Lemonade" => Self::Lemonade,
10084 "BananaDaiquiri" => Self::BananaDaiquiri,
10085 "PeachSangria" => Self::PeachSangria,
10086 "PinaColada" => Self::PinaColada,
10087 "TropicalSmoothie" => Self::TropicalSmoothie,
10088 "BloodyMoscato" => Self::BloodyMoscato,
10089 "SmoothieofDarkness" => Self::SmoothieOfDarkness,
10090 "PrismaticPunch" => Self::PrismaticPunch,
10091 "FruitJuice" => Self::FruitJuice,
10092 "FruitSalad" => Self::FruitSalad,
10093 "AndrewSphinx" => Self::AndrewSphinx,
10094 "WatchfulAntlion" => Self::WatchfulAntlion,
10095 "BurningSpirit" => Self::BurningSpirit,
10096 "JawsOfDeath" => Self::JawsOfDeath,
10097 "TheSandsOfSlime" => Self::TheSandsOfSlime,
10098 "SnakesIHateSnakes" => Self::SnakesIHateSnakes,
10099 "LifeAboveTheSand" => Self::LifeAboveTheSand,
10100 "Oasis" => Self::Oasis,
10101 "PrehistoryPreserved" => Self::PrehistoryPreserved,
10102 "AncientTablet" => Self::AncientTablet,
10103 "Uluru" => Self::Uluru,
10104 "VisitingThePyramids" => Self::VisitingThePyramids,
10105 "BandageBoy" => Self::BandageBoy,
10106 "DivineEye" => Self::DivineEye,
10107 "AmethystStoneBlock" => Self::AmethystStoneBlock,
10108 "TopazStoneBlock" => Self::TopazStoneBlock,
10109 "SapphireStoneBlock" => Self::SapphireStoneBlock,
10110 "EmeraldStoneBlock" => Self::EmeraldStoneBlock,
10111 "RubyStoneBlock" => Self::RubyStoneBlock,
10112 "DiamondStoneBlock" => Self::DiamondStoneBlock,
10113 "AmberStoneBlock" => Self::AmberStoneBlock,
10114 "AmberStoneWallEcho" => Self::AmberStoneWallEcho,
10115 "KiteManEater" => Self::KiteManEater,
10116 "KiteJellyfishBlue" => Self::KiteJellyfishBlue,
10117 "KiteJellyfishPink" => Self::KiteJellyfishPink,
10118 "KiteShark" => Self::KiteShark,
10119 "SuperHeroMask" => Self::SuperHeroMask,
10120 "SuperHeroCostume" => Self::SuperHeroCostume,
10121 "SuperHeroTights" => Self::SuperHeroTights,
10122 "PinkFairyJar" => Self::PinkFairyJar,
10123 "GreenFairyJar" => Self::GreenFairyJar,
10124 "BlueFairyJar" => Self::BlueFairyJar,
10125 "GolfPainting1" => Self::GolfPainting1,
10126 "GolfPainting2" => Self::GolfPainting2,
10127 "GolfPainting3" => Self::GolfPainting3,
10128 "GolfPainting4" => Self::GolfPainting4,
10129 "FogboundDye" => Self::FogboundDye,
10130 "BloodbathDye" => Self::BloodbathDye,
10131 "PrettyPinkDressSkirt" => Self::PrettyPinkDressSkirt,
10132 "PrettyPinkDressPants" => Self::PrettyPinkDressPants,
10133 "PrettyPinkRibbon" => Self::PrettyPinkRibbon,
10134 "BambooFence" => Self::BambooFence,
10135 "GlowPaint" => Self::GlowPaint,
10136 "KiteSandShark" => Self::KiteSandShark,
10137 "KiteBunnyCorrupt" => Self::KiteBunnyCorrupt,
10138 "KiteBunnyCrimson" => Self::KiteBunnyCrimson,
10139 "BlandWhip" => Self::BlandWhip,
10140 "DrumStick" => Self::DrumStick,
10141 "KiteGoldfish" => Self::KiteGoldfish,
10142 "KiteAngryTrapper" => Self::KiteAngryTrapper,
10143 "KiteKoi" => Self::KiteKoi,
10144 "KiteCrawltipede" => Self::KiteCrawltipede,
10145 "SwordWhip" => Self::SwordWhip,
10146 "MaceWhip" => Self::MaceWhip,
10147 "ScytheWhip" => Self::ScytheWhip,
10148 "KiteSpectrum" => Self::KiteSpectrum,
10149 "ReleaseDoves" => Self::ReleaseDoves,
10150 "KiteWanderingEye" => Self::KiteWanderingEye,
10151 "KiteUnicorn" => Self::KiteUnicorn,
10152 "UndertakerHat" => Self::UndertakerHat,
10153 "UndertakerCoat" => Self::UndertakerCoat,
10154 "DandelionBanner" => Self::DandelionBanner,
10155 "GnomeBanner" => Self::GnomeBanner,
10156 "DesertCampfire" => Self::DesertCampfire,
10157 "CoralCampfire" => Self::CoralCampfire,
10158 "CorruptCampfire" => Self::CorruptCampfire,
10159 "CrimsonCampfire" => Self::CrimsonCampfire,
10160 "HallowedCampfire" => Self::HallowedCampfire,
10161 "JungleCampfire" => Self::JungleCampfire,
10162 "SoulBottleLight" => Self::SoulBottleLight,
10163 "SoulBottleNight" => Self::SoulBottleNight,
10164 "SoulBottleFlight" => Self::SoulBottleFlight,
10165 "SoulBottleSight" => Self::SoulBottleSight,
10166 "SoulBottleMight" => Self::SoulBottleMight,
10167 "SoulBottleFright" => Self::SoulBottleFright,
10168 "MudBud" => Self::MudBud,
10169 "ReleaseLantern" => Self::ReleaseLantern,
10170 "QuadBarrelShotgun" => Self::QuadBarrelShotgun,
10171 "FuneralHat" => Self::FuneralHat,
10172 "FuneralCoat" => Self::FuneralCoat,
10173 "FuneralPants" => Self::FuneralPants,
10174 "TragicUmbrella" => Self::TragicUmbrella,
10175 "VictorianGothHat" => Self::VictorianGothHat,
10176 "VictorianGothDress" => Self::VictorianGothDress,
10177 "TatteredWoodSign" => Self::TatteredWoodSign,
10178 "GravediggerShovel" => Self::GravediggerShovel,
10179 "DungeonDesertChest" => Self::DungeonDesertChest,
10180 "Fake_DungeonDesertChest" => Self::FakeDungeonDesertChest,
10181 "DungeonDesertKey" => Self::DungeonDesertKey,
10182 "SparkleGuitar" => Self::SparkleGuitar,
10183 "MolluskWhistle" => Self::MolluskWhistle,
10184 "BorealBeam" => Self::BorealBeam,
10185 "RichMahoganyBeam" => Self::RichMahoganyBeam,
10186 "GraniteColumn" => Self::GraniteColumn,
10187 "SandstoneColumn" => Self::SandstoneColumn,
10188 "MushroomBeam" => Self::MushroomBeam,
10189 "FirstFractal" => Self::FirstFractal,
10190 "Nevermore" => Self::Nevermore,
10191 "Reborn" => Self::Reborn,
10192 "Graveyard" => Self::Graveyard,
10193 "GhostManifestation" => Self::GhostManifestation,
10194 "WickedUndead" => Self::WickedUndead,
10195 "BloodyGoblet" => Self::BloodyGoblet,
10196 "StillLife" => Self::StillLife,
10197 "GhostarsWings" => Self::GhostarsWings,
10198 "TerraToilet" => Self::TerraToilet,
10199 "GhostarSkullPin" => Self::GhostarSkullPin,
10200 "GhostarShirt" => Self::GhostarShirt,
10201 "GhostarPants" => Self::GhostarPants,
10202 "BallOfFuseWire" => Self::BallOfFuseWire,
10203 "FullMoonSqueakyToy" => Self::FullMoonSqueakyToy,
10204 "OrnateShadowKey" => Self::OrnateShadowKey,
10205 "DrManFlyMask" => Self::DrManFlyMask,
10206 "DrManFlyLabCoat" => Self::DrManFlyLabCoat,
10207 "ButcherMask" => Self::ButcherMask,
10208 "ButcherApron" => Self::ButcherApron,
10209 "ButcherPants" => Self::ButcherPants,
10210 "Football" => Self::Football,
10211 "HunterCloak" => Self::HunterCloak,
10212 "CoffinMinecart" => Self::CoffinMinecart,
10213 "SafemanWings" => Self::SafemanWings,
10214 "SafemanSunHair" => Self::SafemanSunHair,
10215 "SafemanSunDress" => Self::SafemanSunDress,
10216 "SafemanDressLeggings" => Self::SafemanDressLeggings,
10217 "FoodBarbarianWings" => Self::FoodBarbarianWings,
10218 "FoodBarbarianHelm" => Self::FoodBarbarianHelm,
10219 "FoodBarbarianArmor" => Self::FoodBarbarianArmor,
10220 "FoodBarbarianGreaves" => Self::FoodBarbarianGreaves,
10221 "GroxTheGreatWings" => Self::GroxTheGreatWings,
10222 "GroxTheGreatHelm" => Self::GroxTheGreatHelm,
10223 "GroxTheGreatArmor" => Self::GroxTheGreatArmor,
10224 "GroxTheGreatGreaves" => Self::GroxTheGreatGreaves,
10225 "Smolstar" => Self::Smolstar,
10226 "SquirrelHook" => Self::SquirrelHook,
10227 "BouncingShield" => Self::BouncingShield,
10228 "RockGolemHead" => Self::RockGolemHead,
10229 "CritterShampoo" => Self::CritterShampoo,
10230 "DiggingMoleMinecart" => Self::DiggingMoleMinecart,
10231 "Shroomerang" => Self::Shroomerang,
10232 "TreeGlobe" => Self::TreeGlobe,
10233 "WorldGlobe" => Self::WorldGlobe,
10234 "DontHurtCrittersBook" => Self::DontHurtCrittersBook,
10235 "DogEars" => Self::DogEars,
10236 "DogTail" => Self::DogTail,
10237 "FoxEars" => Self::FoxEars,
10238 "FoxTail" => Self::FoxTail,
10239 "LizardEars" => Self::LizardEars,
10240 "LizardTail" => Self::LizardTail,
10241 "PandaEars" => Self::PandaEars,
10242 "BunnyTail" => Self::BunnyTail,
10243 "FairyGlowstick" => Self::FairyGlowstick,
10244 "LightningCarrot" => Self::LightningCarrot,
10245 "HallowBossDye" => Self::HallowBossDye,
10246 "MushroomHat" => Self::MushroomHat,
10247 "MushroomVest" => Self::MushroomVest,
10248 "MushroomPants" => Self::MushroomPants,
10249 "FairyQueenBossBag" => Self::FairyQueenBossBag,
10250 "FairyQueenTrophy" => Self::FairyQueenTrophy,
10251 "FairyQueenMask" => Self::FairyQueenMask,
10252 "PaintedHorseSaddle" => Self::PaintedHorseSaddle,
10253 "MajesticHorseSaddle" => Self::MajesticHorseSaddle,
10254 "DarkHorseSaddle" => Self::DarkHorseSaddle,
10255 "JoustingLance" => Self::JoustingLance,
10256 "ShadowJoustingLance" => Self::ShadowJoustingLance,
10257 "HallowJoustingLance" => Self::HallowJoustingLance,
10258 "PogoStick" => Self::PogoStick,
10259 "PirateShipMountItem" => Self::PirateShipMount,
10260 "SpookyWoodMountItem" => Self::SpookyWoodMount,
10261 "SantankMountItem" => Self::SantankMount,
10262 "WallOfFleshGoatMountItem" => Self::WallOfFleshGoatMount,
10263 "DarkMageBookMountItem" => Self::DarkMageBookMount,
10264 "KingSlimePetItem" => Self::KingSlimePet,
10265 "EyeOfCthulhuPetItem" => Self::EyeOfCthulhuPet,
10266 "EaterOfWorldsPetItem" => Self::EaterOfWorldsPet,
10267 "BrainOfCthulhuPetItem" => Self::BrainOfCthulhuPet,
10268 "SkeletronPetItem" => Self::SkeletronPet,
10269 "QueenBeePetItem" => Self::QueenBeePet,
10270 "DestroyerPetItem" => Self::DestroyerPet,
10271 "TwinsPetItem" => Self::TwinsPet,
10272 "SkeletronPrimePetItem" => Self::SkeletronPrimePet,
10273 "PlanteraPetItem" => Self::PlanteraPet,
10274 "GolemPetItem" => Self::GolemPet,
10275 "DukeFishronPetItem" => Self::DukeFishronPet,
10276 "LunaticCultistPetItem" => Self::LunaticCultistPet,
10277 "MoonLordPetItem" => Self::MoonLordPet,
10278 "FairyQueenPetItem" => Self::FairyQueenPet,
10279 "PumpkingPetItem" => Self::PumpkingPet,
10280 "EverscreamPetItem" => Self::EverscreamPet,
10281 "IceQueenPetItem" => Self::IceQueenPet,
10282 "MartianPetItem" => Self::MartianPet,
10283 "DD2OgrePetItem" => Self::DD2OgrePet,
10284 "DD2BetsyPetItem" => Self::DD2BetsyPet,
10285 "CombatWrench" => Self::CombatWrench,
10286 "DemonConch" => Self::DemonConch,
10287 "BottomlessLavaBucket" => Self::BottomlessLavaBucket,
10288 "FireproofBugNet" => Self::FireproofBugNet,
10289 "FlameWakerBoots" => Self::FlameWakerBoots,
10290 "RainbowWings" => Self::RainbowWings,
10291 "WetBomb" => Self::WetBomb,
10292 "LavaBomb" => Self::LavaBomb,
10293 "HoneyBomb" => Self::HoneyBomb,
10294 "DryBomb" => Self::DryBomb,
10295 "SuperheatedBlood" => Self::SuperheatedBlood,
10296 "LicenseCat" => Self::LicenseCat,
10297 "LicenseDog" => Self::LicenseDog,
10298 "GemSquirrelAmethyst" => Self::GemSquirrelAmethyst,
10299 "GemSquirrelTopaz" => Self::GemSquirrelTopaz,
10300 "GemSquirrelSapphire" => Self::GemSquirrelSapphire,
10301 "GemSquirrelEmerald" => Self::GemSquirrelEmerald,
10302 "GemSquirrelRuby" => Self::GemSquirrelRuby,
10303 "GemSquirrelDiamond" => Self::GemSquirrelDiamond,
10304 "GemSquirrelAmber" => Self::GemSquirrelAmber,
10305 "GemBunnyAmethyst" => Self::GemBunnyAmethyst,
10306 "GemBunnyTopaz" => Self::GemBunnyTopaz,
10307 "GemBunnySapphire" => Self::GemBunnySapphire,
10308 "GemBunnyEmerald" => Self::GemBunnyEmerald,
10309 "GemBunnyRuby" => Self::GemBunnyRuby,
10310 "GemBunnyDiamond" => Self::GemBunnyDiamond,
10311 "GemBunnyAmber" => Self::GemBunnyAmber,
10312 "HellButterfly" => Self::HellButterfly,
10313 "HellButterflyJar" => Self::HellButterflyJar,
10314 "Lavafly" => Self::Lavafly,
10315 "LavaflyinaBottle" => Self::LavaflyInABottle,
10316 "MagmaSnail" => Self::MagmaSnail,
10317 "MagmaSnailCage" => Self::MagmaSnailCage,
10318 "GemTreeTopazSeed" => Self::GemTreeTopazSeed,
10319 "GemTreeAmethystSeed" => Self::GemTreeAmethystSeed,
10320 "GemTreeSapphireSeed" => Self::GemTreeSapphireSeed,
10321 "GemTreeEmeraldSeed" => Self::GemTreeEmeraldSeed,
10322 "GemTreeRubySeed" => Self::GemTreeRubySeed,
10323 "GemTreeDiamondSeed" => Self::GemTreeDiamondSeed,
10324 "GemTreeAmberSeed" => Self::GemTreeAmberSeed,
10325 "PotSuspended" => Self::PotSuspended,
10326 "PotSuspendedDaybloom" => Self::PotSuspendedDaybloom,
10327 "PotSuspendedMoonglow" => Self::PotSuspendedMoonglow,
10328 "PotSuspendedWaterleaf" => Self::PotSuspendedWaterleaf,
10329 "PotSuspendedShiverthorn" => Self::PotSuspendedShiverthorn,
10330 "PotSuspendedBlinkroot" => Self::PotSuspendedBlinkroot,
10331 "PotSuspendedDeathweedCorrupt" => Self::PotSuspendedDeathweedCorrupt,
10332 "PotSuspendedDeathweedCrimson" => Self::PotSuspendedDeathweedCrimson,
10333 "PotSuspendedFireblossom" => Self::PotSuspendedFireblossom,
10334 "BrazierSuspended" => Self::BrazierSuspended,
10335 "VolcanoSmall" => Self::VolcanoSmall,
10336 "VolcanoLarge" => Self::VolcanoLarge,
10337 "PotionOfReturn" => Self::PotionOfReturn,
10338 "VanityTreeSakuraSeed" => Self::VanityTreeSakuraSeed,
10339 "LavaAbsorbantSponge" => Self::LavaAbsorbantSponge,
10340 "HallowedHood" => Self::HallowedHood,
10341 "HellfireTreads" => Self::HellfireTreads,
10342 "TeleportationPylonJungle" => Self::TeleportationPylonJungle,
10343 "TeleportationPylonPurity" => Self::TeleportationPylonPurity,
10344 "LavaCrate" => Self::LavaCrate,
10345 "LavaCrateHard" => Self::LavaCrateHard,
10346 "ObsidianLockbox" => Self::ObsidianLockbox,
10347 "LavaFishbowl" => Self::LavaFishbowl,
10348 "LavaFishingHook" => Self::LavaFishingHook,
10349 "AmethystBunnyCage" => Self::AmethystBunnyCage,
10350 "TopazBunnyCage" => Self::TopazBunnyCage,
10351 "SapphireBunnyCage" => Self::SapphireBunnyCage,
10352 "EmeraldBunnyCage" => Self::EmeraldBunnyCage,
10353 "RubyBunnyCage" => Self::RubyBunnyCage,
10354 "DiamondBunnyCage" => Self::DiamondBunnyCage,
10355 "AmberBunnyCage" => Self::AmberBunnyCage,
10356 "AmethystSquirrelCage" => Self::AmethystSquirrelCage,
10357 "TopazSquirrelCage" => Self::TopazSquirrelCage,
10358 "SapphireSquirrelCage" => Self::SapphireSquirrelCage,
10359 "EmeraldSquirrelCage" => Self::EmeraldSquirrelCage,
10360 "RubySquirrelCage" => Self::RubySquirrelCage,
10361 "DiamondSquirrelCage" => Self::DiamondSquirrelCage,
10362 "AmberSquirrelCage" => Self::AmberSquirrelCage,
10363 "AncientHallowedMask" => Self::AncientHallowedMask,
10364 "AncientHallowedHelmet" => Self::AncientHallowedHelmet,
10365 "AncientHallowedHeadgear" => Self::AncientHallowedHeadgear,
10366 "AncientHallowedHood" => Self::AncientHallowedHood,
10367 "AncientHallowedPlateMail" => Self::AncientHallowedPlateMail,
10368 "AncientHallowedGreaves" => Self::AncientHallowedGreaves,
10369 "PottedLavaPlantPalm" => Self::PottedLavaPlantPalm,
10370 "PottedLavaPlantBush" => Self::PottedLavaPlantBush,
10371 "PottedLavaPlantBramble" => Self::PottedLavaPlantBramble,
10372 "PottedLavaPlantBulb" => Self::PottedLavaPlantBulb,
10373 "PottedLavaPlantTendrils" => Self::PottedLavaPlantTendrils,
10374 "VanityTreeYellowWillowSeed" => Self::VanityTreeYellowWillowSeed,
10375 "DirtBomb" => Self::DirtBomb,
10376 "DirtStickyBomb" => Self::DirtStickyBomb,
10377 "LicenseBunny" => Self::LicenseBunny,
10378 "CoolWhip" => Self::CoolWhip,
10379 "FireWhip" => Self::FireWhip,
10380 "ThornWhip" => Self::ThornWhip,
10381 "RainbowWhip" => Self::RainbowWhip,
10382 "TungstenBullet" => Self::TungstenBullet,
10383 "TeleportationPylonHallow" => Self::TeleportationPylonHallow,
10384 "TeleportationPylonUnderground" => Self::TeleportationPylonUnderground,
10385 "TeleportationPylonOcean" => Self::TeleportationPylonOcean,
10386 "TeleportationPylonDesert" => Self::TeleportationPylonDesert,
10387 "TeleportationPylonSnow" => Self::TeleportationPylonSnow,
10388 "TeleportationPylonMushroom" => Self::TeleportationPylonMushroom,
10389 "CavernFountain" => Self::CavernFountain,
10390 "PiercingStarlight" => Self::PiercingStarlight,
10391 "EyeofCthulhuMasterTrophy" => Self::EyeOfCthulhuMasterTrophy,
10392 "EaterofWorldsMasterTrophy" => Self::EaterOfWorldsMasterTrophy,
10393 "BrainofCthulhuMasterTrophy" => Self::BrainOfCthulhuMasterTrophy,
10394 "SkeletronMasterTrophy" => Self::SkeletronMasterTrophy,
10395 "QueenBeeMasterTrophy" => Self::QueenBeeMasterTrophy,
10396 "KingSlimeMasterTrophy" => Self::KingSlimeMasterTrophy,
10397 "WallofFleshMasterTrophy" => Self::WallOfFleshMasterTrophy,
10398 "TwinsMasterTrophy" => Self::TwinsMasterTrophy,
10399 "DestroyerMasterTrophy" => Self::DestroyerMasterTrophy,
10400 "SkeletronPrimeMasterTrophy" => Self::SkeletronPrimeMasterTrophy,
10401 "PlanteraMasterTrophy" => Self::PlanteraMasterTrophy,
10402 "GolemMasterTrophy" => Self::GolemMasterTrophy,
10403 "DukeFishronMasterTrophy" => Self::DukeFishronMasterTrophy,
10404 "LunaticCultistMasterTrophy" => Self::LunaticCultistMasterTrophy,
10405 "MoonLordMasterTrophy" => Self::MoonLordMasterTrophy,
10406 "UFOMasterTrophy" => Self::UFOMasterTrophy,
10407 "FlyingDutchmanMasterTrophy" => Self::FlyingDutchmanMasterTrophy,
10408 "MourningWoodMasterTrophy" => Self::MourningWoodMasterTrophy,
10409 "PumpkingMasterTrophy" => Self::PumpkingMasterTrophy,
10410 "IceQueenMasterTrophy" => Self::IceQueenMasterTrophy,
10411 "EverscreamMasterTrophy" => Self::EverscreamMasterTrophy,
10412 "SantankMasterTrophy" => Self::SantankMasterTrophy,
10413 "DarkMageMasterTrophy" => Self::DarkMageMasterTrophy,
10414 "OgreMasterTrophy" => Self::OgreMasterTrophy,
10415 "BetsyMasterTrophy" => Self::BetsyMasterTrophy,
10416 "FairyQueenMasterTrophy" => Self::FairyQueenMasterTrophy,
10417 "QueenSlimeMasterTrophy" => Self::QueenSlimeMasterTrophy,
10418 "TeleportationPylonVictory" => Self::TeleportationPylonVictory,
10419 "FairyQueenMagicItem" => Self::FairyQueenMagic,
10420 "FairyQueenRangedItem" => Self::FairyQueenRanged,
10421 "LongRainbowTrailWings" => Self::LongRainbowTrailWings,
10422 "RabbitOrder" => Self::RabbitOrder,
10423 "Zenith" => Self::Zenith,
10424 "QueenSlimeBossBag" => Self::QueenSlimeBossBag,
10425 "QueenSlimeTrophy" => Self::QueenSlimeTrophy,
10426 "QueenSlimeMask" => Self::QueenSlimeMask,
10427 "QueenSlimePetItem" => Self::QueenSlimePet,
10428 "EmpressButterfly" => Self::EmpressButterfly,
10429 "AccentSlab" => Self::AccentSlab,
10430 "TruffleWormCage" => Self::TruffleWormCage,
10431 "EmpressButterflyJar" => Self::EmpressButterflyJar,
10432 "RockGolemBanner" => Self::RockGolemBanner,
10433 "BloodMummyBanner" => Self::BloodMummyBanner,
10434 "SporeSkeletonBanner" => Self::SporeSkeletonBanner,
10435 "SporeBatBanner" => Self::SporeBatBanner,
10436 "LarvaeAntlionBanner" => Self::LarvaeAntlionBanner,
10437 "CrimsonBunnyBanner" => Self::CrimsonBunnyBanner,
10438 "CrimsonGoldfishBanner" => Self::CrimsonGoldfishBanner,
10439 "CrimsonPenguinBanner" => Self::CrimsonPenguinBanner,
10440 "BigMimicCorruptionBanner" => Self::BigMimicCorruptionBanner,
10441 "BigMimicCrimsonBanner" => Self::BigMimicCrimsonBanner,
10442 "BigMimicHallowBanner" => Self::BigMimicHallowBanner,
10443 "MossHornetBanner" => Self::MossHornetBanner,
10444 "WanderingEyeBanner" => Self::WanderingEyeBanner,
10445 "CreativeWings" => Self::CreativeWings,
10446 "MusicBoxQueenSlime" => Self::MusicBoxQueenSlime,
10447 "QueenSlimeHook" => Self::QueenSlimeHook,
10448 "QueenSlimeMountSaddle" => Self::QueenSlimeMountSaddle,
10449 "CrystalNinjaHelmet" => Self::CrystalNinjaHelmet,
10450 "CrystalNinjaChestplate" => Self::CrystalNinjaChestplate,
10451 "CrystalNinjaLeggings" => Self::CrystalNinjaLeggings,
10452 "MusicBoxEmpressOfLight" => Self::MusicBoxEmpressOfLight,
10453 "GelBalloon" => Self::GelBalloon,
10454 "VolatileGelatin" => Self::VolatileGelatin,
10455 "QueenSlimeCrystal" => Self::QueenSlimeCrystal,
10456 "EmpressFlightBooster" => Self::EmpressFlightBooster,
10457 "MusicBoxDukeFishron" => Self::MusicBoxDukeFishron,
10458 "MusicBoxMorningRain" => Self::MusicBoxMorningRain,
10459 "MusicBoxConsoleTitle" => Self::MusicBoxConsoleTitle,
10460 "ChippysCouch" => Self::ChippysCouch,
10461 "GraduationCapBlue" => Self::GraduationCapBlue,
10462 "GraduationCapMaroon" => Self::GraduationCapMaroon,
10463 "GraduationCapBlack" => Self::GraduationCapBlack,
10464 "GraduationGownBlue" => Self::GraduationGownBlue,
10465 "GraduationGownMaroon" => Self::GraduationGownMaroon,
10466 "GraduationGownBlack" => Self::GraduationGownBlack,
10467 "TerrasparkBoots" => Self::TerrasparkBoots,
10468 "MoonLordLegs" => Self::MoonLordLegs,
10469 "OceanCrate" => Self::OceanCrate,
10470 "OceanCrateHard" => Self::OceanCrateHard,
10471 "BadgersHat" => Self::BadgersHat,
10472 "EmpressBlade" => Self::EmpressBlade,
10473 "MusicBoxUndergroundDesert" => Self::MusicBoxUndergroundDesert,
10474 "DeadMansSweater" => Self::DeadMansSweater,
10475 "TeaKettle" => Self::TeaKettle,
10476 "Teacup" => Self::Teacup,
10477 "TreasureMagnet" => Self::TreasureMagnet,
10478 "Mace" => Self::Mace,
10479 "FlamingMace" => Self::FlamingMace,
10480 "SleepingIcon" => Self::SleepingIcon,
10481 "MusicBoxOWRain" => Self::MusicBoxOWRain,
10482 "MusicBoxOWDay" => Self::MusicBoxOWDay,
10483 "MusicBoxOWNight" => Self::MusicBoxOWNight,
10484 "MusicBoxOWUnderground" => Self::MusicBoxOWUnderground,
10485 "MusicBoxOWDesert" => Self::MusicBoxOWDesert,
10486 "MusicBoxOWOcean" => Self::MusicBoxOWOcean,
10487 "MusicBoxOWMushroom" => Self::MusicBoxOWMushroom,
10488 "MusicBoxOWDungeon" => Self::MusicBoxOWDungeon,
10489 "MusicBoxOWSpace" => Self::MusicBoxOWSpace,
10490 "MusicBoxOWUnderworld" => Self::MusicBoxOWUnderworld,
10491 "MusicBoxOWSnow" => Self::MusicBoxOWSnow,
10492 "MusicBoxOWCorruption" => Self::MusicBoxOWCorruption,
10493 "MusicBoxOWUndergroundCorruption" => Self::MusicBoxOWUndergroundCorruption,
10494 "MusicBoxOWCrimson" => Self::MusicBoxOWCrimson,
10495 "MusicBoxOWUndergroundCrimson" => Self::MusicBoxOWUndergroundCrimson,
10496 "MusicBoxOWUndergroundSnow" => Self::MusicBoxOWUndergroundSnow,
10497 "MusicBoxOWUndergroundHallow" => Self::MusicBoxOWUndergroundHallow,
10498 "MusicBoxOWBloodMoon" => Self::MusicBoxOWBloodMoon,
10499 "MusicBoxOWBoss2" => Self::MusicBoxOWBoss2,
10500 "MusicBoxOWBoss1" => Self::MusicBoxOWBoss1,
10501 "MusicBoxOWInvasion" => Self::MusicBoxOWInvasion,
10502 "MusicBoxOWTowers" => Self::MusicBoxOWTowers,
10503 "MusicBoxOWMoonLord" => Self::MusicBoxOWMoonLord,
10504 "MusicBoxOWPlantera" => Self::MusicBoxOWPlantera,
10505 "MusicBoxOWJungle" => Self::MusicBoxOWJungle,
10506 "MusicBoxOWWallOfFlesh" => Self::MusicBoxOWWallOfFlesh,
10507 "MusicBoxOWHallow" => Self::MusicBoxOWHallow,
10508 "MilkCarton" => Self::MilkCarton,
10509 "CoffeeCup" => Self::CoffeeCup,
10510 "TorchGodsFavor" => Self::TorchGodsFavor,
10511 "MusicBoxCredits" => Self::MusicBoxCredits,
10512 "PlaguebringerHelmet" => Self::PlaguebringerHelmet,
10513 "PlaguebringerChestplate" => Self::PlaguebringerChestplate,
10514 "PlaguebringerGreaves" => Self::PlaguebringerGreaves,
10515 "RoninHat" => Self::RoninHat,
10516 "RoninShirt" => Self::RoninShirt,
10517 "RoninPants" => Self::RoninPants,
10518 "TimelessTravelerHood" => Self::TimelessTravelerHood,
10519 "TimelessTravelerRobe" => Self::TimelessTravelerRobe,
10520 "TimelessTravelerBottom" => Self::TimelessTravelerBottom,
10521 "FloretProtectorHelmet" => Self::FloretProtectorHelmet,
10522 "FloretProtectorChestplate" => Self::FloretProtectorChestplate,
10523 "FloretProtectorLegs" => Self::FloretProtectorLegs,
10524 "CapricornMask" => Self::CapricornMask,
10525 "CapricornChestplate" => Self::CapricornChestplate,
10526 "CapricornLegs" => Self::CapricornLegs,
10527 "CapricornTail" => Self::CapricornTail,
10528 "TVHeadMask" => Self::TVHeadMask,
10529 "TVHeadSuit" => Self::TVHeadSuit,
10530 "TVHeadPants" => Self::TVHeadPants,
10531 "LavaproofTackleBag" => Self::LavaproofTackleBag,
10532 "PrincessWeapon" => Self::PrincessWeapon,
10533 "BeeHive" => Self::BeeHive,
10534 "AntlionEggs" => Self::AntlionEggs,
10535 "FlinxFurCoat" => Self::FlinxFurCoat,
10536 "FlinxStaff" => Self::FlinxStaff,
10537 "FlinxFur" => Self::FlinxFur,
10538 "RoyalTiara" => Self::RoyalTiara,
10539 "RoyalDressTop" => Self::RoyalDressTop,
10540 "RoyalDressBottom" => Self::RoyalDressBottom,
10541 "BoneWhip" => Self::BoneWhip,
10542 "RainbowCursor" => Self::RainbowCursor,
10543 "RoyalScepter" => Self::RoyalScepter,
10544 "GlassSlipper" => Self::GlassSlipper,
10545 "PrinceUniform" => Self::PrinceUniform,
10546 "PrincePants" => Self::PrincePants,
10547 "PrinceCape" => Self::PrinceCape,
10548 "PottedCrystalPlantFern" => Self::PottedCrystalPlantFern,
10549 "PottedCrystalPlantSpiral" => Self::PottedCrystalPlantSpiral,
10550 "PottedCrystalPlantTeardrop" => Self::PottedCrystalPlantTeardrop,
10551 "PottedCrystalPlantTree" => Self::PottedCrystalPlantTree,
10552 "Princess64" => Self::Princess64,
10553 "PaintingOfALass" => Self::PaintingOfALass,
10554 "DarkSideHallow" => Self::DarkSideHallow,
10555 "BerniePetItem" => Self::BerniePet,
10556 "GlommerPetItem" => Self::GlommerPet,
10557 "DeerclopsPetItem" => Self::DeerclopsPet,
10558 "PigPetItem" => Self::PigPet,
10559 "MonsterLasagna" => Self::MonsterLasagna,
10560 "FroggleBunwich" => Self::FroggleBunwich,
10561 "TentacleSpike" => Self::TentacleSpike,
10562 "LucyTheAxe" => Self::LucyTheAxe,
10563 "HamBat" => Self::HamBat,
10564 "BatBat" => Self::BatBat,
10565 "ChesterPetItem" => Self::ChesterPet,
10566 "GarlandHat" => Self::GarlandHat,
10567 "BoneHelm" => Self::BoneHelm,
10568 "Eyebrella" => Self::Eyebrella,
10569 "WilsonShirt" => Self::WilsonShirt,
10570 "WilsonPants" => Self::WilsonPants,
10571 "WilsonBeardShort" => Self::WilsonBeardShort,
10572 "WilsonBeardLong" => Self::WilsonBeardLong,
10573 "WilsonBeardMagnificent" => Self::WilsonBeardMagnificent,
10574 "Magiluminescence" => Self::Magiluminescence,
10575 "DeerclopsTrophy" => Self::DeerclopsTrophy,
10576 "DeerclopsMask" => Self::DeerclopsMask,
10577 "DeerclopsMasterTrophy" => Self::DeerclopsMasterTrophy,
10578 "DeerclopsBossBag" => Self::DeerclopsBossBag,
10579 "MusicBoxDeerclops" => Self::MusicBoxDeerclops,
10580 "DontStarveShaderItem" => Self::DontStarveShader,
10581 "AbigailsFlower" => Self::AbigailsFlower,
10582 "WillowShirt" => Self::WillowShirt,
10583 "WillowSkirt" => Self::WillowSkirt,
10584 "PewMaticHorn" => Self::PewMaticHorn,
10585 "WeatherPain" => Self::WeatherPain,
10586 "HoundiusShootius" => Self::HoundiusShootius,
10587 "DeerThing" => Self::DeerThing,
10588 "PaintingWilson" => Self::PaintingWilson,
10589 "PaintingWillow" => Self::PaintingWillow,
10590 "PaintingWendy" => Self::PaintingWendy,
10591 "PaintingWolfgang" => Self::PaintingWolfgang,
10592 "FartMinecart" => Self::FartMinecart,
10593 "HandOfCreation" => Self::HandOfCreation,
10594 "VioletMoss" => Self::VioletMoss,
10595 "RainbowMoss" => Self::RainbowMoss,
10596 "Flymeal" => Self::Flymeal,
10597 "WolfMountItem" => Self::WolfMount,
10598 "ResplendentDessert" => Self::ResplendentDessert,
10599 "Stinkbug" => Self::Stinkbug,
10600 "StinkbugCage" => Self::StinkbugCage,
10601 "Clentaminator2" => Self::Clentaminator2,
10602 "VenomDartTrap" => Self::VenomDartTrap,
10603 "VulkelfEar" => Self::VulkelfEar,
10604 "StinkbugHousingBlocker" => Self::StinkbugHousingBlocker,
10605 "StinkbugHousingBlockerEcho" => Self::StinkbugHousingBlockerEcho,
10606 "FishingBobber" => Self::FishingBobber,
10607 "FishingBobberGlowingStar" => Self::FishingBobberGlowingStar,
10608 "FishingBobberGlowingLava" => Self::FishingBobberGlowingLava,
10609 "FishingBobberGlowingKrypton" => Self::FishingBobberGlowingKrypton,
10610 "FishingBobberGlowingXenon" => Self::FishingBobberGlowingXenon,
10611 "FishingBobberGlowingArgon" => Self::FishingBobberGlowingArgon,
10612 "FishingBobberGlowingViolet" => Self::FishingBobberGlowingViolet,
10613 "FishingBobberGlowingRainbow" => Self::FishingBobberGlowingRainbow,
10614 "WandofFrosting" => Self::WandOfFrosting,
10615 "CoralBathtub" => Self::CoralBathtub,
10616 "CoralBed" => Self::CoralBed,
10617 "CoralBookcase" => Self::CoralBookcase,
10618 "CoralDresser" => Self::CoralDresser,
10619 "CoralCandelabra" => Self::CoralCandelabra,
10620 "CoralCandle" => Self::CoralCandle,
10621 "CoralChair" => Self::CoralChair,
10622 "CoralChandelier" => Self::CoralChandelier,
10623 "CoralChest" => Self::CoralChest,
10624 "CoralClock" => Self::CoralClock,
10625 "CoralDoor" => Self::CoralDoor,
10626 "CoralLamp" => Self::CoralLamp,
10627 "CoralLantern" => Self::CoralLantern,
10628 "CoralPiano" => Self::CoralPiano,
10629 "CoralPlatform" => Self::CoralPlatform,
10630 "CoralSink" => Self::CoralSink,
10631 "CoralSofa" => Self::CoralSofa,
10632 "CoralTable" => Self::CoralTable,
10633 "CoralWorkbench" => Self::CoralWorkbench,
10634 "Fake_CoralChest" => Self::FakeCoralChest,
10635 "CoralToilet" => Self::CoralToilet,
10636 "BalloonBathtub" => Self::BalloonBathtub,
10637 "BalloonBed" => Self::BalloonBed,
10638 "BalloonBookcase" => Self::BalloonBookcase,
10639 "BalloonDresser" => Self::BalloonDresser,
10640 "BalloonCandelabra" => Self::BalloonCandelabra,
10641 "BalloonCandle" => Self::BalloonCandle,
10642 "BalloonChair" => Self::BalloonChair,
10643 "BalloonChandelier" => Self::BalloonChandelier,
10644 "BalloonChest" => Self::BalloonChest,
10645 "BalloonClock" => Self::BalloonClock,
10646 "BalloonDoor" => Self::BalloonDoor,
10647 "BalloonLamp" => Self::BalloonLamp,
10648 "BalloonLantern" => Self::BalloonLantern,
10649 "BalloonPiano" => Self::BalloonPiano,
10650 "BalloonPlatform" => Self::BalloonPlatform,
10651 "BalloonSink" => Self::BalloonSink,
10652 "BalloonSofa" => Self::BalloonSofa,
10653 "BalloonTable" => Self::BalloonTable,
10654 "BalloonWorkbench" => Self::BalloonWorkbench,
10655 "Fake_BalloonChest" => Self::FakeBalloonChest,
10656 "BalloonToilet" => Self::BalloonToilet,
10657 "AshWoodBathtub" => Self::AshWoodBathtub,
10658 "AshWoodBed" => Self::AshWoodBed,
10659 "AshWoodBookcase" => Self::AshWoodBookcase,
10660 "AshWoodDresser" => Self::AshWoodDresser,
10661 "AshWoodCandelabra" => Self::AshWoodCandelabra,
10662 "AshWoodCandle" => Self::AshWoodCandle,
10663 "AshWoodChair" => Self::AshWoodChair,
10664 "AshWoodChandelier" => Self::AshWoodChandelier,
10665 "AshWoodChest" => Self::AshWoodChest,
10666 "AshWoodClock" => Self::AshWoodClock,
10667 "AshWoodDoor" => Self::AshWoodDoor,
10668 "AshWoodLamp" => Self::AshWoodLamp,
10669 "AshWoodLantern" => Self::AshWoodLantern,
10670 "AshWoodPiano" => Self::AshWoodPiano,
10671 "AshWoodPlatform" => Self::AshWoodPlatform,
10672 "AshWoodSink" => Self::AshWoodSink,
10673 "AshWoodSofa" => Self::AshWoodSofa,
10674 "AshWoodTable" => Self::AshWoodTable,
10675 "AshWoodWorkbench" => Self::AshWoodWorkbench,
10676 "Fake_AshWoodChest" => Self::FakeAshWoodChest,
10677 "AshWoodToilet" => Self::AshWoodToilet,
10678 "BiomeSightPotion" => Self::BiomeSightPotion,
10679 "ScarletMacaw" => Self::ScarletMacaw,
10680 "ScarletMacawCage" => Self::ScarletMacawCage,
10681 "AshGrassSeeds" => Self::AshGrassSeeds,
10682 "AshWood" => Self::AshWood,
10683 "AshWoodWall" => Self::AshWoodWall,
10684 "AshWoodFence" => Self::AshWoodFence,
10685 "Outcast" => Self::Outcast,
10686 "FairyGuides" => Self::FairyGuides,
10687 "AHorribleNightforAlchemy" => Self::AHorribleNightforAlchemy,
10688 "MorningHunt" => Self::MorningHunt,
10689 "SuspiciouslySparkly" => Self::SuspiciouslySparkly,
10690 "Requiem" => Self::Requiem,
10691 "CatSword" => Self::CatSword,
10692 "KargohsSummon" => Self::KargohsSummon,
10693 "HighPitch" => Self::HighPitch,
10694 "AMachineforTerrarians" => Self::AMachineForTerrarians,
10695 "TerraBladeChronicles" => Self::TerraBladeChronicles,
10696 "BennyWarhol" => Self::BennyWarhol,
10697 "LizardKing" => Self::LizardKing,
10698 "MySon" => Self::MySon,
10699 "Duality" => Self::Duality,
10700 "ParsecPals" => Self::ParsecPals,
10701 "RemnantsofDevotion" => Self::RemnantsOfDevotion,
10702 "NotSoLostInParadise" => Self::NotSoLostInParadise,
10703 "OcularResonance" => Self::OcularResonance,
10704 "WingsofEvil" => Self::WingsOfEvil,
10705 "Constellation" => Self::Constellation,
10706 "Eyezorhead" => Self::Eyezorhead,
10707 "DreadoftheRedSea" => Self::DreadOfTheRedSea,
10708 "DoNotEattheVileMushroom" => Self::DoNotEatTheVileMushroom,
10709 "YuumaTheBlueTiger" => Self::YuumaTheBlueTiger,
10710 "MoonmanandCompany" => Self::MoonmanandCompany,
10711 "SunshineofIsrapony" => Self::SunshineOfIsrapony,
10712 "Purity" => Self::Purity,
10713 "SufficientlyAdvanced" => Self::SufficientlyAdvanced,
10714 "StrangeGrowth" => Self::StrangeGrowth,
10715 "HappyLittleTree" => Self::HappyLittleTree,
10716 "StrangeDeadFellows" => Self::StrangeDeadFellows,
10717 "Secrets" => Self::Secrets,
10718 "Thunderbolt" => Self::Thunderbolt,
10719 "Crustography" => Self::Crustography,
10720 "TheWerewolf" => Self::TheWerewolf,
10721 "BlessingfromTheHeavens" => Self::BlessingFromTheHeavens,
10722 "LoveisintheTrashSlot" => Self::LoveIsInTheTrashSlot,
10723 "Fangs" => Self::Fangs,
10724 "HailtotheKing" => Self::HailToTheKing,
10725 "SeeTheWorldForWhatItIs" => Self::SeeTheWorldForWhatItIs,
10726 "WhatLurksBelow" => Self::WhatLurksBelow,
10727 "ThisIsGettingOutOfHand" => Self::ThisIsGettingOutOfHand,
10728 "Buddies" => Self::Buddies,
10729 "MidnightSun" => Self::MidnightSun,
10730 "CouchGag" => Self::CouchGag,
10731 "SilentFish" => Self::SilentFish,
10732 "TheDuke" => Self::TheDuke,
10733 "RoyalRomance" => Self::RoyalRomance,
10734 "Bioluminescence" => Self::Bioluminescence,
10735 "Wildflowers" => Self::Wildflowers,
10736 "VikingVoyage" => Self::VikingVoyage,
10737 "Bifrost" => Self::Bifrost,
10738 "Heartlands" => Self::Heartlands,
10739 "ForestTroll" => Self::ForestTroll,
10740 "AuroraBorealis" => Self::AuroraBorealis,
10741 "LadyOfTheLake" => Self::LadyOfTheLake,
10742 "JojaCola" => Self::JojaCola,
10743 "JunimoPetItem" => Self::JunimoPet,
10744 "SpicyPepper" => Self::SpicyPepper,
10745 "Pomegranate" => Self::Pomegranate,
10746 "AshWoodHelmet" => Self::AshWoodHelmet,
10747 "AshWoodBreastplate" => Self::AshWoodBreastplate,
10748 "AshWoodGreaves" => Self::AshWoodGreaves,
10749 "AshWoodBow" => Self::AshWoodBow,
10750 "AshWoodHammer" => Self::AshWoodHammer,
10751 "AshWoodSword" => Self::AshWoodSword,
10752 "MoonGlobe" => Self::MoonGlobe,
10753 "RepairedLifeCrystal" => Self::RepairedLifeCrystal,
10754 "RepairedManaCrystal" => Self::RepairedManaCrystal,
10755 "TerraFartMinecart" => Self::TerraFartMinecart,
10756 "MinecartPowerup" => Self::MinecartPowerUp,
10757 "JimsCap" => Self::JimsCap,
10758 "EchoWall" => Self::EchoWall,
10759 "EchoPlatform" => Self::EchoPlatform,
10760 "MushroomTorch" => Self::MushroomTorch,
10761 "HiveFive" => Self::HiveFive,
10762 "AcornAxe" => Self::AcornAxe,
10763 "ChlorophyteExtractinator" => Self::ChlorophyteExtractinator,
10764 "BlueEgg" => Self::BlueEgg,
10765 "Trimarang" => Self::Trimarang,
10766 "MushroomCampfire" => Self::MushroomCampfire,
10767 "BlueMacaw" => Self::BlueMacaw,
10768 "BlueMacawCage" => Self::BlueMacawCage,
10769 "BottomlessHoneyBucket" => Self::BottomlessHoneyBucket,
10770 "HoneyAbsorbantSponge" => Self::HoneyAbsorbantSponge,
10771 "UltraAbsorbantSponge" => Self::UltraAbsorbantSponge,
10772 "GoblorcEar" => Self::GoblorcEar,
10773 "ReefBlock" => Self::ReefBlock,
10774 "ReefWall" => Self::ReefWall,
10775 "PlacePainting" => Self::PlacePainting,
10776 "DontHurtNatureBook" => Self::DontHurtNatureBook,
10777 "PrincessStyle" => Self::PrincessStyle,
10778 "Toucan" => Self::Toucan,
10779 "YellowCockatiel" => Self::YellowCockatiel,
10780 "GrayCockatiel" => Self::GrayCockatiel,
10781 "ToucanCage" => Self::ToucanCage,
10782 "YellowCockatielCage" => Self::YellowCockatielCage,
10783 "GrayCockatielCage" => Self::GrayCockatielCage,
10784 "MacawStatue" => Self::MacawStatue,
10785 "ToucanStatue" => Self::ToucanStatue,
10786 "CockatielStatue" => Self::CockatielStatue,
10787 "PlaceableHealingPotion" => Self::PlaceableHealingPotion,
10788 "PlaceableManaPotion" => Self::PlaceableManaPotion,
10789 "ShadowCandle" => Self::ShadowCandle,
10790 "DontHurtComboBook" => Self::DontHurtComboBook,
10791 "RubblemakerSmall" => Self::RubblemakerSmall,
10792 "ClosedVoidBag" => Self::ClosedVoidBag,
10793 "ArtisanLoaf" => Self::ArtisanLoaf,
10794 "TNTBarrel" => Self::TNTBarrel,
10795 "ChestLock" => Self::ChestLock,
10796 "RubblemakerMedium" => Self::RubblemakerMedium,
10797 "RubblemakerLarge" => Self::RubblemakerLarge,
10798 "HorseshoeBundle" => Self::HorseshoeBundle,
10799 "SpiffoPlush" => Self::SpiffoPlush,
10800 "GlowTulip" => Self::GlowTulip,
10801 "MechdusaSummon" => Self::MechdusaSummon,
10802 "RodOfHarmony" => Self::RodOfHarmony,
10803 "CombatBookVolumeTwo" => Self::CombatBookVolumeTwo,
10804 "AegisCrystal" => Self::AegisCrystal,
10805 "AegisFruit" => Self::AegisFruit,
10806 "ArcaneCrystal" => Self::ArcaneCrystal,
10807 "GalaxyPearl" => Self::GalaxyPearl,
10808 "GummyWorm" => Self::GummyWorm,
10809 "Ambrosia" => Self::Ambrosia,
10810 "PeddlersSatchel" => Self::PeddlersSatchel,
10811 "EchoCoating" => Self::EchoCoating,
10812 "EchoMonolith" => Self::EchoMonolith,
10813 "GasTrap" => Self::GasTrap,
10814 "ShimmerMonolith" => Self::ShimmerMonolith,
10815 "ShimmerArrow" => Self::ShimmerArrow,
10816 "ShimmerBlock" => Self::ShimmerBlock,
10817 "Shimmerfly" => Self::Shimmerfly,
10818 "ShimmerflyinaBottle" => Self::ShimmerflyInABottle,
10819 "ShimmerSlimeBanner" => Self::ShimmerSlimeBanner,
10820 "ShimmerTorch" => Self::ShimmerTorch,
10821 "ReflectiveShades" => Self::ReflectiveShades,
10822 "ShimmerCloak" => Self::ShimmerCloak,
10823 "UsedGasTrap" => Self::UsedGasTrap,
10824 "ShimmerCampfire" => Self::ShimmerCampfire,
10825 "Shellphone" => Self::Shellphone,
10826 "ShellphoneSpawn" => Self::ShellphoneSpawn,
10827 "ShellphoneOcean" => Self::ShellphoneOcean,
10828 "ShellphoneHell" => Self::ShellphoneHell,
10829 "MusicBoxShimmer" => Self::MusicBoxShimmer,
10830 "SpiderWallUnsafe" => Self::SpiderWallUnsafe,
10831 "BottomlessShimmerBucket" => Self::BottomlessShimmerBucket,
10832 "BlueBrickWallUnsafe" => Self::BlueBrickWallUnsafe,
10833 "BlueSlabWallUnsafe" => Self::BlueSlabWallUnsafe,
10834 "BlueTiledWallUnsafe" => Self::BlueTiledWallUnsafe,
10835 "PinkBrickWallUnsafe" => Self::PinkBrickWallUnsafe,
10836 "PinkSlabWallUnsafe" => Self::PinkSlabWallUnsafe,
10837 "PinkTiledWallUnsafe" => Self::PinkTiledWallUnsafe,
10838 "GreenBrickWallUnsafe" => Self::GreenBrickWallUnsafe,
10839 "GreenSlabWallUnsafe" => Self::GreenSlabWallUnsafe,
10840 "GreenTiledWallUnsafe" => Self::GreenTiledWallUnsafe,
10841 "SandstoneWallUnsafe" => Self::SandstoneWallUnsafe,
10842 "HardenedSandWallUnsafe" => Self::HardenedSandWallUnsafe,
10843 "LihzahrdWallUnsafe" => Self::LihzahrdWallUnsafe,
10844 "SpelunkerFlare" => Self::SpelunkerFlare,
10845 "CursedFlare" => Self::CursedFlare,
10846 "RainbowFlare" => Self::RainbowFlare,
10847 "ShimmerFlare" => Self::ShimmerFlare,
10848 "Moondial" => Self::Moondial,
10849 "WaffleIron" => Self::WaffleIron,
10850 "BouncyBoulder" => Self::BouncyBoulder,
10851 "LifeCrystalBoulder" => Self::LifeCrystalBoulder,
10852 "DizzyHat" => Self::DizzyHat,
10853 "LincolnsHoodie" => Self::LincolnsHoodie,
10854 "LincolnsPants" => Self::LincolnsPants,
10855 "SunOrnament" => Self::SunOrnament,
10856 "HoplitePizza" => Self::HoplitePizza,
10857 "LincolnsHood" => Self::LincolnsHood,
10858 "UncumberingStone" => Self::UncumberingStone,
10859 "SandSolution" => Self::SandSolution,
10860 "SnowSolution" => Self::SnowSolution,
10861 "DirtSolution" => Self::DirtSolution,
10862 "PoopBlock" => Self::PoopBlock,
10863 "PoopWall" => Self::PoopWall,
10864 "ShimmerWall" => Self::ShimmerWall,
10865 "ShimmerBrick" => Self::ShimmerBrick,
10866 "ShimmerBrickWall" => Self::ShimmerBrickWall,
10867 "DirtiestBlock" => Self::DirtiestBlock,
10868 "LunarRustBrick" => Self::LunarRustBrick,
10869 "DarkCelestialBrick" => Self::DarkCelestialBrick,
10870 "AstraBrick" => Self::AstraBrick,
10871 "CosmicEmberBrick" => Self::CosmicEmberBrick,
10872 "CryocoreBrick" => Self::CryocoreBrick,
10873 "MercuryBrick" => Self::MercuryBrick,
10874 "StarRoyaleBrick" => Self::StarRoyaleBrick,
10875 "HeavenforgeBrick" => Self::HeavenforgeBrick,
10876 "LunarRustBrickWall" => Self::LunarRustBrickWall,
10877 "DarkCelestialBrickWall" => Self::DarkCelestialBrickWall,
10878 "AstraBrickWall" => Self::AstraBrickWall,
10879 "CosmicEmberBrickWall" => Self::CosmicEmberBrickWall,
10880 "CryocoreBrickWall" => Self::CryocoreBrickWall,
10881 "MercuryBrickWall" => Self::MercuryBrickWall,
10882 "StarRoyaleBrickWall" => Self::StarRoyaleBrickWall,
10883 "HeavenforgeBrickWall" => Self::HeavenforgeBrickWall,
10884 "AncientBlueDungeonBrick" => Self::AncientBlueDungeonBrick,
10885 "AncientBlueDungeonBrickWall" => Self::AncientBlueDungeonBrickWall,
10886 "AncientGreenDungeonBrick" => Self::AncientGreenDungeonBrick,
10887 "AncientGreenDungeonBrickWall" => Self::AncientGreenDungeonBrickWall,
10888 "AncientPinkDungeonBrick" => Self::AncientPinkDungeonBrick,
10889 "AncientPinkDungeonBrickWall" => Self::AncientPinkDungeonBrickWall,
10890 "AncientGoldBrick" => Self::AncientGoldBrick,
10891 "AncientGoldBrickWall" => Self::AncientGoldBrickWall,
10892 "AncientSilverBrick" => Self::AncientSilverBrick,
10893 "AncientSilverBrickWall" => Self::AncientSilverBrickWall,
10894 "AncientCopperBrick" => Self::AncientCopperBrick,
10895 "AncientCopperBrickWall" => Self::AncientCopperBrickWall,
10896 "AncientCobaltBrick" => Self::AncientCobaltBrick,
10897 "AncientCobaltBrickWall" => Self::AncientCobaltBrickWall,
10898 "AncientMythrilBrick" => Self::AncientMythrilBrick,
10899 "AncientMythrilBrickWall" => Self::AncientMythrilBrickWall,
10900 "AncientObsidianBrick" => Self::AncientObsidianBrick,
10901 "AncientObsidianBrickWall" => Self::AncientObsidianBrickWall,
10902 "AncientHellstoneBrick" => Self::AncientHellstoneBrick,
10903 "AncientHellstoneBrickWall" => Self::AncientHellstoneBrickWall,
10904 "ShellphoneDummy" => Self::ShellphoneDummy,
10905 "Fertilizer" => Self::Fertilizer,
10906 "LavaMossBlock" => Self::LavaMossBlock,
10907 "ArgonMossBlock" => Self::ArgonMossBlock,
10908 "KryptonMossBlock" => Self::KryptonMossBlock,
10909 "XenonMossBlock" => Self::XenonMossBlock,
10910 "VioletMossBlock" => Self::VioletMossBlock,
10911 "RainbowMossBlock" => Self::RainbowMossBlock,
10912 "LavaMossBlockWall" => Self::LavaMossBlockWall,
10913 "ArgonMossBlockWall" => Self::ArgonMossBlockWall,
10914 "KryptonMossBlockWall" => Self::KryptonMossBlockWall,
10915 "XenonMossBlockWall" => Self::XenonMossBlockWall,
10916 "VioletMossBlockWall" => Self::VioletMossBlockWall,
10917 "RainbowMossBlockWall" => Self::RainbowMossBlockWall,
10918 "JimsDrone" => Self::JimsDrone,
10919 "JimsDroneVisor" => Self::JimsDroneVisor,
10920 "DontHurtCrittersBookInactive" => Self::DontHurtCrittersBookInactive,
10921 "DontHurtNatureBookInactive" => Self::DontHurtNatureBookInactive,
10922 "DontHurtComboBookInactive" => Self::DontHurtComboBookInactive,
10923 _ => return None,
10924 })
10925 }
10926}