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 Self::DeadCellsMushroomBoiSummonItem => "DeadCellsMushroomBoiSummonItem",
5462 Self::DeadCellsBeheadedHead => "DeadCellsBeheadedHead",
5463 Self::DeadCellsBeheadedBody => "DeadCellsBeheadedBody",
5464 Self::DeadCellsBeheadedLegs => "DeadCellsBeheadedLegs",
5465 Self::DeadCellsBarrelLauncher => "DeadCellsBarrelLauncher",
5466 Self::DeadCellsKillingDeck => "DeadCellsKillingDeck",
5467 Self::DeadCellsFlint => "DeadCellsFlint",
5468 Self::DeadCellsBarnacleSummonItem => "DeadCellsBarnacleSummonItem",
5469 Self::MiteyTitey => "MiteyTitey",
5470 Self::DeadCellsRamRune => "DeadCellsRamRune",
5471 Self::DeadCellsSwarmGrenade => "DeadCellsSwarmGrenade",
5472 Self::DemonAltarReplica => "DemonAltarReplica",
5473 Self::CrimsonAltarReplica => "CrimsonAltarReplica",
5474 Self::ShadowOrbReplica => "ShadowOrbReplica",
5475 Self::CrimsonHeartReplica => "CrimsonHeartReplica",
5476 Self::CobwebReplica => "CobwebReplica",
5477 Self::DeadCellsDisplayJar => "DeadCellsDisplayJar",
5478 Self::CobWhip => "CobWhip",
5479 Self::CorruptWhip => "CorruptWhip",
5480 Self::CrimsonWhip => "CrimsonWhip",
5481 Self::MeteorWhip => "MeteorWhip",
5482 Self::FlowerWhip => "FlowerWhip",
5483 Self::EelWhip => "EelWhip",
5484 Self::ConstellationWhip => "ConstellationWhip",
5485 Self::MoonLordWhip => "MoonLordWhip",
5486 Self::PortableKiln => "PortableKiln",
5487 Self::DeadCellsPotionStation => "DeadCellsPotionStation",
5488 Self::QueenOfBees => "QueenOfBees",
5489 Self::PlayerVoiceCowbellItem => "PlayerVoiceCowbellItem",
5490 Self::PlayerVoiceChickenFeetItem => "PlayerVoiceChickenFeetItem",
5491 Self::TheSeaOfSilence => "TheSeaOfSilence",
5492 Self::HeroesFromAnotherWorld => "HeroesFromAnotherWorld",
5493 Self::Crystallize => "Crystallize",
5494 Self::EaterOfLife => "EaterOfLife",
5495 Self::ThisIsCanonNow => "ThisIsCanonNow",
5496 Self::WinterAtVaringskollen => "WinterAtVaringskollen",
5497 Self::MagicShimmerDropper => "MagicShimmerDropper",
5498 Self::ShimmerFallBlock => "ShimmerFallBlock",
5499 Self::ShimmerFallWall => "ShimmerFallWall",
5500 Self::ShimmerGun => "ShimmerGun",
5501 Self::LifeFruitHealingPotion => "LifeFruitHealingPotion",
5502 Self::PinkBanner => "PinkBanner",
5503 Self::WhiteBanner => "WhiteBanner",
5504 Self::PlayerVoiceFrogItem => "PlayerVoiceFrogItem",
5505 Self::PlayerVoiceGoatItem => "PlayerVoiceGoatItem",
5506 Self::PlayerVoiceRetroItem => "PlayerVoiceRetroItem",
5507 Self::PlayerVoiceCatItem => "PlayerVoiceCatItem",
5508 Self::PlayerVoiceDogItem => "PlayerVoiceDogItem",
5509 Self::PlayerVoiceTurkeyItem => "PlayerVoiceTurkeyItem",
5510 Self::PlayerVoiceGoblinItem => "PlayerVoiceGoblinItem",
5511 Self::PlayerVoiceCrowItem => "PlayerVoiceCrowItem",
5512 Self::PlayerVoiceBalloonItem => "PlayerVoiceBalloonItem",
5513 Self::PlayerVoiceUndeadItem => "PlayerVoiceUndeadItem",
5514 Self::PlayerVoiceVampireItem => "PlayerVoiceVampireItem",
5515 Self::VelociraptorMountItem => "VelociraptorMountItem",
5516 Self::Pufferfish => "Pufferfish",
5517 Self::PufferfishCage => "PufferfishCage",
5518 Self::PufferfishPet => "PufferfishPet",
5519 Self::RainbowBoulder => "RainbowBoulder",
5520 Self::MoonLordBody => "MoonLordBody",
5521 Self::Poulder => "Poulder",
5522 Self::AxeFairyPetItem => "AxeFairyPetItem",
5523 Self::SuperFertilizer => "SuperFertilizer",
5524 Self::Axearang => "Axearang",
5525 Self::LavaBoulder => "LavaBoulder",
5526 Self::SpiderBoulder => "SpiderBoulder",
5527 Self::Ghoulder => "Ghoulder",
5528 Self::BoulderPet => "BoulderPet",
5529 Self::ChlorophyteVisor => "ChlorophyteVisor",
5530 Self::RatMountItem => "RatMountItem",
5531 Self::FlaironFlail => "FlaironFlail",
5532 Self::OfSeaAndDreams => "OfSeaAndDreams",
5533 Self::TheRunicPixie => "TheRunicPixie",
5534 Self::BannerOfTheBeast => "BannerOfTheBeast",
5535 Self::StickmanVsTerrTerr => "StickmanVsTerrTerr",
5536 Self::CozyWindow => "CozyWindow",
5537 Self::DemonAltar => "DemonAltar",
5538 Self::CrimsonAltar => "CrimsonAltar",
5539 Self::PlayerVoiceFairyItem => "PlayerVoiceFairyItem",
5540 Self::PinkPhaseblade => "PinkPhaseblade",
5541 Self::PinkPhasesaber => "PinkPhasesaber",
5542 Self::BlackenedFish => "BlackenedFish",
5543 Self::MusicBoxQueenBee => "MusicBoxQueenBee",
5544 Self::MusicBoxTwins => "MusicBoxTwins",
5545 Self::MagicString => "MagicString",
5546 Self::MagicYoyoBag => "MagicYoyoBag",
5547 Self::FreezeBomb => "FreezeBomb",
5548 Self::StressBall => "StressBall",
5549 Self::CloudPlatform => "CloudPlatform",
5550 Self::LivingWoodWallUnsafe => "LivingWoodWallUnsafe",
5551 Self::DirtWallUnsafe => "DirtWallUnsafe",
5552 Self::StrungCounterweight => "StrungCounterweight",
5553 Self::AetheriumBathtub => "AetheriumBathtub",
5554 Self::AetheriumBed => "AetheriumBed",
5555 Self::AetheriumBookcase => "AetheriumBookcase",
5556 Self::AetheriumDresser => "AetheriumDresser",
5557 Self::AetheriumCandelabra => "AetheriumCandelabra",
5558 Self::AetheriumCandle => "AetheriumCandle",
5559 Self::AetheriumChair => "AetheriumChair",
5560 Self::AetheriumChandelier => "AetheriumChandelier",
5561 Self::AetheriumChest => "AetheriumChest",
5562 Self::AetheriumClock => "AetheriumClock",
5563 Self::AetheriumDoor => "AetheriumDoor",
5564 Self::AetheriumLamp => "AetheriumLamp",
5565 Self::AetheriumLantern => "AetheriumLantern",
5566 Self::AetheriumPiano => "AetheriumPiano",
5567 Self::AetheriumPlatform => "AetheriumPlatform",
5568 Self::AetheriumSink => "AetheriumSink",
5569 Self::AetheriumSofa => "AetheriumSofa",
5570 Self::AetheriumTable => "AetheriumTable",
5571 Self::AetheriumWorkbench => "AetheriumWorkbench",
5572 Self::FakeAetheriumChest => "Fake_AetheriumChest",
5573 Self::AetheriumToilet => "AetheriumToilet",
5574 Self::LavaCloud => "LavaCloud",
5575 Self::StarCloud => "StarCloud",
5576 Self::RainbowCloud => "RainbowCloud",
5577 Self::MudBallPlayer => "MudBallPlayer",
5578 Self::TorchGodPotion => "TorchGodPotion",
5579 Self::LuckyClover => "LuckyClover",
5580 Self::WiltedClover => "WiltedClover",
5581 Self::RavenFeather => "RavenFeather",
5582 Self::PrettyMirror => "PrettyMirror",
5583 Self::MusicBoxKingSlime => "MusicBoxKingSlime",
5584 Self::MusicBoxQueenBeeAlt => "MusicBoxQueenBeeAlt",
5585 Self::MusicBoxLunaticCultist => "MusicBoxLunaticCultist",
5586 Self::MusicBoxSkeletronPrime => "MusicBoxSkeletronPrime",
5587 Self::MusicBoxDestroyer => "MusicBoxDestroyer",
5588 Self::ChickenBonesHead => "ChickenBonesHead",
5589 Self::ChickenBonesBody => "ChickenBonesBody",
5590 Self::ChickenBonesLegs => "ChickenBonesLegs",
5591 Self::ChickenBonesWings => "ChickenBonesWings",
5592 Self::ChickenBonesRobe => "ChickenBonesRobe",
5593 Self::UpgradedMiningHead => "UpgradedMiningHead",
5594 Self::UpgradedMiningBody => "UpgradedMiningBody",
5595 Self::UpgradedMiningLegs => "UpgradedMiningLegs",
5596 Self::UpgradedFishingHead => "UpgradedFishingHead",
5597 Self::UpgradedFishingBody => "UpgradedFishingBody",
5598 Self::UpgradedFishingLegs => "UpgradedFishingLegs",
5599 Self::SuperBomb => "SuperBomb",
5600 Self::SuperStickyBomb => "SuperStickyBomb",
5601 Self::WeldingMask => "WeldingMask",
5602 Self::BatMountItem => "BatMountItem",
5603 Self::CRTMonolith => "CRTMonolith",
5604 Self::RetroMonolith => "RetroMonolith",
5605 Self::RollerSkatesBlueMountItem => "RollerSkatesBlueMountItem",
5606 Self::FallenStarBathtub => "FallenStarBathtub",
5607 Self::FallenStarBed => "FallenStarBed",
5608 Self::FallenStarBookcase => "FallenStarBookcase",
5609 Self::FallenStarDresser => "FallenStarDresser",
5610 Self::FallenStarCandelabra => "FallenStarCandelabra",
5611 Self::FallenStarCandle => "FallenStarCandle",
5612 Self::FallenStarChair => "FallenStarChair",
5613 Self::FallenStarChandelier => "FallenStarChandelier",
5614 Self::FallenStarChest => "FallenStarChest",
5615 Self::FallenStarClock => "FallenStarClock",
5616 Self::FallenStarDoor => "FallenStarDoor",
5617 Self::FallenStarLamp => "FallenStarLamp",
5618 Self::FallenStarLantern => "FallenStarLantern",
5619 Self::FallenStarPiano => "FallenStarPiano",
5620 Self::FallenStarPlatform => "FallenStarPlatform",
5621 Self::FallenStarSink => "FallenStarSink",
5622 Self::FallenStarSofa => "FallenStarSofa",
5623 Self::FallenStarTable => "FallenStarTable",
5624 Self::FallenStarWorkbench => "FallenStarWorkbench",
5625 Self::FakeFallenStarChest => "Fake_FallenStarChest",
5626 Self::FallenStarToilet => "FallenStarToilet",
5627 Self::FallenStarBlock => "FallenStarBlock",
5628 Self::FallenStarWall => "FallenStarWall",
5629 Self::ChippysHead => "ChippysHead",
5630 Self::ChippysBody => "ChippysBody",
5631 Self::ChippysLegs => "ChippysLegs",
5632 Self::ChippysWings => "ChippysWings",
5633 Self::ChippysHeadband => "ChippysHeadband",
5634 Self::AcornSlingshot => "AcornSlingshot",
5635 Self::PaintingRPlace2023 => "PaintingRPlace2023",
5636 Self::PaintingBouldChoices => "PaintingBouldChoices",
5637 Self::PaintingDarkForebodings => "PaintingDarkForebodings",
5638 Self::PaintingGermanZenith => "PaintingGermanZenith",
5639 Self::PaintingItsScragglinTime => "PaintingItsScragglinTime",
5640 Self::PaintingKaguya => "PaintingKaguya",
5641 Self::PaintingGermanBeer => "PaintingGermanBeer",
5642 Self::MusicBoxEaterOfWorlds => "MusicBoxEaterOfWorlds",
5643 Self::MusicBoxTorchGod => "MusicBoxTorchGod",
5644 Self::MusicBoxTorchGodAlt => "MusicBoxTorchGodAlt",
5645 Self::RollerSkatesGreenMountItem => "RollerSkatesGreenMountItem",
5646 Self::RollerSkatesClassicMountItem => "RollerSkatesClassicMountItem",
5647 Self::RollerSkatesPartyMountItem => "RollerSkatesPartyMountItem",
5648 Self::RainbowGlowstick => "RainbowGlowstick",
5649 Self::ScryingOrb => "ScryingOrb",
5650 Self::RockCandy => "RockCandy",
5651 Self::BlueBikiniBody => "BlueBikiniBody",
5652 Self::BlueBikiniLegs => "BlueBikiniLegs",
5653 Self::RedSwimsuit => "RedSwimsuit",
5654 Self::GreenSwimshorts => "GreenSwimshorts",
5655 Self::GraySwimshorts => "GraySwimshorts",
5656 Self::OrcaBanner => "OrcaBanner",
5657 Self::TeleportationPylonUnderworld => "TeleportationPylonUnderworld",
5658 Self::TeleportationPylonShimmer => "TeleportationPylonShimmer",
5659 Self::RainbowBoulderPet => "RainbowBoulderPet",
5660 Self::NoirMonolith => "NoirMonolith",
5661 Self::HeroicisHead => "HeroicisHead",
5662 Self::HeroicisBody => "HeroicisBody",
5663 Self::HeroicisLegs => "HeroicisLegs",
5664 Self::HeroicisWings => "HeroicisWings",
5665 Self::HallowedCrown => "HallowedCrown",
5666 Self::HeroicisWingsInactive => "HeroicisWingsInactive",
5667 Self::EnchantedPixieDust => "EnchantedPixieDust",
5668 Self::PalworldMinionCattiva => "PalworldMinionCattiva",
5669 Self::PalworldMinionFoxsparks => "PalworldMinionFoxsparks",
5670 Self::PalworldPetChillet => "PalworldPetChillet",
5671 Self::PalworldPetChilletIgnis => "PalworldPetChilletIgnis",
5672 Self::PalworldDigtoise => "PalworldDigtoise",
5673 Self::SoundGun => "SoundGun",
5674 Self::TrueCopperShortsword => "TrueCopperShortsword",
5675 Self::RainbowPhaseblade => "RainbowPhaseblade",
5676 Self::RainbowPhasesaber => "RainbowPhasesaber",
5677 Self::LibrarianSkeletonBanner => "LibrarianSkeletonBanner",
5678 Self::WaterBoltMimicBanner => "WaterBoltMimicBanner",
5679 Self::TeamBlockRedVariant => "TeamBlockRedVariant",
5680 Self::TeamBlockGreenVariant => "TeamBlockGreenVariant",
5681 Self::TeamBlockBlueVariant => "TeamBlockBlueVariant",
5682 Self::TeamBlockYellowVariant => "TeamBlockYellowVariant",
5683 Self::TeamBlockPinkVariant => "TeamBlockPinkVariant",
5684 Self::TeamBlockWhiteVariant => "TeamBlockWhiteVariant",
5685 Self::LilacDuskHead => "LilacDuskHead",
5686 Self::LilacDuskBody => "LilacDuskBody",
5687 Self::LilacDuskLegs => "LilacDuskLegs",
5688 Self::KazzymodusHood => "KazzymodusHood",
5689 Self::KazzymodusChestpiece => "KazzymodusChestpiece",
5690 Self::KazzymodusLeggings => "KazzymodusLeggings",
5691 Self::KazzymodusWings => "KazzymodusWings",
5692 Self::SlimeSpear => "SlimeSpear",
5693 Self::SlimeWhip => "SlimeWhip",
5694 Self::FeywoodBathtub => "FeywoodBathtub",
5695 Self::FeywoodBed => "FeywoodBed",
5696 Self::FeywoodBookcase => "FeywoodBookcase",
5697 Self::FeywoodDresser => "FeywoodDresser",
5698 Self::FeywoodCandelabra => "FeywoodCandelabra",
5699 Self::FeywoodCandle => "FeywoodCandle",
5700 Self::FeywoodChair => "FeywoodChair",
5701 Self::FeywoodChandelier => "FeywoodChandelier",
5702 Self::FeywoodChest => "FeywoodChest",
5703 Self::FeywoodClock => "FeywoodClock",
5704 Self::FeywoodDoor => "FeywoodDoor",
5705 Self::FeywoodLamp => "FeywoodLamp",
5706 Self::FeywoodLantern => "FeywoodLantern",
5707 Self::FeywoodPiano => "FeywoodPiano",
5708 Self::FeywoodPlatform => "FeywoodPlatform",
5709 Self::FeywoodSink => "FeywoodSink",
5710 Self::FeywoodSofa => "FeywoodSofa",
5711 Self::FeywoodTable => "FeywoodTable",
5712 Self::FeywoodWorkbench => "FeywoodWorkbench",
5713 Self::FakeFeywoodChest => "Fake_FeywoodChest",
5714 Self::FeywoodToilet => "FeywoodToilet",
5715 Self::Feywood => "Feywood",
5716 Self::FeywoodWall => "FeywoodWall",
5717 Self::HallowedBathtub => "HallowedBathtub",
5718 Self::HallowedBed => "HallowedBed",
5719 Self::HallowedBookcase => "HallowedBookcase",
5720 Self::HallowedDresser => "HallowedDresser",
5721 Self::HallowedCandelabra => "HallowedCandelabra",
5722 Self::HallowedCandle => "HallowedCandle",
5723 Self::HallowedChair => "HallowedChair",
5724 Self::HallowedChandelier => "HallowedChandelier",
5725 Self::HallowedFurnitureChest => "HallowedFurnitureChest",
5726 Self::HallowedClock => "HallowedClock",
5727 Self::HallowedDoor => "HallowedDoor",
5728 Self::HallowedLamp => "HallowedLamp",
5729 Self::HallowedLantern => "HallowedLantern",
5730 Self::HallowedPiano => "HallowedPiano",
5731 Self::HallowedPlatform => "HallowedPlatform",
5732 Self::HallowedSink => "HallowedSink",
5733 Self::HallowedSofa => "HallowedSofa",
5734 Self::HallowedTable => "HallowedTable",
5735 Self::HallowedWorkbench => "HallowedWorkbench",
5736 Self::FakeHallowedFurnitureChest => "Fake_HallowedFurnitureChest",
5737 Self::HallowedToilet => "HallowedToilet",
5738 Self::HallowedBrick => "HallowedBrick",
5739 Self::HallowedBrickWall => "HallowedBrickWall",
5740 Self::PalworldPalMetalArmorBody => "PalworldPalMetalArmorBody",
5741 Self::PalworldPalMetalArmorLegs => "PalworldPalMetalArmorLegs",
5742 Self::ChippysWingsInactive => "ChippysWingsInactive",
5743 Self::RemoteControlCar => "RemoteControlCar",
5744 Self::GothicBathtub => "GothicBathtub",
5745 Self::GothicBed => "GothicBed",
5746 Self::GothicDresser => "GothicDresser",
5747 Self::GothicCandelabra => "GothicCandelabra",
5748 Self::GothicCandle => "GothicCandle",
5749 Self::GothicChandelier => "GothicChandelier",
5750 Self::GothicChest => "GothicChest",
5751 Self::GothicClock => "GothicClock",
5752 Self::GothicDoor => "GothicDoor",
5753 Self::GothicLamp => "GothicLamp",
5754 Self::GothicLantern => "GothicLantern",
5755 Self::GothicPiano => "GothicPiano",
5756 Self::GothicPlatform => "GothicPlatform",
5757 Self::GothicSink => "GothicSink",
5758 Self::GothicSofa => "GothicSofa",
5759 Self::FakeGothicChest => "Fake_GothicChest",
5760 Self::GothicToilet => "GothicToilet",
5761 Self::DemoniteBathtub => "DemoniteBathtub",
5762 Self::DemoniteBed => "DemoniteBed",
5763 Self::DemoniteBookcase => "DemoniteBookcase",
5764 Self::DemoniteCandelabra => "DemoniteCandelabra",
5765 Self::DemoniteCandle => "DemoniteCandle",
5766 Self::DemoniteChair => "DemoniteChair",
5767 Self::DemoniteChandelier => "DemoniteChandelier",
5768 Self::DemoniteChest => "DemoniteChest",
5769 Self::DemoniteClock => "DemoniteClock",
5770 Self::DemoniteDoor => "DemoniteDoor",
5771 Self::DemoniteDresser => "DemoniteDresser",
5772 Self::DemoniteLamp => "DemoniteLamp",
5773 Self::DemoniteLantern => "DemoniteLantern",
5774 Self::DemonitePiano => "DemonitePiano",
5775 Self::DemonitePlatform => "DemonitePlatform",
5776 Self::DemoniteSink => "DemoniteSink",
5777 Self::DemoniteSofa => "DemoniteSofa",
5778 Self::DemoniteTable => "DemoniteTable",
5779 Self::DemoniteToilet => "DemoniteToilet",
5780 Self::DemoniteWorkbench => "DemoniteWorkbench",
5781 Self::FakeDemoniteChest => "Fake_DemoniteChest",
5782 Self::CrimtaneBathtub => "CrimtaneBathtub",
5783 Self::CrimtaneBed => "CrimtaneBed",
5784 Self::CrimtaneBookcase => "CrimtaneBookcase",
5785 Self::CrimtaneCandelabra => "CrimtaneCandelabra",
5786 Self::CrimtaneCandle => "CrimtaneCandle",
5787 Self::CrimtaneChair => "CrimtaneChair",
5788 Self::CrimtaneChandelier => "CrimtaneChandelier",
5789 Self::CrimtaneChest => "CrimtaneChest",
5790 Self::CrimtaneClock => "CrimtaneClock",
5791 Self::CrimtaneDoor => "CrimtaneDoor",
5792 Self::CrimtaneDresser => "CrimtaneDresser",
5793 Self::CrimtaneLamp => "CrimtaneLamp",
5794 Self::CrimtaneLantern => "CrimtaneLantern",
5795 Self::CrimtanePiano => "CrimtanePiano",
5796 Self::CrimtanePlatform => "CrimtanePlatform",
5797 Self::CrimtaneSink => "CrimtaneSink",
5798 Self::CrimtaneSofa => "CrimtaneSofa",
5799 Self::CrimtaneTable => "CrimtaneTable",
5800 Self::CrimtaneToilet => "CrimtaneToilet",
5801 Self::CrimtaneWorkbench => "CrimtaneWorkbench",
5802 Self::FakeCrimtaneChest => "Fake_CrimtaneChest",
5803 Self::SnowBathtub => "SnowBathtub",
5804 Self::SnowBed => "SnowBed",
5805 Self::SnowBookcase => "SnowBookcase",
5806 Self::SnowCandelabra => "SnowCandelabra",
5807 Self::SnowCandle => "SnowCandle",
5808 Self::SnowChair => "SnowChair",
5809 Self::SnowChandelier => "SnowChandelier",
5810 Self::SnowChest => "SnowChest",
5811 Self::SnowClock => "SnowClock",
5812 Self::SnowDoor => "SnowDoor",
5813 Self::SnowDresser => "SnowDresser",
5814 Self::SnowLamp => "SnowLamp",
5815 Self::SnowLantern => "SnowLantern",
5816 Self::SnowPiano => "SnowPiano",
5817 Self::SnowPlatform => "SnowPlatform",
5818 Self::SnowSink => "SnowSink",
5819 Self::SnowSofa => "SnowSofa",
5820 Self::SnowTable => "SnowTable",
5821 Self::SnowToilet => "SnowToilet",
5822 Self::SnowWorkbench => "SnowWorkbench",
5823 Self::FakeSnowChest => "Fake_SnowChest",
5824 Self::FlinxFurBathtub => "FlinxFurBathtub",
5825 Self::FlinxFurBed => "FlinxFurBed",
5826 Self::FlinxFurBookcase => "FlinxFurBookcase",
5827 Self::FlinxFurCandelabra => "FlinxFurCandelabra",
5828 Self::FlinxFurCandle => "FlinxFurCandle",
5829 Self::FlinxFurChair => "FlinxFurChair",
5830 Self::FlinxFurChandelier => "FlinxFurChandelier",
5831 Self::FlinxFurChest => "FlinxFurChest",
5832 Self::FlinxFurClock => "FlinxFurClock",
5833 Self::FlinxFurDoor => "FlinxFurDoor",
5834 Self::FlinxFurDresser => "FlinxFurDresser",
5835 Self::FlinxFurLamp => "FlinxFurLamp",
5836 Self::FlinxFurLantern => "FlinxFurLantern",
5837 Self::FlinxFurPiano => "FlinxFurPiano",
5838 Self::FlinxFurPlatform => "FlinxFurPlatform",
5839 Self::FlinxFurSink => "FlinxFurSink",
5840 Self::FlinxFurSofa => "FlinxFurSofa",
5841 Self::FlinxFurTable => "FlinxFurTable",
5842 Self::FlinxFurToilet => "FlinxFurToilet",
5843 Self::FlinxFurWorkbench => "FlinxFurWorkbench",
5844 Self::FakeFlinxFurChest => "Fake_FlinxFurChest",
5845 Self::PineBathtub => "PineBathtub",
5846 Self::PineBed => "PineBed",
5847 Self::PineBookcase => "PineBookcase",
5848 Self::PineCandelabra => "PineCandelabra",
5849 Self::PineCandle => "PineCandle",
5850 Self::PineChandelier => "PineChandelier",
5851 Self::PineChest => "PineChest",
5852 Self::PineClock => "PineClock",
5853 Self::PineDresser => "PineDresser",
5854 Self::PineLamp => "PineLamp",
5855 Self::PineLantern => "PineLantern",
5856 Self::PinePiano => "PinePiano",
5857 Self::PinePlatform => "PinePlatform",
5858 Self::PineSink => "PineSink",
5859 Self::PineSofa => "PineSofa",
5860 Self::PineToilet => "PineToilet",
5861 Self::PineWorkbench => "PineWorkbench",
5862 Self::FakePineChest => "Fake_PineChest",
5863 Self::EasterBathtub => "EasterBathtub",
5864 Self::EasterBed => "EasterBed",
5865 Self::EasterBookcase => "EasterBookcase",
5866 Self::EasterCandelabra => "EasterCandelabra",
5867 Self::EasterCandle => "EasterCandle",
5868 Self::EasterChair => "EasterChair",
5869 Self::EasterChandelier => "EasterChandelier",
5870 Self::EasterChest => "EasterChest",
5871 Self::EasterClock => "EasterClock",
5872 Self::EasterDoor => "EasterDoor",
5873 Self::EasterDresser => "EasterDresser",
5874 Self::EasterLamp => "EasterLamp",
5875 Self::EasterLantern => "EasterLantern",
5876 Self::EasterPiano => "EasterPiano",
5877 Self::EasterPlatform => "EasterPlatform",
5878 Self::EasterSink => "EasterSink",
5879 Self::EasterSofa => "EasterSofa",
5880 Self::EasterTable => "EasterTable",
5881 Self::EasterToilet => "EasterToilet",
5882 Self::EasterWorkbench => "EasterWorkbench",
5883 Self::FakeEasterChest => "Fake_EasterChest",
5884 Self::StoneBathtub => "StoneBathtub",
5885 Self::StoneBed => "StoneBed",
5886 Self::StoneBookcase => "StoneBookcase",
5887 Self::StoneCandelabra => "StoneCandelabra",
5888 Self::StoneCandle => "StoneCandle",
5889 Self::StoneChair => "StoneChair",
5890 Self::StoneChandelier => "StoneChandelier",
5891 Self::StoneChest => "StoneChest",
5892 Self::StoneClock => "StoneClock",
5893 Self::StoneDresser => "StoneDresser",
5894 Self::StoneLamp => "StoneLamp",
5895 Self::StoneLantern => "StoneLantern",
5896 Self::StonePiano => "StonePiano",
5897 Self::StoneSink => "StoneSink",
5898 Self::StoneSofa => "StoneSofa",
5899 Self::StoneTable => "StoneTable",
5900 Self::StoneToilet => "StoneToilet",
5901 Self::StoneWorkbench => "StoneWorkbench",
5902 Self::FakeStoneChest => "Fake_StoneChest",
5903 Self::JellyfishBathtub => "JellyfishBathtub",
5904 Self::JellyfishBed => "JellyfishBed",
5905 Self::JellyfishBookcase => "JellyfishBookcase",
5906 Self::JellyfishCandelabra => "JellyfishCandelabra",
5907 Self::JellyfishCandle => "JellyfishCandle",
5908 Self::JellyfishChair => "JellyfishChair",
5909 Self::JellyfishChandelier => "JellyfishChandelier",
5910 Self::JellyfishChest => "JellyfishChest",
5911 Self::JellyfishClock => "JellyfishClock",
5912 Self::JellyfishDoor => "JellyfishDoor",
5913 Self::JellyfishDresser => "JellyfishDresser",
5914 Self::JellyfishLamp => "JellyfishLamp",
5915 Self::JellyfishLantern => "JellyfishLantern",
5916 Self::JellyfishPiano => "JellyfishPiano",
5917 Self::JellyfishPlatform => "JellyfishPlatform",
5918 Self::JellyfishSink => "JellyfishSink",
5919 Self::JellyfishSofa => "JellyfishSofa",
5920 Self::JellyfishTable => "JellyfishTable",
5921 Self::JellyfishToilet => "JellyfishToilet",
5922 Self::JellyfishWorkbench => "JellyfishWorkbench",
5923 Self::FakeJellyfishChest => "Fake_JellyfishChest",
5924 Self::PineTreeBlockWall => "PineTreeBlockWall",
5925 Self::EasterBlock => "EasterBlock",
5926 Self::EasterBlockWall => "EasterBlockWall",
5927 Self::GothicBrick => "GothicBrick",
5928 Self::GothicBrickWall => "GothicBrickWall",
5929 Self::FlinxFurBlock => "FlinxFurBlock",
5930 Self::FlinxFurBlockWall => "FlinxFurBlockWall",
5931 Self::JellyfishBlock => "JellyfishBlock",
5932 Self::JellyfishBlockWall => "JellyfishBlockWall",
5933 Self::ToyBreakerBlock => "ToyBreakerBlock",
5934 Self::PaintingRemix => "PaintingRemix",
5935 Self::PineWoodBlock => "PineWoodBlock",
5936 Self::PineWoodBlockWall => "PineWoodBlockWall",
5937 Self::HarpyBathtub => "HarpyBathtub",
5938 Self::HarpyBed => "HarpyBed",
5939 Self::HarpyBookcase => "HarpyBookcase",
5940 Self::HarpyCandelabra => "HarpyCandelabra",
5941 Self::HarpyCandle => "HarpyCandle",
5942 Self::HarpyChair => "HarpyChair",
5943 Self::HarpyChandelier => "HarpyChandelier",
5944 Self::HarpyChest => "HarpyChest",
5945 Self::HarpyClock => "HarpyClock",
5946 Self::HarpyDoor => "HarpyDoor",
5947 Self::HarpyDresser => "HarpyDresser",
5948 Self::HarpyLamp => "HarpyLamp",
5949 Self::HarpyLantern => "HarpyLantern",
5950 Self::HarpyPiano => "HarpyPiano",
5951 Self::HarpyPlatform => "HarpyPlatform",
5952 Self::HarpySink => "HarpySink",
5953 Self::HarpySofa => "HarpySofa",
5954 Self::HarpyTable => "HarpyTable",
5955 Self::HarpyToilet => "HarpyToilet",
5956 Self::HarpyWorkbench => "HarpyWorkbench",
5957 Self::FakeHarpyChest => "Fake_HarpyChest",
5958 Self::HarpyBlock => "HarpyBlock",
5959 Self::HarpyBlockWall => "HarpyBlockWall",
5960 Self::CloudBathtub => "CloudBathtub",
5961 Self::CloudBed => "CloudBed",
5962 Self::CloudBookcase => "CloudBookcase",
5963 Self::CloudCandelabra => "CloudCandelabra",
5964 Self::CloudCandle => "CloudCandle",
5965 Self::CloudChair => "CloudChair",
5966 Self::CloudChandelier => "CloudChandelier",
5967 Self::CloudChest => "CloudChest",
5968 Self::CloudClock => "CloudClock",
5969 Self::CloudDoor => "CloudDoor",
5970 Self::CloudDresser => "CloudDresser",
5971 Self::CloudLamp => "CloudLamp",
5972 Self::CloudLantern => "CloudLantern",
5973 Self::CloudPiano => "CloudPiano",
5974 Self::CloudSink => "CloudSink",
5975 Self::CloudSofa => "CloudSofa",
5976 Self::CloudTable => "CloudTable",
5977 Self::CloudToilet => "CloudToilet",
5978 Self::CloudWorkbench => "CloudWorkbench",
5979 Self::FakeCloudChest => "Fake_CloudChest",
5980 Self::MoonplateBathtub => "MoonplateBathtub",
5981 Self::MoonplateBed => "MoonplateBed",
5982 Self::MoonplateBookcase => "MoonplateBookcase",
5983 Self::MoonplateCandelabra => "MoonplateCandelabra",
5984 Self::MoonplateCandle => "MoonplateCandle",
5985 Self::MoonplateChair => "MoonplateChair",
5986 Self::MoonplateChandelier => "MoonplateChandelier",
5987 Self::MoonplateChest => "MoonplateChest",
5988 Self::MoonplateClock => "MoonplateClock",
5989 Self::MoonplateDoor => "MoonplateDoor",
5990 Self::MoonplateDresser => "MoonplateDresser",
5991 Self::MoonplateLamp => "MoonplateLamp",
5992 Self::MoonplateLantern => "MoonplateLantern",
5993 Self::MoonplatePiano => "MoonplatePiano",
5994 Self::MoonplatePlatform => "MoonplatePlatform",
5995 Self::MoonplateSink => "MoonplateSink",
5996 Self::MoonplateSofa => "MoonplateSofa",
5997 Self::MoonplateTable => "MoonplateTable",
5998 Self::MoonplateToilet => "MoonplateToilet",
5999 Self::MoonplateWorkbench => "MoonplateWorkbench",
6000 Self::FakeMoonplateChest => "Fake_MoonplateChest",
6001 Self::MoonplateBlock => "MoonplateBlock",
6002 Self::MoonplateBlockWall => "MoonplateBlockWall",
6003 Self::LibrarianBathtub => "LibrarianBathtub",
6004 Self::LibrarianBed => "LibrarianBed",
6005 Self::LibrarianBookcase => "LibrarianBookcase",
6006 Self::LibrarianCandelabra => "LibrarianCandelabra",
6007 Self::LibrarianCandle => "LibrarianCandle",
6008 Self::LibrarianChair => "LibrarianChair",
6009 Self::LibrarianChandelier => "LibrarianChandelier",
6010 Self::LibrarianChest => "LibrarianChest",
6011 Self::LibrarianClock => "LibrarianClock",
6012 Self::LibrarianDoor => "LibrarianDoor",
6013 Self::LibrarianDresser => "LibrarianDresser",
6014 Self::LibrarianLamp => "LibrarianLamp",
6015 Self::LibrarianLantern => "LibrarianLantern",
6016 Self::LibrarianPiano => "LibrarianPiano",
6017 Self::LibrarianPlatform => "LibrarianPlatform",
6018 Self::LibrarianSink => "LibrarianSink",
6019 Self::LibrarianSofa => "LibrarianSofa",
6020 Self::LibrarianTable => "LibrarianTable",
6021 Self::LibrarianToilet => "LibrarianToilet",
6022 Self::LibrarianWorkbench => "LibrarianWorkbench",
6023 Self::FakeLibrarianChest => "Fake_LibrarianChest",
6024 Self::LibrarianBlock => "LibrarianBlock",
6025 Self::LibrarianBlockWall => "LibrarianBlockWall",
6026 Self::SpikeBathtub => "SpikeBathtub",
6027 Self::SpikeBed => "SpikeBed",
6028 Self::SpikeBookcase => "SpikeBookcase",
6029 Self::SpikeCandelabra => "SpikeCandelabra",
6030 Self::SpikeCandle => "SpikeCandle",
6031 Self::SpikeChair => "SpikeChair",
6032 Self::SpikeChandelier => "SpikeChandelier",
6033 Self::SpikeChest => "SpikeChest",
6034 Self::SpikeClock => "SpikeClock",
6035 Self::SpikeDoor => "SpikeDoor",
6036 Self::SpikeDresser => "SpikeDresser",
6037 Self::SpikeLamp => "SpikeLamp",
6038 Self::SpikeLantern => "SpikeLantern",
6039 Self::SpikePiano => "SpikePiano",
6040 Self::SpikePlatform => "SpikePlatform",
6041 Self::SpikeSink => "SpikeSink",
6042 Self::SpikeSofa => "SpikeSofa",
6043 Self::SpikeTable => "SpikeTable",
6044 Self::SpikeToilet => "SpikeToilet",
6045 Self::SpikeWorkbench => "SpikeWorkbench",
6046 Self::FakeSpikeChest => "Fake_SpikeChest",
6047 Self::SpikeBlock => "SpikeBlock",
6048 Self::SpikeBlockWall => "SpikeBlockWall",
6049 Self::OfficeBathtub => "OfficeBathtub",
6050 Self::OfficeBed => "OfficeBed",
6051 Self::OfficeBookcase => "OfficeBookcase",
6052 Self::OfficeCandelabra => "OfficeCandelabra",
6053 Self::OfficeCandle => "OfficeCandle",
6054 Self::OfficeChair => "OfficeChair",
6055 Self::OfficeChandelier => "OfficeChandelier",
6056 Self::OfficeChest => "OfficeChest",
6057 Self::OfficeClock => "OfficeClock",
6058 Self::OfficeDoor => "OfficeDoor",
6059 Self::OfficeDresser => "OfficeDresser",
6060 Self::OfficeLamp => "OfficeLamp",
6061 Self::OfficeLantern => "OfficeLantern",
6062 Self::OfficePiano => "OfficePiano",
6063 Self::OfficePlatform => "OfficePlatform",
6064 Self::OfficeSink => "OfficeSink",
6065 Self::OfficeSofa => "OfficeSofa",
6066 Self::OfficeTable => "OfficeTable",
6067 Self::OfficeToilet => "OfficeToilet",
6068 Self::OfficeWorkbench => "OfficeWorkbench",
6069 Self::FakeOfficeChest => "Fake_OfficeChest",
6070 Self::OfficeBlock => "OfficeBlock",
6071 Self::OfficeBlockWall => "OfficeBlockWall",
6072 Self::ForbiddenBathtub => "ForbiddenBathtub",
6073 Self::ForbiddenBed => "ForbiddenBed",
6074 Self::ForbiddenBookcase => "ForbiddenBookcase",
6075 Self::ForbiddenCandelabra => "ForbiddenCandelabra",
6076 Self::ForbiddenCandle => "ForbiddenCandle",
6077 Self::ForbiddenChair => "ForbiddenChair",
6078 Self::ForbiddenChandelier => "ForbiddenChandelier",
6079 Self::ForbiddenChest => "ForbiddenChest",
6080 Self::ForbiddenClock => "ForbiddenClock",
6081 Self::ForbiddenDoor => "ForbiddenDoor",
6082 Self::ForbiddenDresser => "ForbiddenDresser",
6083 Self::ForbiddenLamp => "ForbiddenLamp",
6084 Self::ForbiddenLantern => "ForbiddenLantern",
6085 Self::ForbiddenPiano => "ForbiddenPiano",
6086 Self::ForbiddenPlatform => "ForbiddenPlatform",
6087 Self::ForbiddenSink => "ForbiddenSink",
6088 Self::ForbiddenSofa => "ForbiddenSofa",
6089 Self::ForbiddenTable => "ForbiddenTable",
6090 Self::ForbiddenToilet => "ForbiddenToilet",
6091 Self::ForbiddenWorkbench => "ForbiddenWorkbench",
6092 Self::FakeForbiddenChest => "Fake_ForbiddenChest",
6093 Self::ForbiddenBlock => "ForbiddenBlock",
6094 Self::ForbiddenBlockWall => "ForbiddenBlockWall",
6095 Self::WaterBathtub => "WaterBathtub",
6096 Self::WaterBed => "WaterBed",
6097 Self::WaterBookcase => "WaterBookcase",
6098 Self::WaterCandelabra => "WaterCandelabra",
6099 Self::WaterFurnitureCandle => "WaterFurnitureCandle",
6100 Self::WaterChair => "WaterChair",
6101 Self::WaterChandelier => "WaterChandelier",
6102 Self::WaterClock => "WaterClock",
6103 Self::WaterDoor => "WaterDoor",
6104 Self::WaterDresser => "WaterDresser",
6105 Self::WaterLamp => "WaterLamp",
6106 Self::WaterLantern => "WaterLantern",
6107 Self::WaterPiano => "WaterPiano",
6108 Self::WaterPlatform => "WaterPlatform",
6109 Self::WaterSink => "WaterSink",
6110 Self::WaterSofa => "WaterSofa",
6111 Self::WaterTable => "WaterTable",
6112 Self::WaterToilet => "WaterToilet",
6113 Self::WaterWorkbench => "WaterWorkbench",
6114 Self::WaterBlock => "WaterBlock",
6115 Self::WaterBlockWall => "WaterBlockWall",
6116 Self::BoulderBathtub => "BoulderBathtub",
6117 Self::BoulderBed => "BoulderBed",
6118 Self::BoulderBookcase => "BoulderBookcase",
6119 Self::BoulderCandelabra => "BoulderCandelabra",
6120 Self::BoulderCandle => "BoulderCandle",
6121 Self::BoulderChair => "BoulderChair",
6122 Self::BoulderChandelier => "BoulderChandelier",
6123 Self::BoulderChest => "BoulderChest",
6124 Self::BoulderClock => "BoulderClock",
6125 Self::BoulderDoor => "BoulderDoor",
6126 Self::BoulderDresser => "BoulderDresser",
6127 Self::BoulderLamp => "BoulderLamp",
6128 Self::BoulderLantern => "BoulderLantern",
6129 Self::BoulderPiano => "BoulderPiano",
6130 Self::BoulderPlatform => "BoulderPlatform",
6131 Self::BoulderSink => "BoulderSink",
6132 Self::BoulderSofa => "BoulderSofa",
6133 Self::BoulderTable => "BoulderTable",
6134 Self::BoulderToilet => "BoulderToilet",
6135 Self::BoulderWorkbench => "BoulderWorkbench",
6136 Self::FakeBoulderChest => "Fake_BoulderChest",
6137 Self::BoulderBlock => "BoulderBlock",
6138 Self::BoulderBlockWall => "BoulderBlockWall",
6139 Self::DamagingSpikeBlock => "DamagingSpikeBlock",
6140 Self::DemonAltarIcon => "DemonAltarIcon",
6141 Self::CrimsonAltarIcon => "CrimsonAltarIcon",
6142 Self::LunasHead => "LunasHead",
6143 Self::LunasBody => "LunasBody",
6144 Self::LunasLegs => "LunasLegs",
6145 Self::LunasWings => "LunasWings",
6146 Self::LunasCloak => "LunasCloak",
6147 Self::PalworldChilletEgg => "PalworldChilletEgg",
6148 Self::FoxparksTagEffect => "FoxparksTagEffect",
6149 Self::MusicBoxSkeletron => "MusicBoxSkeletron",
6150 }
6151 }
6152
6153 pub fn from_code_name(code_name: &str) -> Option<Self> {
6154 Some(match code_name {
6155 "IronPickaxe" => Self::IronPickaxe,
6156 "DirtBlock" => Self::DirtBlock,
6157 "StoneBlock" => Self::StoneBlock,
6158 "IronBroadsword" => Self::IronBroadsword,
6159 "Mushroom" => Self::Mushroom,
6160 "IronShortsword" => Self::IronShortsword,
6161 "IronHammer" => Self::IronHammer,
6162 "Torch" => Self::Torch,
6163 "Wood" => Self::Wood,
6164 "IronAxe" => Self::IronAxe,
6165 "IronOre" => Self::IronOre,
6166 "CopperOre" => Self::CopperOre,
6167 "GoldOre" => Self::GoldOre,
6168 "SilverOre" => Self::SilverOre,
6169 "CopperWatch" => Self::CopperWatch,
6170 "SilverWatch" => Self::SilverWatch,
6171 "GoldWatch" => Self::GoldWatch,
6172 "DepthMeter" => Self::DepthMeter,
6173 "GoldBar" => Self::GoldBar,
6174 "CopperBar" => Self::CopperBar,
6175 "SilverBar" => Self::SilverBar,
6176 "IronBar" => Self::IronBar,
6177 "Gel" => Self::Gel,
6178 "WoodenSword" => Self::WoodenSword,
6179 "WoodenDoor" => Self::WoodenDoor,
6180 "StoneWall" => Self::StoneWall,
6181 "Acorn" => Self::Acorn,
6182 "LesserHealingPotion" => Self::LesserHealingPotion,
6183 "LifeCrystal" => Self::LifeCrystal,
6184 "DirtWall" => Self::DirtWall,
6185 "Bottle" => Self::Bottle,
6186 "WoodenTable" => Self::WoodenTable,
6187 "Furnace" => Self::Furnace,
6188 "WoodenChair" => Self::WoodenChair,
6189 "IronAnvil" => Self::IronAnvil,
6190 "WorkBench" => Self::WorkBench,
6191 "Goggles" => Self::Goggles,
6192 "Lens" => Self::Lens,
6193 "WoodenBow" => Self::WoodenBow,
6194 "WoodenArrow" => Self::WoodenArrow,
6195 "FlamingArrow" => Self::FlamingArrow,
6196 "Shuriken" => Self::Shuriken,
6197 "SuspiciousLookingEye" => Self::SuspiciousLookingEye,
6198 "DemonBow" => Self::DemonBow,
6199 "WarAxeoftheNight" => Self::WarAxeOfTheNight,
6200 "LightsBane" => Self::LightsBane,
6201 "UnholyArrow" => Self::UnholyArrow,
6202 "Chest" => Self::Chest,
6203 "BandofRegeneration" => Self::BandOfRegeneration,
6204 "MagicMirror" => Self::MagicMirror,
6205 "JestersArrow" => Self::JestersArrow,
6206 "AngelStatue" => Self::AngelStatue,
6207 "CloudinaBottle" => Self::CloudInABottle,
6208 "HermesBoots" => Self::HermesBoots,
6209 "EnchantedBoomerang" => Self::EnchantedBoomerang,
6210 "DemoniteOre" => Self::DemoniteOre,
6211 "DemoniteBar" => Self::DemoniteBar,
6212 "Heart" => Self::Heart,
6213 "CorruptSeeds" => Self::CorruptSeeds,
6214 "VileMushroom" => Self::VileMushroom,
6215 "EbonstoneBlock" => Self::EbonstoneBlock,
6216 "GrassSeeds" => Self::GrassSeeds,
6217 "Sunflower" => Self::Sunflower,
6218 "Vilethorn" => Self::Vilethorn,
6219 "Starfury" => Self::Starfury,
6220 "PurificationPowder" => Self::PurificationPowder,
6221 "VilePowder" => Self::VilePowder,
6222 "RottenChunk" => Self::RottenChunk,
6223 "WormTooth" => Self::WormTooth,
6224 "WormFood" => Self::WormFood,
6225 "CopperCoin" => Self::CopperCoin,
6226 "SilverCoin" => Self::SilverCoin,
6227 "GoldCoin" => Self::GoldCoin,
6228 "PlatinumCoin" => Self::PlatinumCoin,
6229 "FallenStar" => Self::FallenStar,
6230 "CopperGreaves" => Self::CopperGreaves,
6231 "IronGreaves" => Self::IronGreaves,
6232 "SilverGreaves" => Self::SilverGreaves,
6233 "GoldGreaves" => Self::GoldGreaves,
6234 "CopperChainmail" => Self::CopperChainmail,
6235 "IronChainmail" => Self::IronChainmail,
6236 "SilverChainmail" => Self::SilverChainmail,
6237 "GoldChainmail" => Self::GoldChainmail,
6238 "GrapplingHook" => Self::GrapplingHook,
6239 "Chain" => Self::Chain,
6240 "ShadowScale" => Self::ShadowScale,
6241 "PiggyBank" => Self::PiggyBank,
6242 "MiningHelmet" => Self::MiningHelmet,
6243 "CopperHelmet" => Self::CopperHelmet,
6244 "IronHelmet" => Self::IronHelmet,
6245 "SilverHelmet" => Self::SilverHelmet,
6246 "GoldHelmet" => Self::GoldHelmet,
6247 "WoodWall" => Self::WoodWall,
6248 "WoodPlatform" => Self::WoodPlatform,
6249 "FlintlockPistol" => Self::FlintlockPistol,
6250 "Musket" => Self::Musket,
6251 "MusketBall" => Self::MusketBall,
6252 "Minishark" => Self::Minishark,
6253 "IronBow" => Self::IronBow,
6254 "ShadowGreaves" => Self::ShadowGreaves,
6255 "ShadowScalemail" => Self::ShadowScalemail,
6256 "ShadowHelmet" => Self::ShadowHelmet,
6257 "NightmarePickaxe" => Self::NightmarePickaxe,
6258 "TheBreaker" => Self::TheBreaker,
6259 "Candle" => Self::Candle,
6260 "CopperChandelier" => Self::CopperChandelier,
6261 "SilverChandelier" => Self::SilverChandelier,
6262 "GoldChandelier" => Self::GoldChandelier,
6263 "ManaCrystal" => Self::ManaCrystal,
6264 "LesserManaPotion" => Self::LesserManaPotion,
6265 "BandofStarpower" => Self::BandOfStarpower,
6266 "FlowerofFire" => Self::FlowerOfFire,
6267 "MagicMissile" => Self::MagicMissile,
6268 "DirtRod" => Self::DirtRod,
6269 "ShadowOrb" => Self::ShadowOrb,
6270 "Meteorite" => Self::Meteorite,
6271 "MeteoriteBar" => Self::MeteoriteBar,
6272 "Hook" => Self::Hook,
6273 "Flamarang" => Self::Flamarang,
6274 "MoltenFury" => Self::MoltenFury,
6275 "FieryGreatsword" => Self::FieryGreatsword,
6276 "MoltenPickaxe" => Self::MoltenPickaxe,
6277 "MeteorHelmet" => Self::MeteorHelmet,
6278 "MeteorSuit" => Self::MeteorSuit,
6279 "MeteorLeggings" => Self::MeteorLeggings,
6280 "BottledWater" => Self::BottledWater,
6281 "SpaceGun" => Self::SpaceGun,
6282 "RocketBoots" => Self::RocketBoots,
6283 "GrayBrick" => Self::GrayBrick,
6284 "GrayBrickWall" => Self::GrayBrickWall,
6285 "RedBrick" => Self::RedBrick,
6286 "RedBrickWall" => Self::RedBrickWall,
6287 "ClayBlock" => Self::ClayBlock,
6288 "BlueBrick" => Self::BlueBrick,
6289 "BlueBrickWall" => Self::BlueBrickWall,
6290 "ChainLantern" => Self::ChainLantern,
6291 "GreenBrick" => Self::GreenBrick,
6292 "GreenBrickWall" => Self::GreenBrickWall,
6293 "PinkBrick" => Self::PinkBrick,
6294 "PinkBrickWall" => Self::PinkBrickWall,
6295 "GoldBrick" => Self::GoldBrick,
6296 "GoldBrickWall" => Self::GoldBrickWall,
6297 "SilverBrick" => Self::SilverBrick,
6298 "SilverBrickWall" => Self::SilverBrickWall,
6299 "CopperBrick" => Self::CopperBrick,
6300 "CopperBrickWall" => Self::CopperBrickWall,
6301 "Spike" => Self::Spike,
6302 "WaterCandle" => Self::WaterCandle,
6303 "Book" => Self::Book,
6304 "Cobweb" => Self::Cobweb,
6305 "NecroHelmet" => Self::NecroHelmet,
6306 "NecroBreastplate" => Self::NecroBreastplate,
6307 "NecroGreaves" => Self::NecroGreaves,
6308 "Bone" => Self::Bone,
6309 "Muramasa" => Self::Muramasa,
6310 "CobaltShield" => Self::CobaltShield,
6311 "AquaScepter" => Self::AquaScepter,
6312 "LuckyHorseshoe" => Self::LuckyHorseshoe,
6313 "ShinyRedBalloon" => Self::ShinyRedBalloon,
6314 "Harpoon" => Self::Harpoon,
6315 "SpikyBall" => Self::SpikyBall,
6316 "BallOHurt" => Self::BallOHurt,
6317 "BlueMoon" => Self::BlueMoon,
6318 "Handgun" => Self::Handgun,
6319 "WaterBolt" => Self::WaterBolt,
6320 "Bomb" => Self::Bomb,
6321 "Dynamite" => Self::Dynamite,
6322 "Grenade" => Self::Grenade,
6323 "SandBlock" => Self::SandBlock,
6324 "Glass" => Self::Glass,
6325 "Sign" => Self::Sign,
6326 "AshBlock" => Self::AshBlock,
6327 "Obsidian" => Self::Obsidian,
6328 "Hellstone" => Self::Hellstone,
6329 "HellstoneBar" => Self::HellstoneBar,
6330 "MudBlock" => Self::MudBlock,
6331 "Sapphire" => Self::Sapphire,
6332 "Ruby" => Self::Ruby,
6333 "Emerald" => Self::Emerald,
6334 "Topaz" => Self::Topaz,
6335 "Amethyst" => Self::Amethyst,
6336 "Diamond" => Self::Diamond,
6337 "GlowingMushroom" => Self::GlowingMushroom,
6338 "Star" => Self::Star,
6339 "IvyWhip" => Self::IvyWhip,
6340 "BreathingReed" => Self::BreathingReed,
6341 "Flipper" => Self::Flipper,
6342 "HealingPotion" => Self::HealingPotion,
6343 "ManaPotion" => Self::ManaPotion,
6344 "BladeofGrass" => Self::BladeOfGrass,
6345 "ThornChakram" => Self::ThornChakram,
6346 "ObsidianBrick" => Self::ObsidianBrick,
6347 "ObsidianSkull" => Self::ObsidianSkull,
6348 "MushroomGrassSeeds" => Self::MushroomGrassSeeds,
6349 "JungleGrassSeeds" => Self::JungleGrassSeeds,
6350 "WoodenHammer" => Self::WoodenHammer,
6351 "StarCannon" => Self::StarCannon,
6352 "BluePhaseblade" => Self::BluePhaseblade,
6353 "RedPhaseblade" => Self::RedPhaseblade,
6354 "GreenPhaseblade" => Self::GreenPhaseblade,
6355 "PurplePhaseblade" => Self::PurplePhaseblade,
6356 "WhitePhaseblade" => Self::WhitePhaseblade,
6357 "YellowPhaseblade" => Self::YellowPhaseblade,
6358 "MeteorHamaxe" => Self::MeteorHamaxe,
6359 "EmptyBucket" => Self::EmptyBucket,
6360 "WaterBucket" => Self::WaterBucket,
6361 "LavaBucket" => Self::LavaBucket,
6362 "JungleRose" => Self::JungleRose,
6363 "Stinger" => Self::Stinger,
6364 "Vine" => Self::Vine,
6365 "FeralClaws" => Self::FeralClaws,
6366 "AnkletoftheWind" => Self::AnkletOfTheWind,
6367 "StaffofRegrowth" => Self::StaffOfRegrowth,
6368 "HellstoneBrick" => Self::HellstoneBrick,
6369 "WhoopieCushion" => Self::WhoopieCushion,
6370 "Shackle" => Self::Shackle,
6371 "MoltenHamaxe" => Self::MoltenHamaxe,
6372 "Flamelash" => Self::Flamelash,
6373 "PhoenixBlaster" => Self::PhoenixBlaster,
6374 "Sunfury" => Self::Sunfury,
6375 "Hellforge" => Self::Hellforge,
6376 "ClayPot" => Self::ClayPot,
6377 "NaturesGift" => Self::NaturesGift,
6378 "Bed" => Self::Bed,
6379 "Silk" => Self::Silk,
6380 "LesserRestorationPotion" => Self::LesserRestorationPotion,
6381 "RestorationPotion" => Self::RestorationPotion,
6382 "JungleHat" => Self::JungleHat,
6383 "JungleShirt" => Self::JungleShirt,
6384 "JunglePants" => Self::JunglePants,
6385 "MoltenHelmet" => Self::MoltenHelmet,
6386 "MoltenBreastplate" => Self::MoltenBreastplate,
6387 "MoltenGreaves" => Self::MoltenGreaves,
6388 "MeteorShot" => Self::MeteorShot,
6389 "StickyBomb" => Self::StickyBomb,
6390 "BlackLens" => Self::BlackLens,
6391 "Sunglasses" => Self::Sunglasses,
6392 "WizardHat" => Self::WizardHat,
6393 "TopHat" => Self::TopHat,
6394 "TuxedoShirt" => Self::TuxedoShirt,
6395 "TuxedoPants" => Self::TuxedoPants,
6396 "SummerHat" => Self::SummerHat,
6397 "BunnyHood" => Self::BunnyHood,
6398 "PlumbersHat" => Self::PlumbersHat,
6399 "PlumbersShirt" => Self::PlumbersShirt,
6400 "PlumbersPants" => Self::PlumbersPants,
6401 "HerosHat" => Self::HerosHat,
6402 "HerosShirt" => Self::HerosShirt,
6403 "HerosPants" => Self::HerosPants,
6404 "FishBowl" => Self::FishBowl,
6405 "ArchaeologistsHat" => Self::ArchaeologistsHat,
6406 "ArchaeologistsJacket" => Self::ArchaeologistsJacket,
6407 "ArchaeologistsPants" => Self::ArchaeologistsPants,
6408 "BlackThread" => Self::BlackThread,
6409 "GreenThread" => Self::GreenThread,
6410 "NinjaHood" => Self::NinjaHood,
6411 "NinjaShirt" => Self::NinjaShirt,
6412 "NinjaPants" => Self::NinjaPants,
6413 "Leather" => Self::Leather,
6414 "RedHat" => Self::RedHat,
6415 "Goldfish" => Self::Goldfish,
6416 "Robe" => Self::Robe,
6417 "RobotHat" => Self::RobotHat,
6418 "GoldCrown" => Self::GoldCrown,
6419 "HellfireArrow" => Self::HellfireArrow,
6420 "Sandgun" => Self::Sandgun,
6421 "GuideVoodooDoll" => Self::GuideVoodooDoll,
6422 "DivingHelmet" => Self::DivingHelmet,
6423 "FamiliarShirt" => Self::FamiliarShirt,
6424 "FamiliarPants" => Self::FamiliarPants,
6425 "FamiliarWig" => Self::FamiliarWig,
6426 "DemonScythe" => Self::DemonScythe,
6427 "NightsEdge" => Self::NightsEdge,
6428 "DarkLance" => Self::DarkLance,
6429 "Coral" => Self::Coral,
6430 "Cactus" => Self::Cactus,
6431 "Trident" => Self::Trident,
6432 "SilverBullet" => Self::SilverBullet,
6433 "ThrowingKnife" => Self::ThrowingKnife,
6434 "Spear" => Self::Spear,
6435 "Blowpipe" => Self::Blowpipe,
6436 "Glowstick" => Self::Glowstick,
6437 "Seed" => Self::Seed,
6438 "WoodenBoomerang" => Self::WoodenBoomerang,
6439 "Aglet" => Self::Aglet,
6440 "StickyGlowstick" => Self::StickyGlowstick,
6441 "PoisonedKnife" => Self::PoisonedKnife,
6442 "ObsidianSkinPotion" => Self::ObsidianSkinPotion,
6443 "RegenerationPotion" => Self::RegenerationPotion,
6444 "SwiftnessPotion" => Self::SwiftnessPotion,
6445 "GillsPotion" => Self::GillsPotion,
6446 "IronskinPotion" => Self::IronskinPotion,
6447 "ManaRegenerationPotion" => Self::ManaRegenerationPotion,
6448 "MagicPowerPotion" => Self::MagicPowerPotion,
6449 "FeatherfallPotion" => Self::FeatherfallPotion,
6450 "SpelunkerPotion" => Self::SpelunkerPotion,
6451 "InvisibilityPotion" => Self::InvisibilityPotion,
6452 "ShinePotion" => Self::ShinePotion,
6453 "NightOwlPotion" => Self::NightOwlPotion,
6454 "BattlePotion" => Self::BattlePotion,
6455 "ThornsPotion" => Self::ThornsPotion,
6456 "WaterWalkingPotion" => Self::WaterWalkingPotion,
6457 "ArcheryPotion" => Self::ArcheryPotion,
6458 "HunterPotion" => Self::HunterPotion,
6459 "GravitationPotion" => Self::GravitationPotion,
6460 "GoldChest" => Self::GoldChest,
6461 "DaybloomSeeds" => Self::DaybloomSeeds,
6462 "MoonglowSeeds" => Self::MoonglowSeeds,
6463 "BlinkrootSeeds" => Self::BlinkrootSeeds,
6464 "DeathweedSeeds" => Self::DeathweedSeeds,
6465 "WaterleafSeeds" => Self::WaterleafSeeds,
6466 "FireblossomSeeds" => Self::FireblossomSeeds,
6467 "Daybloom" => Self::Daybloom,
6468 "Moonglow" => Self::Moonglow,
6469 "Blinkroot" => Self::Blinkroot,
6470 "Deathweed" => Self::Deathweed,
6471 "Waterleaf" => Self::Waterleaf,
6472 "Fireblossom" => Self::Fireblossom,
6473 "SharkFin" => Self::SharkFin,
6474 "Feather" => Self::Feather,
6475 "Tombstone" => Self::Tombstone,
6476 "MimeMask" => Self::MimeMask,
6477 "AntlionMandible" => Self::AntlionMandible,
6478 "IllegalGunParts" => Self::IllegalGunParts,
6479 "TheDoctorsShirt" => Self::TheDoctorsShirt,
6480 "TheDoctorsPants" => Self::TheDoctorsPants,
6481 "GoldenKey" => Self::GoldenKey,
6482 "ShadowChest" => Self::ShadowChest,
6483 "ShadowKey" => Self::ShadowKey,
6484 "ObsidianBrickWall" => Self::ObsidianBrickWall,
6485 "JungleSpores" => Self::JungleSpores,
6486 "Loom" => Self::Loom,
6487 "Piano" => Self::Piano,
6488 "Dresser" => Self::Dresser,
6489 "Bench" => Self::Bench,
6490 "Bathtub" => Self::Bathtub,
6491 "RedBanner" => Self::RedBanner,
6492 "GreenBanner" => Self::GreenBanner,
6493 "BlueBanner" => Self::BlueBanner,
6494 "YellowBanner" => Self::YellowBanner,
6495 "LampPost" => Self::LampPost,
6496 "TikiTorch" => Self::TikiTorch,
6497 "Barrel" => Self::Barrel,
6498 "ChineseLantern" => Self::ChineseLantern,
6499 "CookingPot" => Self::CookingPot,
6500 "Safe" => Self::Safe,
6501 "SkullLantern" => Self::SkullLantern,
6502 "TrashCan" => Self::TrashCan,
6503 "Candelabra" => Self::Candelabra,
6504 "PinkVase" => Self::PinkVase,
6505 "Mug" => Self::Mug,
6506 "Keg" => Self::Keg,
6507 "Ale" => Self::Ale,
6508 "Bookcase" => Self::Bookcase,
6509 "Throne" => Self::Throne,
6510 "Bowl" => Self::Bowl,
6511 "BowlofSoup" => Self::BowlOfSoup,
6512 "Toilet" => Self::Toilet,
6513 "GrandfatherClock" => Self::GrandfatherClock,
6514 "ArmorStatue" => Self::ArmorStatue,
6515 "GoblinBattleStandard" => Self::GoblinBattleStandard,
6516 "TatteredCloth" => Self::TatteredCloth,
6517 "Sawmill" => Self::Sawmill,
6518 "CobaltOre" => Self::CobaltOre,
6519 "MythrilOre" => Self::MythrilOre,
6520 "AdamantiteOre" => Self::AdamantiteOre,
6521 "Pwnhammer" => Self::Pwnhammer,
6522 "Excalibur" => Self::Excalibur,
6523 "HallowedSeeds" => Self::HallowedSeeds,
6524 "EbonsandBlock" => Self::EbonsandBlock,
6525 "CobaltHat" => Self::CobaltHat,
6526 "CobaltHelmet" => Self::CobaltHelmet,
6527 "CobaltMask" => Self::CobaltMask,
6528 "CobaltBreastplate" => Self::CobaltBreastplate,
6529 "CobaltLeggings" => Self::CobaltLeggings,
6530 "MythrilHood" => Self::MythrilHood,
6531 "MythrilHelmet" => Self::MythrilHelmet,
6532 "MythrilHat" => Self::MythrilHat,
6533 "MythrilChainmail" => Self::MythrilChainmail,
6534 "MythrilGreaves" => Self::MythrilGreaves,
6535 "CobaltBar" => Self::CobaltBar,
6536 "MythrilBar" => Self::MythrilBar,
6537 "CobaltChainsaw" => Self::CobaltChainsaw,
6538 "MythrilChainsaw" => Self::MythrilChainsaw,
6539 "CobaltDrill" => Self::CobaltDrill,
6540 "MythrilDrill" => Self::MythrilDrill,
6541 "AdamantiteChainsaw" => Self::AdamantiteChainsaw,
6542 "AdamantiteDrill" => Self::AdamantiteDrill,
6543 "DaoofPow" => Self::DaoOfPow,
6544 "MythrilHalberd" => Self::MythrilHalberd,
6545 "AdamantiteBar" => Self::AdamantiteBar,
6546 "GlassWall" => Self::GlassWall,
6547 "Compass" => Self::Compass,
6548 "DivingGear" => Self::DivingGear,
6549 "GPS" => Self::Gps,
6550 "ObsidianHorseshoe" => Self::ObsidianHorseshoe,
6551 "ObsidianShield" => Self::ObsidianShield,
6552 "TinkerersWorkshop" => Self::TinkerersWorkshop,
6553 "CloudinaBalloon" => Self::CloudinaBalloon,
6554 "AdamantiteHeadgear" => Self::AdamantiteHeadgear,
6555 "AdamantiteHelmet" => Self::AdamantiteHelmet,
6556 "AdamantiteMask" => Self::AdamantiteMask,
6557 "AdamantiteBreastplate" => Self::AdamantiteBreastplate,
6558 "AdamantiteLeggings" => Self::AdamantiteLeggings,
6559 "SpectreBoots" => Self::SpectreBoots,
6560 "AdamantiteGlaive" => Self::AdamantiteGlaive,
6561 "Toolbelt" => Self::Toolbelt,
6562 "PearlsandBlock" => Self::PearlsandBlock,
6563 "PearlstoneBlock" => Self::PearlstoneBlock,
6564 "MiningShirt" => Self::MiningShirt,
6565 "MiningPants" => Self::MiningPants,
6566 "PearlstoneBrick" => Self::PearlstoneBrick,
6567 "IridescentBrick" => Self::IridescentBrick,
6568 "MudstoneBlock" => Self::MudstoneBlock,
6569 "CobaltBrick" => Self::CobaltBrick,
6570 "MythrilBrick" => Self::MythrilBrick,
6571 "PearlstoneBrickWall" => Self::PearlstoneBrickWall,
6572 "IridescentBrickWall" => Self::IridescentBrickWall,
6573 "MudstoneBrickWall" => Self::MudstoneBrickWall,
6574 "CobaltBrickWall" => Self::CobaltBrickWall,
6575 "MythrilBrickWall" => Self::MythrilBrickWall,
6576 "HolyWater" => Self::HolyWater,
6577 "UnholyWater" => Self::UnholyWater,
6578 "SiltBlock" => Self::SiltBlock,
6579 "FairyBell" => Self::FairyBell,
6580 "BreakerBlade" => Self::BreakerBlade,
6581 "BlueTorch" => Self::BlueTorch,
6582 "RedTorch" => Self::RedTorch,
6583 "GreenTorch" => Self::GreenTorch,
6584 "PurpleTorch" => Self::PurpleTorch,
6585 "WhiteTorch" => Self::WhiteTorch,
6586 "YellowTorch" => Self::YellowTorch,
6587 "DemonTorch" => Self::DemonTorch,
6588 "ClockworkAssaultRifle" => Self::ClockworkAssaultRifle,
6589 "CobaltRepeater" => Self::CobaltRepeater,
6590 "MythrilRepeater" => Self::MythrilRepeater,
6591 "DualHook" => Self::DualHook,
6592 "StarStatue" => Self::StarStatue,
6593 "SwordStatue" => Self::SwordStatue,
6594 "SlimeStatue" => Self::SlimeStatue,
6595 "GoblinStatue" => Self::GoblinStatue,
6596 "ShieldStatue" => Self::ShieldStatue,
6597 "BatStatue" => Self::BatStatue,
6598 "FishStatue" => Self::FishStatue,
6599 "BunnyStatue" => Self::BunnyStatue,
6600 "SkeletonStatue" => Self::SkeletonStatue,
6601 "ReaperStatue" => Self::ReaperStatue,
6602 "WomanStatue" => Self::WomanStatue,
6603 "ImpStatue" => Self::ImpStatue,
6604 "GargoyleStatue" => Self::GargoyleStatue,
6605 "GloomStatue" => Self::GloomStatue,
6606 "HornetStatue" => Self::HornetStatue,
6607 "BombStatue" => Self::BombStatue,
6608 "CrabStatue" => Self::CrabStatue,
6609 "HammerStatue" => Self::HammerStatue,
6610 "PotionStatue" => Self::PotionStatue,
6611 "SpearStatue" => Self::SpearStatue,
6612 "CrossStatue" => Self::CrossStatue,
6613 "JellyfishStatue" => Self::JellyfishStatue,
6614 "BowStatue" => Self::BowStatue,
6615 "BoomerangStatue" => Self::BoomerangStatue,
6616 "BootStatue" => Self::BootStatue,
6617 "ChestStatue" => Self::ChestStatue,
6618 "BirdStatue" => Self::BirdStatue,
6619 "AxeStatue" => Self::AxeStatue,
6620 "CorruptStatue" => Self::CorruptStatue,
6621 "TreeStatue" => Self::TreeStatue,
6622 "AnvilStatue" => Self::AnvilStatue,
6623 "PickaxeStatue" => Self::PickaxeStatue,
6624 "MushroomStatue" => Self::MushroomStatue,
6625 "EyeballStatue" => Self::EyeballStatue,
6626 "PillarStatue" => Self::PillarStatue,
6627 "HeartStatue" => Self::HeartStatue,
6628 "PotStatue" => Self::PotStatue,
6629 "SunflowerStatue" => Self::SunflowerStatue,
6630 "KingStatue" => Self::KingStatue,
6631 "QueenStatue" => Self::QueenStatue,
6632 "PiranhaStatue" => Self::PiranhaStatue,
6633 "PlankedWall" => Self::PlankedWall,
6634 "WoodenBeam" => Self::WoodenBeam,
6635 "AdamantiteRepeater" => Self::AdamantiteRepeater,
6636 "AdamantiteSword" => Self::AdamantiteSword,
6637 "CobaltSword" => Self::CobaltSword,
6638 "MythrilSword" => Self::MythrilSword,
6639 "MoonCharm" => Self::MoonCharm,
6640 "Ruler" => Self::Ruler,
6641 "CrystalBall" => Self::CrystalBall,
6642 "DiscoBall" => Self::DiscoBall,
6643 "SorcererEmblem" => Self::SorcererEmblem,
6644 "WarriorEmblem" => Self::WarriorEmblem,
6645 "RangerEmblem" => Self::RangerEmblem,
6646 "DemonWings" => Self::DemonWings,
6647 "AngelWings" => Self::AngelWings,
6648 "MagicalHarp" => Self::MagicalHarp,
6649 "RainbowRod" => Self::RainbowRod,
6650 "IceRod" => Self::IceRod,
6651 "NeptunesShell" => Self::NeptunesShell,
6652 "Mannequin" => Self::Mannequin,
6653 "GreaterHealingPotion" => Self::GreaterHealingPotion,
6654 "GreaterManaPotion" => Self::GreaterManaPotion,
6655 "PixieDust" => Self::PixieDust,
6656 "CrystalShard" => Self::CrystalShard,
6657 "ClownHat" => Self::ClownHat,
6658 "ClownShirt" => Self::ClownShirt,
6659 "ClownPants" => Self::ClownPants,
6660 "Flamethrower" => Self::Flamethrower,
6661 "Bell" => Self::Bell,
6662 "Harp" => Self::Harp,
6663 "Wrench" => Self::Wrench,
6664 "WireCutter" => Self::WireCutter,
6665 "ActiveStoneBlock" => Self::ActiveStoneBlock,
6666 "InactiveStoneBlock" => Self::InactiveStoneBlock,
6667 "Lever" => Self::Lever,
6668 "LaserRifle" => Self::LaserRifle,
6669 "CrystalBullet" => Self::CrystalBullet,
6670 "HolyArrow" => Self::HolyArrow,
6671 "MagicDagger" => Self::MagicDagger,
6672 "CrystalStorm" => Self::CrystalStorm,
6673 "CursedFlames" => Self::CursedFlames,
6674 "SoulofLight" => Self::SoulOfLight,
6675 "SoulofNight" => Self::SoulOfNight,
6676 "CursedFlame" => Self::CursedFlame,
6677 "CursedTorch" => Self::CursedTorch,
6678 "AdamantiteForge" => Self::AdamantiteForge,
6679 "MythrilAnvil" => Self::MythrilAnvil,
6680 "UnicornHorn" => Self::UnicornHorn,
6681 "DarkShard" => Self::DarkShard,
6682 "LightShard" => Self::LightShard,
6683 "RedPressurePlate" => Self::RedPressurePlate,
6684 "Wire" => Self::Wire,
6685 "SpellTome" => Self::SpellTome,
6686 "StarCloak" => Self::StarCloak,
6687 "Megashark" => Self::Megashark,
6688 "Shotgun" => Self::Shotgun,
6689 "PhilosophersStone" => Self::PhilosophersStone,
6690 "TitanGlove" => Self::TitanGlove,
6691 "CobaltNaginata" => Self::CobaltNaginata,
6692 "Switch" => Self::Switch,
6693 "DartTrap" => Self::DartTrap,
6694 "Boulder" => Self::Boulder,
6695 "GreenPressurePlate" => Self::GreenPressurePlate,
6696 "GrayPressurePlate" => Self::GrayPressurePlate,
6697 "BrownPressurePlate" => Self::BrownPressurePlate,
6698 "MechanicalEye" => Self::MechanicalEye,
6699 "CursedArrow" => Self::CursedArrow,
6700 "CursedBullet" => Self::CursedBullet,
6701 "SoulofFright" => Self::SoulOfFright,
6702 "SoulofMight" => Self::SoulOfMight,
6703 "SoulofSight" => Self::SoulOfSight,
6704 "Gungnir" => Self::Gungnir,
6705 "HallowedPlateMail" => Self::HallowedPlateMail,
6706 "HallowedGreaves" => Self::HallowedGreaves,
6707 "HallowedHelmet" => Self::HallowedHelmet,
6708 "CrossNecklace" => Self::CrossNecklace,
6709 "ManaFlower" => Self::ManaFlower,
6710 "MechanicalWorm" => Self::MechanicalWorm,
6711 "MechanicalSkull" => Self::MechanicalSkull,
6712 "HallowedHeadgear" => Self::HallowedHeadgear,
6713 "HallowedMask" => Self::HallowedMask,
6714 "SlimeCrown" => Self::SlimeCrown,
6715 "LightDisc" => Self::LightDisc,
6716 "MusicBoxOverworldDay" => Self::MusicBoxOverworldDay,
6717 "MusicBoxEerie" => Self::MusicBoxEerie,
6718 "MusicBoxNight" => Self::MusicBoxNight,
6719 "MusicBoxTitle" => Self::MusicBoxTitle,
6720 "MusicBoxUnderground" => Self::MusicBoxUnderground,
6721 "MusicBoxBoss1" => Self::MusicBoxBoss1,
6722 "MusicBoxJungle" => Self::MusicBoxJungle,
6723 "MusicBoxCorruption" => Self::MusicBoxCorruption,
6724 "MusicBoxUndergroundCorruption" => Self::MusicBoxUndergroundCorruption,
6725 "MusicBoxTheHallow" => Self::MusicBoxTheHallow,
6726 "MusicBoxBoss2" => Self::MusicBoxBoss2,
6727 "MusicBoxUndergroundHallow" => Self::MusicBoxUndergroundHallow,
6728 "MusicBoxBoss3" => Self::MusicBoxBoss3,
6729 "SoulofFlight" => Self::SoulOfFlight,
6730 "MusicBox" => Self::MusicBox,
6731 "DemoniteBrick" => Self::DemoniteBrick,
6732 "HallowedRepeater" => Self::HallowedRepeater,
6733 "Drax" => Self::Drax,
6734 "Explosives" => Self::Explosives,
6735 "InletPump" => Self::InletPump,
6736 "OutletPump" => Self::OutletPump,
6737 "Timer1Second" => Self::Timer1Second,
6738 "Timer3Second" => Self::Timer3Second,
6739 "Timer5Second" => Self::Timer5Second,
6740 "CandyCaneBlock" => Self::CandyCaneBlock,
6741 "CandyCaneWall" => Self::CandyCaneWall,
6742 "SantaHat" => Self::SantaHat,
6743 "SantaShirt" => Self::SantaShirt,
6744 "SantaPants" => Self::SantaPants,
6745 "GreenCandyCaneBlock" => Self::GreenCandyCaneBlock,
6746 "GreenCandyCaneWall" => Self::GreenCandyCaneWall,
6747 "SnowBlock" => Self::SnowBlock,
6748 "SnowBrick" => Self::SnowBrick,
6749 "SnowBrickWall" => Self::SnowBrickWall,
6750 "BlueLight" => Self::BlueLight,
6751 "RedLight" => Self::RedLight,
6752 "GreenLight" => Self::GreenLight,
6753 "BluePresent" => Self::BluePresent,
6754 "GreenPresent" => Self::GreenPresent,
6755 "YellowPresent" => Self::YellowPresent,
6756 "SnowGlobe" => Self::SnowGlobe,
6757 "Carrot" => Self::Carrot,
6758 "AdamantiteBeam" => Self::AdamantiteBeam,
6759 "AdamantiteBeamWall" => Self::AdamantiteBeamWall,
6760 "DemoniteBrickWall" => Self::DemoniteBrickWall,
6761 "SandstoneBrick" => Self::SandstoneBrick,
6762 "SandstoneBrickWall" => Self::SandstoneBrickWall,
6763 "EbonstoneBrick" => Self::EbonstoneBrick,
6764 "EbonstoneBrickWall" => Self::EbonstoneBrickWall,
6765 "RedStucco" => Self::RedStucco,
6766 "YellowStucco" => Self::YellowStucco,
6767 "GreenStucco" => Self::GreenStucco,
6768 "GrayStucco" => Self::GrayStucco,
6769 "RedStuccoWall" => Self::RedStuccoWall,
6770 "YellowStuccoWall" => Self::YellowStuccoWall,
6771 "GreenStuccoWall" => Self::GreenStuccoWall,
6772 "GrayStuccoWall" => Self::GrayStuccoWall,
6773 "Ebonwood" => Self::Ebonwood,
6774 "RichMahogany" => Self::RichMahogany,
6775 "Pearlwood" => Self::Pearlwood,
6776 "EbonwoodWall" => Self::EbonwoodWall,
6777 "RichMahoganyWall" => Self::RichMahoganyWall,
6778 "PearlwoodWall" => Self::PearlwoodWall,
6779 "EbonwoodChest" => Self::EbonwoodChest,
6780 "RichMahoganyChest" => Self::RichMahoganyChest,
6781 "PearlwoodChest" => Self::PearlwoodChest,
6782 "EbonwoodChair" => Self::EbonwoodChair,
6783 "RichMahoganyChair" => Self::RichMahoganyChair,
6784 "PearlwoodChair" => Self::PearlwoodChair,
6785 "EbonwoodPlatform" => Self::EbonwoodPlatform,
6786 "RichMahoganyPlatform" => Self::RichMahoganyPlatform,
6787 "PearlwoodPlatform" => Self::PearlwoodPlatform,
6788 "BonePlatform" => Self::BonePlatform,
6789 "EbonwoodWorkBench" => Self::EbonwoodWorkBench,
6790 "RichMahoganyWorkBench" => Self::RichMahoganyWorkBench,
6791 "PearlwoodWorkBench" => Self::PearlwoodWorkBench,
6792 "EbonwoodTable" => Self::EbonwoodTable,
6793 "RichMahoganyTable" => Self::RichMahoganyTable,
6794 "PearlwoodTable" => Self::PearlwoodTable,
6795 "EbonwoodPiano" => Self::EbonwoodPiano,
6796 "RichMahoganyPiano" => Self::RichMahoganyPiano,
6797 "PearlwoodPiano" => Self::PearlwoodPiano,
6798 "EbonwoodBed" => Self::EbonwoodBed,
6799 "RichMahoganyBed" => Self::RichMahoganyBed,
6800 "PearlwoodBed" => Self::PearlwoodBed,
6801 "EbonwoodDresser" => Self::EbonwoodDresser,
6802 "RichMahoganyDresser" => Self::RichMahoganyDresser,
6803 "PearlwoodDresser" => Self::PearlwoodDresser,
6804 "EbonwoodDoor" => Self::EbonwoodDoor,
6805 "RichMahoganyDoor" => Self::RichMahoganyDoor,
6806 "PearlwoodDoor" => Self::PearlwoodDoor,
6807 "EbonwoodSword" => Self::EbonwoodSword,
6808 "EbonwoodHammer" => Self::EbonwoodHammer,
6809 "EbonwoodBow" => Self::EbonwoodBow,
6810 "RichMahoganySword" => Self::RichMahoganySword,
6811 "RichMahoganyHammer" => Self::RichMahoganyHammer,
6812 "RichMahoganyBow" => Self::RichMahoganyBow,
6813 "PearlwoodSword" => Self::PearlwoodSword,
6814 "PearlwoodHammer" => Self::PearlwoodHammer,
6815 "PearlwoodBow" => Self::PearlwoodBow,
6816 "RainbowBrick" => Self::RainbowBrick,
6817 "RainbowBrickWall" => Self::RainbowBrickWall,
6818 "IceBlock" => Self::IceBlock,
6819 "RedsWings" => Self::RedsWings,
6820 "RedsHelmet" => Self::RedsHelmet,
6821 "RedsBreastplate" => Self::RedsBreastplate,
6822 "RedsLeggings" => Self::RedsLeggings,
6823 "Fish" => Self::Fish,
6824 "IceBoomerang" => Self::IceBoomerang,
6825 "Keybrand" => Self::Keybrand,
6826 "Cutlass" => Self::Cutlass,
6827 "BorealWoodWorkBench" => Self::BorealWoodWorkBench,
6828 "TrueExcalibur" => Self::TrueExcalibur,
6829 "TrueNightsEdge" => Self::TrueNightsEdge,
6830 "Frostbrand" => Self::Frostbrand,
6831 "BorealWoodTable" => Self::BorealWoodTable,
6832 "RedPotion" => Self::RedPotion,
6833 "TacticalShotgun" => Self::TacticalShotgun,
6834 "IvyChest" => Self::IvyChest,
6835 "IceChest" => Self::IceChest,
6836 "Marrow" => Self::Marrow,
6837 "UnholyTrident" => Self::UnholyTrident,
6838 "FrostHelmet" => Self::FrostHelmet,
6839 "FrostBreastplate" => Self::FrostBreastplate,
6840 "FrostLeggings" => Self::FrostLeggings,
6841 "TinHelmet" => Self::TinHelmet,
6842 "TinChainmail" => Self::TinChainmail,
6843 "TinGreaves" => Self::TinGreaves,
6844 "LeadHelmet" => Self::LeadHelmet,
6845 "LeadChainmail" => Self::LeadChainmail,
6846 "LeadGreaves" => Self::LeadGreaves,
6847 "TungstenHelmet" => Self::TungstenHelmet,
6848 "TungstenChainmail" => Self::TungstenChainmail,
6849 "TungstenGreaves" => Self::TungstenGreaves,
6850 "PlatinumHelmet" => Self::PlatinumHelmet,
6851 "PlatinumChainmail" => Self::PlatinumChainmail,
6852 "PlatinumGreaves" => Self::PlatinumGreaves,
6853 "TinOre" => Self::TinOre,
6854 "LeadOre" => Self::LeadOre,
6855 "TungstenOre" => Self::TungstenOre,
6856 "PlatinumOre" => Self::PlatinumOre,
6857 "TinBar" => Self::TinBar,
6858 "LeadBar" => Self::LeadBar,
6859 "TungstenBar" => Self::TungstenBar,
6860 "PlatinumBar" => Self::PlatinumBar,
6861 "TinWatch" => Self::TinWatch,
6862 "TungstenWatch" => Self::TungstenWatch,
6863 "PlatinumWatch" => Self::PlatinumWatch,
6864 "TinChandelier" => Self::TinChandelier,
6865 "TungstenChandelier" => Self::TungstenChandelier,
6866 "PlatinumChandelier" => Self::PlatinumChandelier,
6867 "PlatinumCandle" => Self::PlatinumCandle,
6868 "PlatinumCandelabra" => Self::PlatinumCandelabra,
6869 "PlatinumCrown" => Self::PlatinumCrown,
6870 "LeadAnvil" => Self::LeadAnvil,
6871 "TinBrick" => Self::TinBrick,
6872 "TungstenBrick" => Self::TungstenBrick,
6873 "PlatinumBrick" => Self::PlatinumBrick,
6874 "TinBrickWall" => Self::TinBrickWall,
6875 "TungstenBrickWall" => Self::TungstenBrickWall,
6876 "PlatinumBrickWall" => Self::PlatinumBrickWall,
6877 "BeamSword" => Self::BeamSword,
6878 "IceBlade" => Self::IceBlade,
6879 "IceBow" => Self::IceBow,
6880 "FrostStaff" => Self::FrostStaff,
6881 "WoodHelmet" => Self::WoodHelmet,
6882 "WoodBreastplate" => Self::WoodBreastplate,
6883 "WoodGreaves" => Self::WoodGreaves,
6884 "EbonwoodHelmet" => Self::EbonwoodHelmet,
6885 "EbonwoodBreastplate" => Self::EbonwoodBreastplate,
6886 "EbonwoodGreaves" => Self::EbonwoodGreaves,
6887 "RichMahoganyHelmet" => Self::RichMahoganyHelmet,
6888 "RichMahoganyBreastplate" => Self::RichMahoganyBreastplate,
6889 "RichMahoganyGreaves" => Self::RichMahoganyGreaves,
6890 "PearlwoodHelmet" => Self::PearlwoodHelmet,
6891 "PearlwoodBreastplate" => Self::PearlwoodBreastplate,
6892 "PearlwoodGreaves" => Self::PearlwoodGreaves,
6893 "AmethystStaff" => Self::AmethystStaff,
6894 "TopazStaff" => Self::TopazStaff,
6895 "SapphireStaff" => Self::SapphireStaff,
6896 "EmeraldStaff" => Self::EmeraldStaff,
6897 "RubyStaff" => Self::RubyStaff,
6898 "DiamondStaff" => Self::DiamondStaff,
6899 "GrassWall" => Self::GrassWall,
6900 "JungleWall" => Self::JungleWall,
6901 "FlowerWall" => Self::FlowerWall,
6902 "Jetpack" => Self::Jetpack,
6903 "ButterflyWings" => Self::ButterflyWings,
6904 "CactusWall" => Self::CactusWall,
6905 "Cloud" => Self::Cloud,
6906 "CloudWall" => Self::CloudWall,
6907 "Seaweed" => Self::Seaweed,
6908 "RuneHat" => Self::RuneHat,
6909 "RuneRobe" => Self::RuneRobe,
6910 "MushroomSpear" => Self::MushroomSpear,
6911 "TerraBlade" => Self::TerraBlade,
6912 "GrenadeLauncher" => Self::GrenadeLauncher,
6913 "RocketLauncher" => Self::RocketLauncher,
6914 "ProximityMineLauncher" => Self::ProximityMineLauncher,
6915 "FairyWings" => Self::FairyWings,
6916 "SlimeBlock" => Self::SlimeBlock,
6917 "FleshBlock" => Self::FleshBlock,
6918 "MushroomWall" => Self::MushroomWall,
6919 "RainCloud" => Self::RainCloud,
6920 "BoneBlock" => Self::BoneBlock,
6921 "FrozenSlimeBlock" => Self::FrozenSlimeBlock,
6922 "BoneBlockWall" => Self::BoneBlockWall,
6923 "SlimeBlockWall" => Self::SlimeBlockWall,
6924 "FleshBlockWall" => Self::FleshBlockWall,
6925 "RocketI" => Self::RocketI,
6926 "RocketII" => Self::RocketII,
6927 "RocketIII" => Self::RocketIII,
6928 "RocketIV" => Self::RocketIV,
6929 "AsphaltBlock" => Self::AsphaltBlock,
6930 "CobaltPickaxe" => Self::CobaltPickaxe,
6931 "MythrilPickaxe" => Self::MythrilPickaxe,
6932 "AdamantitePickaxe" => Self::AdamantitePickaxe,
6933 "Clentaminator" => Self::Clentaminator,
6934 "GreenSolution" => Self::GreenSolution,
6935 "BlueSolution" => Self::BlueSolution,
6936 "PurpleSolution" => Self::PurpleSolution,
6937 "DarkBlueSolution" => Self::DarkBlueSolution,
6938 "RedSolution" => Self::RedSolution,
6939 "HarpyWings" => Self::HarpyWings,
6940 "BoneWings" => Self::BoneWings,
6941 "Hammush" => Self::Hammush,
6942 "NettleBurst" => Self::NettleBurst,
6943 "AnkhBanner" => Self::AnkhBanner,
6944 "SnakeBanner" => Self::SnakeBanner,
6945 "OmegaBanner" => Self::OmegaBanner,
6946 "CrimsonHelmet" => Self::CrimsonHelmet,
6947 "CrimsonScalemail" => Self::CrimsonScalemail,
6948 "CrimsonGreaves" => Self::CrimsonGreaves,
6949 "BloodButcherer" => Self::BloodButcherer,
6950 "TendonBow" => Self::TendonBow,
6951 "FleshGrinder" => Self::FleshGrinder,
6952 "DeathbringerPickaxe" => Self::DeathbringerPickaxe,
6953 "BloodLustCluster" => Self::BloodLustCluster,
6954 "TheUndertaker" => Self::TheUndertaker,
6955 "TheMeatball" => Self::TheMeatball,
6956 "TheRottedFork" => Self::TheRottedFork,
6957 "EskimoHood" => Self::EskimoHood,
6958 "EskimoCoat" => Self::EskimoCoat,
6959 "EskimoPants" => Self::EskimoPants,
6960 "LivingWoodChair" => Self::LivingWoodChair,
6961 "CactusChair" => Self::CactusChair,
6962 "BoneChair" => Self::BoneChair,
6963 "FleshChair" => Self::FleshChair,
6964 "MushroomChair" => Self::MushroomChair,
6965 "BoneWorkBench" => Self::BoneWorkBench,
6966 "CactusWorkBench" => Self::CactusWorkBench,
6967 "FleshWorkBench" => Self::FleshWorkBench,
6968 "MushroomWorkBench" => Self::MushroomWorkBench,
6969 "SlimeWorkBench" => Self::SlimeWorkBench,
6970 "CactusDoor" => Self::CactusDoor,
6971 "FleshDoor" => Self::FleshDoor,
6972 "MushroomDoor" => Self::MushroomDoor,
6973 "LivingWoodDoor" => Self::LivingWoodDoor,
6974 "BoneDoor" => Self::BoneDoor,
6975 "FlameWings" => Self::FlameWings,
6976 "FrozenWings" => Self::FrozenWings,
6977 "GhostWings" => Self::GhostWings,
6978 "SunplateBlock" => Self::SunplateBlock,
6979 "DiscWall" => Self::DiscWall,
6980 "SkywareChair" => Self::SkywareChair,
6981 "BoneTable" => Self::BoneTable,
6982 "FleshTable" => Self::FleshTable,
6983 "LivingWoodTable" => Self::LivingWoodTable,
6984 "SkywareTable" => Self::SkywareTable,
6985 "LivingWoodChest" => Self::LivingWoodChest,
6986 "LivingWoodWand" => Self::LivingWoodWand,
6987 "PurpleIceBlock" => Self::PurpleIceBlock,
6988 "PinkIceBlock" => Self::PinkIceBlock,
6989 "RedIceBlock" => Self::RedIceBlock,
6990 "CrimstoneBlock" => Self::CrimstoneBlock,
6991 "SkywareDoor" => Self::SkywareDoor,
6992 "SkywareChest" => Self::SkywareChest,
6993 "SteampunkHat" => Self::SteampunkHat,
6994 "SteampunkShirt" => Self::SteampunkShirt,
6995 "SteampunkPants" => Self::SteampunkPants,
6996 "BeeHat" => Self::BeeHat,
6997 "BeeShirt" => Self::BeeShirt,
6998 "BeePants" => Self::BeePants,
6999 "WorldBanner" => Self::WorldBanner,
7000 "SunBanner" => Self::SunBanner,
7001 "GravityBanner" => Self::GravityBanner,
7002 "PharaohsMask" => Self::PharaohsMask,
7003 "Actuator" => Self::Actuator,
7004 "BlueWrench" => Self::BlueWrench,
7005 "GreenWrench" => Self::GreenWrench,
7006 "BluePressurePlate" => Self::BluePressurePlate,
7007 "YellowPressurePlate" => Self::YellowPressurePlate,
7008 "DiscountCard" => Self::DiscountCard,
7009 "LuckyCoin" => Self::LuckyCoin,
7010 "UnicornonaStick" => Self::UnicornOnAStick,
7011 "SandstorminaBottle" => Self::SandstormInABottle,
7012 "BorealWoodSofa" => Self::BorealWoodSofa,
7013 "BeachBall" => Self::BeachBall,
7014 "CharmofMyths" => Self::CharmOfMyths,
7015 "MoonShell" => Self::MoonShell,
7016 "StarVeil" => Self::StarVeil,
7017 "WaterWalkingBoots" => Self::WaterWalkingBoots,
7018 "Tiara" => Self::Tiara,
7019 "PrincessDress" => Self::PrincessDress,
7020 "PharaohsRobe" => Self::PharaohsRobe,
7021 "GreenCap" => Self::GreenCap,
7022 "MushroomCap" => Self::MushroomCap,
7023 "TamOShanter" => Self::TamOShanter,
7024 "MummyMask" => Self::MummyMask,
7025 "MummyShirt" => Self::MummyShirt,
7026 "MummyPants" => Self::MummyPants,
7027 "CowboyHat" => Self::CowboyHat,
7028 "CowboyJacket" => Self::CowboyJacket,
7029 "CowboyPants" => Self::CowboyPants,
7030 "PirateHat" => Self::PirateHat,
7031 "PirateShirt" => Self::PirateShirt,
7032 "PiratePants" => Self::PiratePants,
7033 "VikingHelmet" => Self::VikingHelmet,
7034 "CrimtaneOre" => Self::CrimtaneOre,
7035 "CactusSword" => Self::CactusSword,
7036 "CactusPickaxe" => Self::CactusPickaxe,
7037 "IceBrick" => Self::IceBrick,
7038 "IceBrickWall" => Self::IceBrickWall,
7039 "AdhesiveBandage" => Self::AdhesiveBandage,
7040 "ArmorPolish" => Self::ArmorPolish,
7041 "Bezoar" => Self::Bezoar,
7042 "Blindfold" => Self::Blindfold,
7043 "FastClock" => Self::FastClock,
7044 "Megaphone" => Self::Megaphone,
7045 "Nazar" => Self::Nazar,
7046 "Vitamins" => Self::Vitamins,
7047 "TrifoldMap" => Self::TrifoldMap,
7048 "CactusHelmet" => Self::CactusHelmet,
7049 "CactusBreastplate" => Self::CactusBreastplate,
7050 "CactusLeggings" => Self::CactusLeggings,
7051 "PowerGlove" => Self::PowerGlove,
7052 "LightningBoots" => Self::LightningBoots,
7053 "SunStone" => Self::SunStone,
7054 "MoonStone" => Self::MoonStone,
7055 "ArmorBracing" => Self::ArmorBracing,
7056 "MedicatedBandage" => Self::MedicatedBandage,
7057 "ThePlan" => Self::ThePlan,
7058 "CountercurseMantra" => Self::CountercurseMantra,
7059 "CoinGun" => Self::CoinGun,
7060 "LavaCharm" => Self::LavaCharm,
7061 "ObsidianWaterWalkingBoots" => Self::ObsidianWaterWalkingBoots,
7062 "LavaWaders" => Self::LavaWaders,
7063 "PureWaterFountain" => Self::PureWaterFountain,
7064 "DesertWaterFountain" => Self::DesertWaterFountain,
7065 "Shadewood" => Self::Shadewood,
7066 "ShadewoodDoor" => Self::ShadewoodDoor,
7067 "ShadewoodPlatform" => Self::ShadewoodPlatform,
7068 "ShadewoodChest" => Self::ShadewoodChest,
7069 "ShadewoodChair" => Self::ShadewoodChair,
7070 "ShadewoodWorkBench" => Self::ShadewoodWorkBench,
7071 "ShadewoodTable" => Self::ShadewoodTable,
7072 "ShadewoodDresser" => Self::ShadewoodDresser,
7073 "ShadewoodPiano" => Self::ShadewoodPiano,
7074 "ShadewoodBed" => Self::ShadewoodBed,
7075 "ShadewoodSword" => Self::ShadewoodSword,
7076 "ShadewoodHammer" => Self::ShadewoodHammer,
7077 "ShadewoodBow" => Self::ShadewoodBow,
7078 "ShadewoodHelmet" => Self::ShadewoodHelmet,
7079 "ShadewoodBreastplate" => Self::ShadewoodBreastplate,
7080 "ShadewoodGreaves" => Self::ShadewoodGreaves,
7081 "ShadewoodWall" => Self::ShadewoodWall,
7082 "Cannon" => Self::Cannon,
7083 "Cannonball" => Self::Cannonball,
7084 "FlareGun" => Self::FlareGun,
7085 "Flare" => Self::Flare,
7086 "BoneWand" => Self::BoneWand,
7087 "LeafWand" => Self::LeafWand,
7088 "FlyingCarpet" => Self::FlyingCarpet,
7089 "AvengerEmblem" => Self::AvengerEmblem,
7090 "MechanicalGlove" => Self::MechanicalGlove,
7091 "LandMine" => Self::LandMine,
7092 "PaladinsShield" => Self::PaladinsShield,
7093 "WebSlinger" => Self::WebSlinger,
7094 "JungleWaterFountain" => Self::JungleWaterFountain,
7095 "IcyWaterFountain" => Self::IcyWaterFountain,
7096 "CorruptWaterFountain" => Self::CorruptWaterFountain,
7097 "CrimsonWaterFountain" => Self::CrimsonWaterFountain,
7098 "HallowedWaterFountain" => Self::HallowedWaterFountain,
7099 "BloodWaterFountain" => Self::BloodWaterFountain,
7100 "Umbrella" => Self::Umbrella,
7101 "ChlorophyteOre" => Self::ChlorophyteOre,
7102 "SteampunkWings" => Self::SteampunkWings,
7103 "Snowball" => Self::Snowball,
7104 "IceSkates" => Self::IceSkates,
7105 "SnowballLauncher" => Self::SnowballLauncher,
7106 "WebCoveredChest" => Self::WebCoveredChest,
7107 "ClimbingClaws" => Self::ClimbingClaws,
7108 "AncientIronHelmet" => Self::AncientIronHelmet,
7109 "AncientGoldHelmet" => Self::AncientGoldHelmet,
7110 "AncientShadowHelmet" => Self::AncientShadowHelmet,
7111 "AncientShadowScalemail" => Self::AncientShadowScalemail,
7112 "AncientShadowGreaves" => Self::AncientShadowGreaves,
7113 "AncientNecroHelmet" => Self::AncientNecroHelmet,
7114 "AncientCobaltHelmet" => Self::AncientCobaltHelmet,
7115 "AncientCobaltBreastplate" => Self::AncientCobaltBreastplate,
7116 "AncientCobaltLeggings" => Self::AncientCobaltLeggings,
7117 "BlackBelt" => Self::BlackBelt,
7118 "Boomstick" => Self::Boomstick,
7119 "Rope" => Self::Rope,
7120 "Campfire" => Self::Campfire,
7121 "Marshmallow" => Self::Marshmallow,
7122 "MarshmallowonaStick" => Self::MarshmallowOnAStick,
7123 "CookedMarshmallow" => Self::CookedMarshmallow,
7124 "RedRocket" => Self::RedRocket,
7125 "GreenRocket" => Self::GreenRocket,
7126 "BlueRocket" => Self::BlueRocket,
7127 "YellowRocket" => Self::YellowRocket,
7128 "IceTorch" => Self::IceTorch,
7129 "ShoeSpikes" => Self::ShoeSpikes,
7130 "TigerClimbingGear" => Self::TigerClimbingGear,
7131 "Tabi" => Self::Tabi,
7132 "PinkEskimoHood" => Self::PinkEskimoHood,
7133 "PinkEskimoCoat" => Self::PinkEskimoCoat,
7134 "PinkEskimoPants" => Self::PinkEskimoPants,
7135 "PinkThread" => Self::PinkThread,
7136 "ManaRegenerationBand" => Self::ManaRegenerationBand,
7137 "SandstorminaBalloon" => Self::SandstormInABalloon,
7138 "MasterNinjaGear" => Self::MasterNinjaGear,
7139 "RopeCoil" => Self::RopeCoil,
7140 "Blowgun" => Self::Blowgun,
7141 "BlizzardinaBottle" => Self::BlizzardInABottle,
7142 "FrostburnArrow" => Self::FrostburnArrow,
7143 "EnchantedSword" => Self::EnchantedSword,
7144 "PickaxeAxe" => Self::PickaxeAxe,
7145 "CobaltWaraxe" => Self::CobaltWaraxe,
7146 "MythrilWaraxe" => Self::MythrilWaraxe,
7147 "AdamantiteWaraxe" => Self::AdamantiteWaraxe,
7148 "EatersBone" => Self::EatersBone,
7149 "BlendOMatic" => Self::BlendOMatic,
7150 "MeatGrinder" => Self::MeatGrinder,
7151 "Extractinator" => Self::Extractinator,
7152 "Solidifier" => Self::Solidifier,
7153 "Amber" => Self::Amber,
7154 "ConfettiGun" => Self::ConfettiGun,
7155 "ChlorophyteMask" => Self::ChlorophyteMask,
7156 "ChlorophyteHelmet" => Self::ChlorophyteHelmet,
7157 "ChlorophyteHeadgear" => Self::ChlorophyteHeadgear,
7158 "ChlorophytePlateMail" => Self::ChlorophytePlateMail,
7159 "ChlorophyteGreaves" => Self::ChlorophyteGreaves,
7160 "ChlorophyteBar" => Self::ChlorophyteBar,
7161 "RedDye" => Self::RedDye,
7162 "OrangeDye" => Self::OrangeDye,
7163 "YellowDye" => Self::YellowDye,
7164 "LimeDye" => Self::LimeDye,
7165 "GreenDye" => Self::GreenDye,
7166 "TealDye" => Self::TealDye,
7167 "CyanDye" => Self::CyanDye,
7168 "SkyBlueDye" => Self::SkyBlueDye,
7169 "BlueDye" => Self::BlueDye,
7170 "PurpleDye" => Self::PurpleDye,
7171 "VioletDye" => Self::VioletDye,
7172 "PinkDye" => Self::PinkDye,
7173 "RedandBlackDye" => Self::RedAndBlackDye,
7174 "OrangeandBlackDye" => Self::OrangeAndBlackDye,
7175 "YellowandBlackDye" => Self::YellowAndBlackDye,
7176 "LimeandBlackDye" => Self::LimeAndBlackDye,
7177 "GreenandBlackDye" => Self::GreenAndBlackDye,
7178 "TealandBlackDye" => Self::TealAndBlackDye,
7179 "CyanandBlackDye" => Self::CyanAndBlackDye,
7180 "SkyBlueandBlackDye" => Self::SkyBlueAndBlackDye,
7181 "BlueandBlackDye" => Self::BlueAndBlackDye,
7182 "PurpleandBlackDye" => Self::PurpleAndBlackDye,
7183 "VioletandBlackDye" => Self::VioletAndBlackDye,
7184 "PinkandBlackDye" => Self::PinkAndBlackDye,
7185 "FlameDye" => Self::FlameDye,
7186 "FlameAndBlackDye" => Self::FlameAndBlackDye,
7187 "GreenFlameDye" => Self::GreenFlameDye,
7188 "GreenFlameAndBlackDye" => Self::GreenFlameAndBlackDye,
7189 "BlueFlameDye" => Self::BlueFlameDye,
7190 "BlueFlameAndBlackDye" => Self::BlueFlameAndBlackDye,
7191 "SilverDye" => Self::SilverDye,
7192 "BrightRedDye" => Self::BrightRedDye,
7193 "BrightOrangeDye" => Self::BrightOrangeDye,
7194 "BrightYellowDye" => Self::BrightYellowDye,
7195 "BrightLimeDye" => Self::BrightLimeDye,
7196 "BrightGreenDye" => Self::BrightGreenDye,
7197 "BrightTealDye" => Self::BrightTealDye,
7198 "BrightCyanDye" => Self::BrightCyanDye,
7199 "BrightSkyBlueDye" => Self::BrightSkyBlueDye,
7200 "BrightBlueDye" => Self::BrightBlueDye,
7201 "BrightPurpleDye" => Self::BrightPurpleDye,
7202 "BrightVioletDye" => Self::BrightVioletDye,
7203 "BrightPinkDye" => Self::BrightPinkDye,
7204 "BlackDye" => Self::BlackDye,
7205 "RedandSilverDye" => Self::RedAndSilverDye,
7206 "OrangeandSilverDye" => Self::OrangeAndSilverDye,
7207 "YellowandSilverDye" => Self::YellowAndSilverDye,
7208 "LimeandSilverDye" => Self::LimeAndSilverDye,
7209 "GreenandSilverDye" => Self::GreenAndSilverDye,
7210 "TealandSilverDye" => Self::TealAndSilverDye,
7211 "CyanandSilverDye" => Self::CyanAndSilverDye,
7212 "SkyBlueandSilverDye" => Self::SkyBlueAndSilverDye,
7213 "BlueandSilverDye" => Self::BlueAndSilverDye,
7214 "PurpleandSilverDye" => Self::PurpleAndSilverDye,
7215 "VioletandSilverDye" => Self::VioletAndSilverDye,
7216 "PinkandSilverDye" => Self::PinkAndSilverDye,
7217 "IntenseFlameDye" => Self::IntenseFlameDye,
7218 "IntenseGreenFlameDye" => Self::IntenseGreenFlameDye,
7219 "IntenseBlueFlameDye" => Self::IntenseBlueFlameDye,
7220 "RainbowDye" => Self::RainbowDye,
7221 "IntenseRainbowDye" => Self::IntenseRainbowDye,
7222 "YellowGradientDye" => Self::YellowGradientDye,
7223 "CyanGradientDye" => Self::CyanGradientDye,
7224 "VioletGradientDye" => Self::VioletGradientDye,
7225 "Paintbrush" => Self::Paintbrush,
7226 "PaintRoller" => Self::PaintRoller,
7227 "RedPaint" => Self::RedPaint,
7228 "OrangePaint" => Self::OrangePaint,
7229 "YellowPaint" => Self::YellowPaint,
7230 "LimePaint" => Self::LimePaint,
7231 "GreenPaint" => Self::GreenPaint,
7232 "TealPaint" => Self::TealPaint,
7233 "CyanPaint" => Self::CyanPaint,
7234 "SkyBluePaint" => Self::SkyBluePaint,
7235 "BluePaint" => Self::BluePaint,
7236 "PurplePaint" => Self::PurplePaint,
7237 "VioletPaint" => Self::VioletPaint,
7238 "PinkPaint" => Self::PinkPaint,
7239 "DeepRedPaint" => Self::DeepRedPaint,
7240 "DeepOrangePaint" => Self::DeepOrangePaint,
7241 "DeepYellowPaint" => Self::DeepYellowPaint,
7242 "DeepLimePaint" => Self::DeepLimePaint,
7243 "DeepGreenPaint" => Self::DeepGreenPaint,
7244 "DeepTealPaint" => Self::DeepTealPaint,
7245 "DeepCyanPaint" => Self::DeepCyanPaint,
7246 "DeepSkyBluePaint" => Self::DeepSkyBluePaint,
7247 "DeepBluePaint" => Self::DeepBluePaint,
7248 "DeepPurplePaint" => Self::DeepPurplePaint,
7249 "DeepVioletPaint" => Self::DeepVioletPaint,
7250 "DeepPinkPaint" => Self::DeepPinkPaint,
7251 "BlackPaint" => Self::BlackPaint,
7252 "WhitePaint" => Self::WhitePaint,
7253 "GrayPaint" => Self::GrayPaint,
7254 "PaintScraper" => Self::PaintScraper,
7255 "LihzahrdBrick" => Self::LihzahrdBrick,
7256 "LihzahrdBrickWall" => Self::LihzahrdBrickWall,
7257 "SlushBlock" => Self::SlushBlock,
7258 "PalladiumOre" => Self::PalladiumOre,
7259 "OrichalcumOre" => Self::OrichalcumOre,
7260 "TitaniumOre" => Self::TitaniumOre,
7261 "TealMushroom" => Self::TealMushroom,
7262 "GreenMushroom" => Self::GreenMushroom,
7263 "SkyBlueFlower" => Self::SkyBlueFlower,
7264 "YellowMarigold" => Self::YellowMarigold,
7265 "BlueBerries" => Self::BlueBerries,
7266 "LimeKelp" => Self::LimeKelp,
7267 "PinkPricklyPear" => Self::PinkPricklyPear,
7268 "OrangeBloodroot" => Self::OrangeBloodroot,
7269 "RedHusk" => Self::RedHusk,
7270 "CyanHusk" => Self::CyanHusk,
7271 "VioletHusk" => Self::VioletHusk,
7272 "PurpleMucos" => Self::PurpleMucus,
7273 "BlackInk" => Self::BlackInk,
7274 "DyeVat" => Self::DyeVat,
7275 "BeeGun" => Self::BeeGun,
7276 "PossessedHatchet" => Self::PossessedHatchet,
7277 "BeeKeeper" => Self::BeeKeeper,
7278 "Hive" => Self::Hive,
7279 "HoneyBlock" => Self::HoneyBlock,
7280 "HiveWall" => Self::HiveWall,
7281 "CrispyHoneyBlock" => Self::CrispyHoneyBlock,
7282 "HoneyBucket" => Self::HoneyBucket,
7283 "HiveWand" => Self::HiveWand,
7284 "Beenade" => Self::Beenade,
7285 "GravityGlobe" => Self::GravityGlobe,
7286 "HoneyComb" => Self::HoneyComb,
7287 "Abeemination" => Self::Abeemination,
7288 "BottledHoney" => Self::BottledHoney,
7289 "RainHat" => Self::RainHat,
7290 "RainCoat" => Self::RainCoat,
7291 "LihzahrdDoor" => Self::LihzahrdDoor,
7292 "DungeonDoor" => Self::DungeonDoor,
7293 "LeadDoor" => Self::LeadDoor,
7294 "IronDoor" => Self::IronDoor,
7295 "TempleKey" => Self::TempleKey,
7296 "LihzahrdChest" => Self::LihzahrdChest,
7297 "LihzahrdChair" => Self::LihzahrdChair,
7298 "LihzahrdTable" => Self::LihzahrdTable,
7299 "LihzahrdWorkBench" => Self::LihzahrdWorkBench,
7300 "SuperDartTrap" => Self::SuperDartTrap,
7301 "FlameTrap" => Self::FlameTrap,
7302 "SpikyBallTrap" => Self::SpikyBallTrap,
7303 "SpearTrap" => Self::SpearTrap,
7304 "WoodenSpike" => Self::WoodenSpike,
7305 "LihzahrdPressurePlate" => Self::LihzahrdPressurePlate,
7306 "LihzahrdStatue" => Self::LihzahrdStatue,
7307 "LihzahrdWatcherStatue" => Self::LihzahrdWatcherStatue,
7308 "LihzahrdGuardianStatue" => Self::LihzahrdGuardianStatue,
7309 "WaspGun" => Self::WaspGun,
7310 "PiranhaGun" => Self::PiranhaGun,
7311 "PygmyStaff" => Self::PygmyStaff,
7312 "PygmyNecklace" => Self::PygmyNecklace,
7313 "TikiMask" => Self::TikiMask,
7314 "TikiShirt" => Self::TikiShirt,
7315 "TikiPants" => Self::TikiPants,
7316 "LeafWings" => Self::LeafWings,
7317 "BlizzardinaBalloon" => Self::BlizzardInABalloon,
7318 "BundleofBalloons" => Self::BundleOfBalloons,
7319 "BatWings" => Self::BatWings,
7320 "BoneSword" => Self::BoneSword,
7321 "HerculesBeetle" => Self::HerculesBeetle,
7322 "SmokeBomb" => Self::SmokeBomb,
7323 "BoneKey" => Self::BoneKey,
7324 "Nectar" => Self::Nectar,
7325 "TikiTotem" => Self::TikiTotem,
7326 "LizardEgg" => Self::LizardEgg,
7327 "GraveMarker" => Self::GraveMarker,
7328 "CrossGraveMarker" => Self::CrossGraveMarker,
7329 "Headstone" => Self::Headstone,
7330 "Gravestone" => Self::Gravestone,
7331 "Obelisk" => Self::Obelisk,
7332 "LeafBlower" => Self::LeafBlower,
7333 "ChlorophyteBullet" => Self::ChlorophyteBullet,
7334 "ParrotCracker" => Self::ParrotCracker,
7335 "StrangeGlowingMushroom" => Self::StrangeGlowingMushroom,
7336 "Seedling" => Self::Seedling,
7337 "WispinaBottle" => Self::WispInABottle,
7338 "PalladiumBar" => Self::PalladiumBar,
7339 "PalladiumSword" => Self::PalladiumSword,
7340 "PalladiumPike" => Self::PalladiumPike,
7341 "PalladiumRepeater" => Self::PalladiumRepeater,
7342 "PalladiumPickaxe" => Self::PalladiumPickaxe,
7343 "PalladiumDrill" => Self::PalladiumDrill,
7344 "PalladiumChainsaw" => Self::PalladiumChainsaw,
7345 "OrichalcumBar" => Self::OrichalcumBar,
7346 "OrichalcumSword" => Self::OrichalcumSword,
7347 "OrichalcumHalberd" => Self::OrichalcumHalberd,
7348 "OrichalcumRepeater" => Self::OrichalcumRepeater,
7349 "OrichalcumPickaxe" => Self::OrichalcumPickaxe,
7350 "OrichalcumDrill" => Self::OrichalcumDrill,
7351 "OrichalcumChainsaw" => Self::OrichalcumChainsaw,
7352 "TitaniumBar" => Self::TitaniumBar,
7353 "TitaniumSword" => Self::TitaniumSword,
7354 "TitaniumTrident" => Self::TitaniumTrident,
7355 "TitaniumRepeater" => Self::TitaniumRepeater,
7356 "TitaniumPickaxe" => Self::TitaniumPickaxe,
7357 "TitaniumDrill" => Self::TitaniumDrill,
7358 "TitaniumChainsaw" => Self::TitaniumChainsaw,
7359 "PalladiumMask" => Self::PalladiumMask,
7360 "PalladiumHelmet" => Self::PalladiumHelmet,
7361 "PalladiumHeadgear" => Self::PalladiumHeadgear,
7362 "PalladiumBreastplate" => Self::PalladiumBreastplate,
7363 "PalladiumLeggings" => Self::PalladiumLeggings,
7364 "OrichalcumMask" => Self::OrichalcumMask,
7365 "OrichalcumHelmet" => Self::OrichalcumHelmet,
7366 "OrichalcumHeadgear" => Self::OrichalcumHeadgear,
7367 "OrichalcumBreastplate" => Self::OrichalcumBreastplate,
7368 "OrichalcumLeggings" => Self::OrichalcumLeggings,
7369 "TitaniumMask" => Self::TitaniumMask,
7370 "TitaniumHelmet" => Self::TitaniumHelmet,
7371 "TitaniumHeadgear" => Self::TitaniumHeadgear,
7372 "TitaniumBreastplate" => Self::TitaniumBreastplate,
7373 "TitaniumLeggings" => Self::TitaniumLeggings,
7374 "OrichalcumAnvil" => Self::OrichalcumAnvil,
7375 "TitaniumForge" => Self::TitaniumForge,
7376 "PalladiumWaraxe" => Self::PalladiumWaraxe,
7377 "OrichalcumWaraxe" => Self::OrichalcumWaraxe,
7378 "TitaniumWaraxe" => Self::TitaniumWaraxe,
7379 "HallowedBar" => Self::HallowedBar,
7380 "ChlorophyteClaymore" => Self::ChlorophyteClaymore,
7381 "ChlorophyteSaber" => Self::ChlorophyteSaber,
7382 "ChlorophytePartisan" => Self::ChlorophytePartisan,
7383 "ChlorophyteShotbow" => Self::ChlorophyteShotbow,
7384 "ChlorophytePickaxe" => Self::ChlorophytePickaxe,
7385 "ChlorophyteDrill" => Self::ChlorophyteDrill,
7386 "ChlorophyteChainsaw" => Self::ChlorophyteChainsaw,
7387 "ChlorophyteGreataxe" => Self::ChlorophyteGreataxe,
7388 "ChlorophyteWarhammer" => Self::ChlorophyteWarhammer,
7389 "ChlorophyteArrow" => Self::ChlorophyteArrow,
7390 "AmethystHook" => Self::AmethystHook,
7391 "TopazHook" => Self::TopazHook,
7392 "SapphireHook" => Self::SapphireHook,
7393 "EmeraldHook" => Self::EmeraldHook,
7394 "RubyHook" => Self::RubyHook,
7395 "DiamondHook" => Self::DiamondHook,
7396 "AmberMosquito" => Self::AmberMosquito,
7397 "UmbrellaHat" => Self::UmbrellaHat,
7398 "NimbusRod" => Self::NimbusRod,
7399 "OrangeTorch" => Self::OrangeTorch,
7400 "CrimsandBlock" => Self::CrimsandBlock,
7401 "BeeCloak" => Self::BeeCloak,
7402 "EyeoftheGolem" => Self::EyeOfTheGolem,
7403 "HoneyBalloon" => Self::HoneyBalloon,
7404 "BlueHorseshoeBalloon" => Self::BlueHorseshoeBalloon,
7405 "WhiteHorseshoeBalloon" => Self::WhiteHorseshoeBalloon,
7406 "YellowHorseshoeBalloon" => Self::YellowHorseshoeBalloon,
7407 "FrozenTurtleShell" => Self::FrozenTurtleShell,
7408 "SniperRifle" => Self::SniperRifle,
7409 "VenusMagnum" => Self::VenusMagnum,
7410 "CrimsonRod" => Self::CrimsonRod,
7411 "CrimtaneBar" => Self::CrimtaneBar,
7412 "Stynger" => Self::Stynger,
7413 "FlowerPow" => Self::FlowerPow,
7414 "RainbowGun" => Self::RainbowGun,
7415 "StyngerBolt" => Self::StyngerBolt,
7416 "ChlorophyteJackhammer" => Self::ChlorophyteJackhammer,
7417 "Teleporter" => Self::Teleporter,
7418 "FlowerofFrost" => Self::FlowerOfFrost,
7419 "Uzi" => Self::Uzi,
7420 "MagnetSphere" => Self::MagnetSphere,
7421 "PurpleStainedGlass" => Self::PurpleStainedGlass,
7422 "YellowStainedGlass" => Self::YellowStainedGlass,
7423 "BlueStainedGlass" => Self::BlueStainedGlass,
7424 "GreenStainedGlass" => Self::GreenStainedGlass,
7425 "RedStainedGlass" => Self::RedStainedGlass,
7426 "MulticoloredStainedGlass" => Self::MulticoloredStainedGlass,
7427 "SkeletronHand" => Self::SkeletronHand,
7428 "Skull" => Self::Skull,
7429 "BallaHat" => Self::BallaHat,
7430 "GangstaHat" => Self::GangstaHat,
7431 "SailorHat" => Self::SailorHat,
7432 "EyePatch" => Self::EyePatch,
7433 "SailorShirt" => Self::SailorShirt,
7434 "SailorPants" => Self::SailorPants,
7435 "SkeletronMask" => Self::SkeletronMask,
7436 "AmethystRobe" => Self::AmethystRobe,
7437 "TopazRobe" => Self::TopazRobe,
7438 "SapphireRobe" => Self::SapphireRobe,
7439 "EmeraldRobe" => Self::EmeraldRobe,
7440 "RubyRobe" => Self::RubyRobe,
7441 "DiamondRobe" => Self::DiamondRobe,
7442 "WhiteTuxedoShirt" => Self::WhiteTuxedoShirt,
7443 "WhiteTuxedoPants" => Self::WhiteTuxedoPants,
7444 "PanicNecklace" => Self::PanicNecklace,
7445 "LifeFruit" => Self::LifeFruit,
7446 "LihzahrdAltar" => Self::LihzahrdAltar,
7447 "LihzahrdPowerCell" => Self::LihzahrdPowerCell,
7448 "Picksaw" => Self::Picksaw,
7449 "HeatRay" => Self::HeatRay,
7450 "StaffofEarth" => Self::StaffOfEarth,
7451 "GolemFist" => Self::GolemFist,
7452 "WaterChest" => Self::WaterChest,
7453 "Binoculars" => Self::Binoculars,
7454 "RifleScope" => Self::RifleScope,
7455 "DestroyerEmblem" => Self::DestroyerEmblem,
7456 "HighVelocityBullet" => Self::HighVelocityBullet,
7457 "JellyfishNecklace" => Self::JellyfishNecklace,
7458 "ZombieArm" => Self::ZombieArm,
7459 "TheAxe" => Self::TheAxe,
7460 "IceSickle" => Self::IceSickle,
7461 "ClothierVoodooDoll" => Self::ClothierVoodooDoll,
7462 "PoisonStaff" => Self::PoisonStaff,
7463 "SlimeStaff" => Self::SlimeStaff,
7464 "PoisonDart" => Self::PoisonDart,
7465 "EyeSpring" => Self::EyeSpring,
7466 "ToySled" => Self::ToySled,
7467 "BookofSkulls" => Self::BookOfSkulls,
7468 "KOCannon" => Self::KOCannon,
7469 "PirateMap" => Self::PirateMap,
7470 "TurtleHelmet" => Self::TurtleHelmet,
7471 "TurtleScaleMail" => Self::TurtleScaleMail,
7472 "TurtleLeggings" => Self::TurtleLeggings,
7473 "SnowballCannon" => Self::SnowballCannon,
7474 "BonePickaxe" => Self::BonePickaxe,
7475 "MagicQuiver" => Self::MagicQuiver,
7476 "MagmaStone" => Self::MagmaStone,
7477 "ObsidianRose" => Self::ObsidianRose,
7478 "Bananarang" => Self::Bananarang,
7479 "ChainKnife" => Self::ChainKnife,
7480 "RodofDiscord" => Self::RodOfDiscord,
7481 "DeathSickle" => Self::DeathSickle,
7482 "TurtleShell" => Self::TurtleShell,
7483 "TissueSample" => Self::TissueSample,
7484 "Vertebrae" => Self::Vertebrae,
7485 "BloodySpine" => Self::BloodySpine,
7486 "Ichor" => Self::Ichor,
7487 "IchorTorch" => Self::IchorTorch,
7488 "IchorArrow" => Self::IchorArrow,
7489 "IchorBullet" => Self::IchorBullet,
7490 "GoldenShower" => Self::GoldenShower,
7491 "BunnyCannon" => Self::BunnyCannon,
7492 "ExplosiveBunny" => Self::ExplosiveBunny,
7493 "VialofVenom" => Self::VialOfVenom,
7494 "FlaskofVenom" => Self::FlaskOfVenom,
7495 "VenomArrow" => Self::VenomArrow,
7496 "VenomBullet" => Self::VenomBullet,
7497 "FireGauntlet" => Self::FireGauntlet,
7498 "Cog" => Self::Cog,
7499 "Confetti" => Self::Confetti,
7500 "Nanites" => Self::Nanites,
7501 "ExplosivePowder" => Self::ExplosivePowder,
7502 "GoldDust" => Self::GoldDust,
7503 "PartyBullet" => Self::PartyBullet,
7504 "NanoBullet" => Self::NanoBullet,
7505 "ExplodingBullet" => Self::ExplodingBullet,
7506 "GoldenBullet" => Self::GoldenBullet,
7507 "FlaskofCursedFlames" => Self::FlaskOfCursedFlames,
7508 "FlaskofFire" => Self::FlaskOfFire,
7509 "FlaskofGold" => Self::FlaskOfGold,
7510 "FlaskofIchor" => Self::FlaskOfIchor,
7511 "FlaskofNanites" => Self::FlaskOfNanites,
7512 "FlaskofParty" => Self::FlaskOfParty,
7513 "FlaskofPoison" => Self::FlaskOfPoison,
7514 "EyeofCthulhuTrophy" => Self::EyeOfCthulhuTrophy,
7515 "EaterofWorldsTrophy" => Self::EaterOfWorldsTrophy,
7516 "BrainofCthulhuTrophy" => Self::BrainOfCthulhuTrophy,
7517 "SkeletronTrophy" => Self::SkeletronTrophy,
7518 "QueenBeeTrophy" => Self::QueenBeeTrophy,
7519 "WallofFleshTrophy" => Self::WallOfFleshTrophy,
7520 "DestroyerTrophy" => Self::DestroyerTrophy,
7521 "SkeletronPrimeTrophy" => Self::SkeletronPrimeTrophy,
7522 "RetinazerTrophy" => Self::RetinazerTrophy,
7523 "SpazmatismTrophy" => Self::SpazmatismTrophy,
7524 "PlanteraTrophy" => Self::PlanteraTrophy,
7525 "GolemTrophy" => Self::GolemTrophy,
7526 "BloodMoonRising" => Self::BloodMoonRising,
7527 "TheHangedMan" => Self::TheHangedMan,
7528 "GloryoftheFire" => Self::GloryOfTheFire,
7529 "BoneWarp" => Self::BoneWarp,
7530 "WallSkeleton" => Self::WallSkeleton,
7531 "HangingSkeleton" => Self::HangingSkeleton,
7532 "BlueSlabWall" => Self::BlueSlabWall,
7533 "BlueTiledWall" => Self::BlueTiledWall,
7534 "PinkSlabWall" => Self::PinkSlabWall,
7535 "PinkTiledWall" => Self::PinkTiledWall,
7536 "GreenSlabWall" => Self::GreenSlabWall,
7537 "GreenTiledWall" => Self::GreenTiledWall,
7538 "BlueBrickPlatform" => Self::BlueBrickPlatform,
7539 "PinkBrickPlatform" => Self::PinkBrickPlatform,
7540 "GreenBrickPlatform" => Self::GreenBrickPlatform,
7541 "MetalShelf" => Self::MetalShelf,
7542 "BrassShelf" => Self::BrassShelf,
7543 "WoodShelf" => Self::WoodShelf,
7544 "BrassLantern" => Self::BrassLantern,
7545 "CagedLantern" => Self::CagedLantern,
7546 "CarriageLantern" => Self::CarriageLantern,
7547 "AlchemyLantern" => Self::AlchemyLantern,
7548 "DiablostLamp" => Self::DiablostLamp,
7549 "OilRagSconse" => Self::OilRagSconse,
7550 "BlueDungeonChair" => Self::BlueDungeonChair,
7551 "BlueDungeonTable" => Self::BlueDungeonTable,
7552 "BlueDungeonWorkBench" => Self::BlueDungeonWorkBench,
7553 "GreenDungeonChair" => Self::GreenDungeonChair,
7554 "GreenDungeonTable" => Self::GreenDungeonTable,
7555 "GreenDungeonWorkBench" => Self::GreenDungeonWorkBench,
7556 "PinkDungeonChair" => Self::PinkDungeonChair,
7557 "PinkDungeonTable" => Self::PinkDungeonTable,
7558 "PinkDungeonWorkBench" => Self::PinkDungeonWorkBench,
7559 "BlueDungeonCandle" => Self::BlueDungeonCandle,
7560 "GreenDungeonCandle" => Self::GreenDungeonCandle,
7561 "PinkDungeonCandle" => Self::PinkDungeonCandle,
7562 "BlueDungeonVase" => Self::BlueDungeonVase,
7563 "GreenDungeonVase" => Self::GreenDungeonVase,
7564 "PinkDungeonVase" => Self::PinkDungeonVase,
7565 "BlueDungeonDoor" => Self::BlueDungeonDoor,
7566 "GreenDungeonDoor" => Self::GreenDungeonDoor,
7567 "PinkDungeonDoor" => Self::PinkDungeonDoor,
7568 "BlueDungeonBookcase" => Self::BlueDungeonBookcase,
7569 "GreenDungeonBookcase" => Self::GreenDungeonBookcase,
7570 "PinkDungeonBookcase" => Self::PinkDungeonBookcase,
7571 "Catacomb" => Self::Catacomb,
7572 "DungeonShelf" => Self::DungeonShelf,
7573 "SkellingtonJSkellingsworth" => Self::SkellingtonJSkellingsworth,
7574 "TheCursedMan" => Self::TheCursedMan,
7575 "TheEyeSeestheEnd" => Self::TheEyeSeesTheEnd,
7576 "SomethingEvilisWatchingYou" => Self::SomethingEvilIsWatchingYou,
7577 "TheTwinsHaveAwoken" => Self::TheTwinsHaveAwoken,
7578 "TheScreamer" => Self::TheScreamer,
7579 "GoblinsPlayingPoker" => Self::GoblinsPlayingPoker,
7580 "Dryadisque" => Self::Dryadisque,
7581 "Sunflowers" => Self::Sunflowers,
7582 "TerrarianGothic" => Self::TerrarianGothic,
7583 "Beanie" => Self::Beanie,
7584 "ImbuingStation" => Self::ImbuingStation,
7585 "StarinaBottle" => Self::StarInABottle,
7586 "EmptyBullet" => Self::EmptyBullet,
7587 "Impact" => Self::Impact,
7588 "PoweredbyBirds" => Self::PoweredByBirds,
7589 "TheDestroyer" => Self::TheDestroyer,
7590 "ThePersistencyofEyes" => Self::ThePersistencyOfEyes,
7591 "UnicornCrossingtheHallows" => Self::UnicornCrossingTheHallows,
7592 "GreatWave" => Self::GreatWave,
7593 "StarryNight" => Self::StarryNight,
7594 "GuidePicasso" => Self::GuidePicasso,
7595 "TheGuardiansGaze" => Self::TheGuardiansGaze,
7596 "FatherofSomeone" => Self::FatherOfSomeone,
7597 "NurseLisa" => Self::NurseLisa,
7598 "ShadowbeamStaff" => Self::ShadowbeamStaff,
7599 "InfernoFork" => Self::InfernoFork,
7600 "SpectreStaff" => Self::SpectreStaff,
7601 "WoodenFence" => Self::WoodenFence,
7602 "LeadFence" => Self::LeadFence,
7603 "BubbleMachine" => Self::BubbleMachine,
7604 "BubbleWand" => Self::BubbleWand,
7605 "MarchingBonesBanner" => Self::MarchingBonesBanner,
7606 "NecromanticSign" => Self::NecromanticSign,
7607 "RustedCompanyStandard" => Self::RustedCompanyStandard,
7608 "RaggedBrotherhoodSigil" => Self::RaggedBrotherhoodSigil,
7609 "MoltenLegionFlag" => Self::MoltenLegionFlag,
7610 "DiabolicSigil" => Self::DiabolicSigil,
7611 "ObsidianPlatform" => Self::ObsidianPlatform,
7612 "ObsidianDoor" => Self::ObsidianDoor,
7613 "ObsidianChair" => Self::ObsidianChair,
7614 "ObsidianTable" => Self::ObsidianTable,
7615 "ObsidianWorkBench" => Self::ObsidianWorkBench,
7616 "ObsidianVase" => Self::ObsidianVase,
7617 "ObsidianBookcase" => Self::ObsidianBookcase,
7618 "HellboundBanner" => Self::HellboundBanner,
7619 "HellHammerBanner" => Self::HellHammerBanner,
7620 "HelltowerBanner" => Self::HelltowerBanner,
7621 "LostHopesofManBanner" => Self::LostHopesOfManBanner,
7622 "ObsidianWatcherBanner" => Self::ObsidianWatcherBanner,
7623 "LavaEruptsBanner" => Self::LavaEruptsBanner,
7624 "BlueDungeonBed" => Self::BlueDungeonBed,
7625 "GreenDungeonBed" => Self::GreenDungeonBed,
7626 "PinkDungeonBed" => Self::PinkDungeonBed,
7627 "ObsidianBed" => Self::ObsidianBed,
7628 "Waldo" => Self::Waldo,
7629 "Darkness" => Self::Darkness,
7630 "DarkSoulReaper" => Self::DarkSoulReaper,
7631 "Land" => Self::Land,
7632 "TrappedGhost" => Self::TrappedGhost,
7633 "DemonsEye" => Self::DemonsEye,
7634 "FindingGold" => Self::FindingGold,
7635 "FirstEncounter" => Self::FirstEncounter,
7636 "GoodMorning" => Self::GoodMorning,
7637 "UndergroundReward" => Self::UndergroundReward,
7638 "ThroughtheWindow" => Self::ThroughTheWindow,
7639 "PlaceAbovetheClouds" => Self::PlaceAboveTheClouds,
7640 "DoNotStepontheGrass" => Self::DoNotStepOnTheGrass,
7641 "ColdWatersintheWhiteLand" => Self::ColdWatersInTheWhiteLand,
7642 "LightlessChasms" => Self::LightlessChasms,
7643 "TheLandofDeceivingLooks" => Self::TheLandOfDeceivingLooks,
7644 "Daylight" => Self::Daylight,
7645 "SecretoftheSands" => Self::SecretOfTheSands,
7646 "DeadlandComesAlive" => Self::DeadlandComesAlive,
7647 "EvilPresence" => Self::EvilPresence,
7648 "SkyGuardian" => Self::SkyGuardian,
7649 "AmericanExplosive" => Self::AmericanExplosive,
7650 "Discover" => Self::Discover,
7651 "HandEarth" => Self::HandEarth,
7652 "OldMiner" => Self::OldMiner,
7653 "Skelehead" => Self::Skelehead,
7654 "FacingtheCerebralMastermind" => Self::FacingTheCerebralMastermind,
7655 "LakeofFire" => Self::LakeOfFire,
7656 "TrioSuperHeroes" => Self::TrioSuperHeroes,
7657 "SpectreHood" => Self::SpectreHood,
7658 "SpectreRobe" => Self::SpectreRobe,
7659 "SpectrePants" => Self::SpectrePants,
7660 "SpectrePickaxe" => Self::SpectrePickaxe,
7661 "SpectreHamaxe" => Self::SpectreHamaxe,
7662 "Ectoplasm" => Self::Ectoplasm,
7663 "GothicChair" => Self::GothicChair,
7664 "GothicTable" => Self::GothicTable,
7665 "GothicWorkBench" => Self::GothicWorkBench,
7666 "GothicBookcase" => Self::GothicBookcase,
7667 "PaladinsHammer" => Self::PaladinsHammer,
7668 "SWATHelmet" => Self::SWATHelmet,
7669 "BeeWings" => Self::BeeWings,
7670 "GiantHarpyFeather" => Self::GiantHarpyFeather,
7671 "BoneFeather" => Self::BoneFeather,
7672 "FireFeather" => Self::FireFeather,
7673 "IceFeather" => Self::IceFeather,
7674 "BrokenBatWing" => Self::BrokenBatWing,
7675 "TatteredBeeWing" => Self::TatteredBeeWing,
7676 "LargeAmethyst" => Self::LargeAmethyst,
7677 "LargeTopaz" => Self::LargeTopaz,
7678 "LargeSapphire" => Self::LargeSapphire,
7679 "LargeEmerald" => Self::LargeEmerald,
7680 "LargeRuby" => Self::LargeRuby,
7681 "LargeDiamond" => Self::LargeDiamond,
7682 "JungleChest" => Self::JungleChest,
7683 "CorruptionChest" => Self::CorruptionChest,
7684 "CrimsonChest" => Self::CrimsonChest,
7685 "HallowedChest" => Self::HallowedChest,
7686 "FrozenChest" => Self::FrozenChest,
7687 "JungleKey" => Self::JungleKey,
7688 "CorruptionKey" => Self::CorruptionKey,
7689 "CrimsonKey" => Self::CrimsonKey,
7690 "HallowedKey" => Self::HallowedKey,
7691 "FrozenKey" => Self::FrozenKey,
7692 "ImpFace" => Self::ImpFace,
7693 "OminousPresence" => Self::OminousPresence,
7694 "ShiningMoon" => Self::ShiningMoon,
7695 "LivingGore" => Self::LivingGore,
7696 "FlowingMagma" => Self::FlowingMagma,
7697 "SpectrePaintbrush" => Self::SpectrePaintbrush,
7698 "SpectrePaintRoller" => Self::SpectrePaintRoller,
7699 "SpectrePaintScraper" => Self::SpectrePaintScraper,
7700 "ShroomiteHeadgear" => Self::ShroomiteHeadgear,
7701 "ShroomiteMask" => Self::ShroomiteMask,
7702 "ShroomiteHelmet" => Self::ShroomiteHelmet,
7703 "ShroomiteBreastplate" => Self::ShroomiteBreastplate,
7704 "ShroomiteLeggings" => Self::ShroomiteLeggings,
7705 "Autohammer" => Self::Autohammer,
7706 "ShroomiteBar" => Self::ShroomiteBar,
7707 "SDMG" => Self::Sdmg,
7708 "CenxsTiara" => Self::CenxsTiara,
7709 "CenxsBreastplate" => Self::CenxsBreastplate,
7710 "CenxsLeggings" => Self::CenxsLeggings,
7711 "CrownosMask" => Self::CrownosMask,
7712 "CrownosBreastplate" => Self::CrownosBreastplate,
7713 "CrownosLeggings" => Self::CrownosLeggings,
7714 "WillsHelmet" => Self::WillsHelmet,
7715 "WillsBreastplate" => Self::WillsBreastplate,
7716 "WillsLeggings" => Self::WillsLeggings,
7717 "JimsHelmet" => Self::JimsHelmet,
7718 "JimsBreastplate" => Self::JimsBreastplate,
7719 "JimsLeggings" => Self::JimsLeggings,
7720 "AaronsHelmet" => Self::AaronsHelmet,
7721 "AaronsBreastplate" => Self::AaronsBreastplate,
7722 "AaronsLeggings" => Self::AaronsLeggings,
7723 "VampireKnives" => Self::VampireKnives,
7724 "BrokenHeroSword" => Self::BrokenHeroSword,
7725 "ScourgeoftheCorruptor" => Self::ScourgeOfTheCorruptor,
7726 "StaffoftheFrostHydra" => Self::StaffOfTheFrostHydra,
7727 "TheCreationoftheGuide" => Self::TheCreationOfTheGuide,
7728 "TheMerchant" => Self::TheMerchant,
7729 "CrownoDevoursHisLunch" => Self::CrownoDevoursHisLunch,
7730 "RareEnchantment" => Self::RareEnchantment,
7731 "GloriousNight" => Self::GloriousNight,
7732 "SweetheartNecklace" => Self::SweetheartNecklace,
7733 "FlurryBoots" => Self::FlurryBoots,
7734 "DTownsHelmet" => Self::DTownsHelmet,
7735 "DTownsBreastplate" => Self::DTownsBreastplate,
7736 "DTownsLeggings" => Self::DTownsLeggings,
7737 "DTownsWings" => Self::DTownsWings,
7738 "WillsWings" => Self::WillsWings,
7739 "CrownosWings" => Self::CrownosWings,
7740 "CenxsWings" => Self::CenxsWings,
7741 "CenxsDress" => Self::CenxsDress,
7742 "CenxsDressPants" => Self::CenxsDressPants,
7743 "PalladiumColumn" => Self::PalladiumColumn,
7744 "PalladiumColumnWall" => Self::PalladiumColumnWall,
7745 "BubblegumBlock" => Self::BubblegumBlock,
7746 "BubblegumBlockWall" => Self::BubblegumBlockWall,
7747 "TitanstoneBlock" => Self::TitanstoneBlock,
7748 "TitanstoneBlockWall" => Self::TitanstoneBlockWall,
7749 "MagicCuffs" => Self::MagicCuffs,
7750 "MusicBoxSnow" => Self::MusicBoxSnow,
7751 "MusicBoxSpace" => Self::MusicBoxSpace,
7752 "MusicBoxCrimson" => Self::MusicBoxCrimson,
7753 "MusicBoxBoss4" => Self::MusicBoxBoss4,
7754 "MusicBoxAltOverworldDay" => Self::MusicBoxAltOverworldDay,
7755 "MusicBoxRain" => Self::MusicBoxRain,
7756 "MusicBoxIce" => Self::MusicBoxIce,
7757 "MusicBoxDesert" => Self::MusicBoxDesert,
7758 "MusicBoxOcean" => Self::MusicBoxOcean,
7759 "MusicBoxDungeon" => Self::MusicBoxDungeon,
7760 "MusicBoxPlantera" => Self::MusicBoxPlantera,
7761 "MusicBoxBoss5" => Self::MusicBoxBoss5,
7762 "MusicBoxTemple" => Self::MusicBoxTemple,
7763 "MusicBoxEclipse" => Self::MusicBoxEclipse,
7764 "MusicBoxMushrooms" => Self::MusicBoxMushrooms,
7765 "ButterflyDust" => Self::ButterflyDust,
7766 "AnkhCharm" => Self::AnkhCharm,
7767 "AnkhShield" => Self::AnkhShield,
7768 "BlueFlare" => Self::BlueFlare,
7769 "AnglerFishBanner" => Self::AnglerFishBanner,
7770 "AngryNimbusBanner" => Self::AngryNimbusBanner,
7771 "AnomuraFungusBanner" => Self::AnomuraFungusBanner,
7772 "AntlionBanner" => Self::AntlionBanner,
7773 "ArapaimaBanner" => Self::ArapaimaBanner,
7774 "ArmoredSkeletonBanner" => Self::ArmoredSkeletonBanner,
7775 "BatBanner" => Self::BatBanner,
7776 "BirdBanner" => Self::BirdBanner,
7777 "BlackRecluseBanner" => Self::BlackRecluseBanner,
7778 "BloodFeederBanner" => Self::BloodFeederBanner,
7779 "BloodJellyBanner" => Self::BloodJellyBanner,
7780 "BloodCrawlerBanner" => Self::BloodCrawlerBanner,
7781 "BoneSerpentBanner" => Self::BoneSerpentBanner,
7782 "BunnyBanner" => Self::BunnyBanner,
7783 "ChaosElementalBanner" => Self::ChaosElementalBanner,
7784 "MimicBanner" => Self::MimicBanner,
7785 "ClownBanner" => Self::ClownBanner,
7786 "CorruptBunnyBanner" => Self::CorruptBunnyBanner,
7787 "CorruptGoldfishBanner" => Self::CorruptGoldfishBanner,
7788 "CrabBanner" => Self::CrabBanner,
7789 "CrimeraBanner" => Self::CrimeraBanner,
7790 "CrimsonAxeBanner" => Self::CrimsonAxeBanner,
7791 "CursedHammerBanner" => Self::CursedHammerBanner,
7792 "DemonBanner" => Self::DemonBanner,
7793 "DemonEyeBanner" => Self::DemonEyeBanner,
7794 "DerplingBanner" => Self::DerplingBanner,
7795 "EaterofSoulsBanner" => Self::EaterOfSoulsBanner,
7796 "EnchantedSwordBanner" => Self::EnchantedSwordBanner,
7797 "ZombieEskimoBanner" => Self::ZombieEskimoBanner,
7798 "FaceMonsterBanner" => Self::FaceMonsterBanner,
7799 "FloatyGrossBanner" => Self::FloatyGrossBanner,
7800 "FlyingFishBanner" => Self::FlyingFishBanner,
7801 "FlyingSnakeBanner" => Self::FlyingSnakeBanner,
7802 "FrankensteinBanner" => Self::FrankensteinBanner,
7803 "FungiBulbBanner" => Self::FungiBulbBanner,
7804 "FungoFishBanner" => Self::FungoFishBanner,
7805 "GastropodBanner" => Self::GastropodBanner,
7806 "GoblinThiefBanner" => Self::GoblinThiefBanner,
7807 "GoblinSorcererBanner" => Self::GoblinSorcererBanner,
7808 "GoblinPeonBanner" => Self::GoblinPeonBanner,
7809 "GoblinScoutBanner" => Self::GoblinScoutBanner,
7810 "GoblinWarriorBanner" => Self::GoblinWarriorBanner,
7811 "GoldfishBanner" => Self::GoldfishBanner,
7812 "HarpyBanner" => Self::HarpyBanner,
7813 "HellbatBanner" => Self::HellbatBanner,
7814 "HerplingBanner" => Self::HerplingBanner,
7815 "HornetBanner" => Self::HornetBanner,
7816 "IceElementalBanner" => Self::IceElementalBanner,
7817 "IcyMermanBanner" => Self::IcyMermanBanner,
7818 "FireImpBanner" => Self::FireImpBanner,
7819 "JellyfishBanner" => Self::JellyfishBanner,
7820 "JungleCreeperBanner" => Self::JungleCreeperBanner,
7821 "LihzahrdBanner" => Self::LihzahrdBanner,
7822 "ManEaterBanner" => Self::ManEaterBanner,
7823 "MeteorHeadBanner" => Self::MeteorHeadBanner,
7824 "MothBanner" => Self::MothBanner,
7825 "MummyBanner" => Self::MummyBanner,
7826 "MushiLadybugBanner" => Self::MushiLadybugBanner,
7827 "ParrotBanner" => Self::ParrotBanner,
7828 "PigronBanner" => Self::PigronBanner,
7829 "PiranhaBanner" => Self::PiranhaBanner,
7830 "PirateBanner" => Self::PirateBanner,
7831 "PixieBanner" => Self::PixieBanner,
7832 "RaincoatZombieBanner" => Self::RaincoatZombieBanner,
7833 "ReaperBanner" => Self::ReaperBanner,
7834 "SharkBanner" => Self::SharkBanner,
7835 "SkeletonBanner" => Self::SkeletonBanner,
7836 "SkeletonMageBanner" => Self::SkeletonMageBanner,
7837 "SlimeBanner" => Self::SlimeBanner,
7838 "SnowFlinxBanner" => Self::SnowFlinxBanner,
7839 "SpiderBanner" => Self::SpiderBanner,
7840 "SporeZombieBanner" => Self::SporeZombieBanner,
7841 "SwampThingBanner" => Self::SwampThingBanner,
7842 "TortoiseBanner" => Self::TortoiseBanner,
7843 "ToxicSludgeBanner" => Self::ToxicSludgeBanner,
7844 "UmbrellaSlimeBanner" => Self::UmbrellaSlimeBanner,
7845 "UnicornBanner" => Self::UnicornBanner,
7846 "VampireBanner" => Self::VampireBanner,
7847 "VultureBanner" => Self::VultureBanner,
7848 "NypmhBanner" => Self::NypmhBanner,
7849 "WerewolfBanner" => Self::WerewolfBanner,
7850 "WolfBanner" => Self::WolfBanner,
7851 "WorldFeederBanner" => Self::WorldFeederBanner,
7852 "WormBanner" => Self::WormBanner,
7853 "WraithBanner" => Self::WraithBanner,
7854 "WyvernBanner" => Self::WyvernBanner,
7855 "ZombieBanner" => Self::ZombieBanner,
7856 "GlassPlatform" => Self::GlassPlatform,
7857 "GlassChair" => Self::GlassChair,
7858 "GoldenChair" => Self::GoldenChair,
7859 "GoldenToilet" => Self::GoldenToilet,
7860 "BarStool" => Self::BarStool,
7861 "HoneyChair" => Self::HoneyChair,
7862 "SteampunkChair" => Self::SteampunkChair,
7863 "GlassDoor" => Self::GlassDoor,
7864 "GoldenDoor" => Self::GoldenDoor,
7865 "HoneyDoor" => Self::HoneyDoor,
7866 "SteampunkDoor" => Self::SteampunkDoor,
7867 "GlassTable" => Self::GlassTable,
7868 "BanquetTable" => Self::BanquetTable,
7869 "Bar" => Self::Bar,
7870 "GoldenTable" => Self::GoldenTable,
7871 "HoneyTable" => Self::HoneyTable,
7872 "SteampunkTable" => Self::SteampunkTable,
7873 "GlassBed" => Self::GlassBed,
7874 "GoldenBed" => Self::GoldenBed,
7875 "HoneyBed" => Self::HoneyBed,
7876 "SteampunkBed" => Self::SteampunkBed,
7877 "LivingWoodWall" => Self::LivingWoodWall,
7878 "FartinaJar" => Self::FartInAJar,
7879 "Pumpkin" => Self::Pumpkin,
7880 "PumpkinWall" => Self::PumpkinWall,
7881 "Hay" => Self::Hay,
7882 "HayWall" => Self::HayWall,
7883 "SpookyWood" => Self::SpookyWood,
7884 "SpookyWoodWall" => Self::SpookyWoodWall,
7885 "PumpkinHelmet" => Self::PumpkinHelmet,
7886 "PumpkinBreastplate" => Self::PumpkinBreastplate,
7887 "PumpkinLeggings" => Self::PumpkinLeggings,
7888 "CandyApple" => Self::CandyApple,
7889 "SoulCake" => Self::SoulCake,
7890 "NurseHat" => Self::NurseHat,
7891 "NurseShirt" => Self::NurseShirt,
7892 "NursePants" => Self::NursePants,
7893 "WizardsHat" => Self::WizardsHat,
7894 "GuyFawkesMask" => Self::GuyFawkesMask,
7895 "DyeTraderRobe" => Self::DyeTraderRobe,
7896 "SteampunkGoggles" => Self::SteampunkGoggles,
7897 "CyborgHelmet" => Self::CyborgHelmet,
7898 "CyborgShirt" => Self::CyborgShirt,
7899 "CyborgPants" => Self::CyborgPants,
7900 "CreeperMask" => Self::CreeperMask,
7901 "CreeperShirt" => Self::CreeperShirt,
7902 "CreeperPants" => Self::CreeperPants,
7903 "CatMask" => Self::CatMask,
7904 "CatShirt" => Self::CatShirt,
7905 "CatPants" => Self::CatPants,
7906 "GhostMask" => Self::GhostMask,
7907 "GhostShirt" => Self::GhostShirt,
7908 "PumpkinMask" => Self::PumpkinMask,
7909 "PumpkinShirt" => Self::PumpkinShirt,
7910 "PumpkinPants" => Self::PumpkinPants,
7911 "RobotMask" => Self::RobotMask,
7912 "RobotShirt" => Self::RobotShirt,
7913 "RobotPants" => Self::RobotPants,
7914 "UnicornMask" => Self::UnicornMask,
7915 "UnicornShirt" => Self::UnicornShirt,
7916 "UnicornPants" => Self::UnicornPants,
7917 "VampireMask" => Self::VampireMask,
7918 "VampireShirt" => Self::VampireShirt,
7919 "VampirePants" => Self::VampirePants,
7920 "WitchHat" => Self::WitchHat,
7921 "LeprechaunHat" => Self::LeprechaunHat,
7922 "LeprechaunShirt" => Self::LeprechaunShirt,
7923 "LeprechaunPants" => Self::LeprechaunPants,
7924 "PixieShirt" => Self::PixieShirt,
7925 "PixiePants" => Self::PixiePants,
7926 "PrincessHat" => Self::PrincessHat,
7927 "PrincessDressNew" => Self::PrincessDressNew,
7928 "GoodieBag" => Self::GoodieBag,
7929 "WitchDress" => Self::WitchDress,
7930 "WitchBoots" => Self::WitchBoots,
7931 "BrideofFrankensteinMask" => Self::BrideOfFrankensteinMask,
7932 "BrideofFrankensteinDress" => Self::BrideOfFrankensteinDress,
7933 "KarateTortoiseMask" => Self::KarateTortoiseMask,
7934 "KarateTortoiseShirt" => Self::KarateTortoiseShirt,
7935 "KarateTortoisePants" => Self::KarateTortoisePants,
7936 "CandyCornRifle" => Self::CandyCornRifle,
7937 "CandyCorn" => Self::CandyCorn,
7938 "JackOLanternLauncher" => Self::JackOLanternLauncher,
7939 "ExplosiveJackOLantern" => Self::ExplosiveJackOLantern,
7940 "Sickle" => Self::Sickle,
7941 "PumpkinPie" => Self::PumpkinPie,
7942 "ScarecrowHat" => Self::ScarecrowHat,
7943 "ScarecrowShirt" => Self::ScarecrowShirt,
7944 "ScarecrowPants" => Self::ScarecrowPants,
7945 "Cauldron" => Self::Cauldron,
7946 "PumpkinChair" => Self::PumpkinChair,
7947 "PumpkinDoor" => Self::PumpkinDoor,
7948 "PumpkinTable" => Self::PumpkinTable,
7949 "PumpkinWorkBench" => Self::PumpkinWorkBench,
7950 "PumpkinPlatform" => Self::PumpkinPlatform,
7951 "TatteredFairyWings" => Self::TatteredFairyWings,
7952 "SpiderEgg" => Self::SpiderEgg,
7953 "MagicalPumpkinSeed" => Self::MagicalPumpkinSeed,
7954 "BatHook" => Self::BatHook,
7955 "BatScepter" => Self::BatScepter,
7956 "RavenStaff" => Self::RavenStaff,
7957 "JungleKeyMold" => Self::JungleKeyMold,
7958 "CorruptionKeyMold" => Self::CorruptionKeyMold,
7959 "CrimsonKeyMold" => Self::CrimsonKeyMold,
7960 "HallowedKeyMold" => Self::HallowedKeyMold,
7961 "FrozenKeyMold" => Self::FrozenKeyMold,
7962 "HangingJackOLantern" => Self::HangingJackOLantern,
7963 "RottenEgg" => Self::RottenEgg,
7964 "UnluckyYarn" => Self::UnluckyYarn,
7965 "BlackFairyDust" => Self::BlackFairyDust,
7966 "Jackelier" => Self::Jackelier,
7967 "JackOLantern" => Self::JackOLantern,
7968 "SpookyChair" => Self::SpookyChair,
7969 "SpookyDoor" => Self::SpookyDoor,
7970 "SpookyTable" => Self::SpookyTable,
7971 "SpookyWorkBench" => Self::SpookyWorkBench,
7972 "SpookyPlatform" => Self::SpookyPlatform,
7973 "ReaperHood" => Self::ReaperHood,
7974 "ReaperRobe" => Self::ReaperRobe,
7975 "FoxMask" => Self::FoxMask,
7976 "FoxShirt" => Self::FoxShirt,
7977 "FoxPants" => Self::FoxPants,
7978 "CatEars" => Self::CatEars,
7979 "BloodyMachete" => Self::BloodyMachete,
7980 "TheHorsemansBlade" => Self::TheHorsemansBlade,
7981 "BladedGlove" => Self::BladedGlove,
7982 "PumpkinSeed" => Self::PumpkinSeed,
7983 "SpookyHook" => Self::SpookyHook,
7984 "SpookyWings" => Self::SpookyWings,
7985 "SpookyTwig" => Self::SpookyTwig,
7986 "SpookyHelmet" => Self::SpookyHelmet,
7987 "SpookyBreastplate" => Self::SpookyBreastplate,
7988 "SpookyLeggings" => Self::SpookyLeggings,
7989 "StakeLauncher" => Self::StakeLauncher,
7990 "Stake" => Self::Stake,
7991 "CursedSapling" => Self::CursedSapling,
7992 "SpaceCreatureMask" => Self::SpaceCreatureMask,
7993 "SpaceCreatureShirt" => Self::SpaceCreatureShirt,
7994 "SpaceCreaturePants" => Self::SpaceCreaturePants,
7995 "WolfMask" => Self::WolfMask,
7996 "WolfShirt" => Self::WolfShirt,
7997 "WolfPants" => Self::WolfPants,
7998 "PumpkinMoonMedallion" => Self::PumpkinMoonMedallion,
7999 "NecromanticScroll" => Self::NecromanticScroll,
8000 "JackingSkeletron" => Self::JackingSkeletron,
8001 "BitterHarvest" => Self::BitterHarvest,
8002 "BloodMoonCountess" => Self::BloodMoonCountess,
8003 "HallowsEve" => Self::HallowsEve,
8004 "MorbidCuriosity" => Self::MorbidCuriosity,
8005 "TreasureHunterShirt" => Self::TreasureHunterShirt,
8006 "TreasureHunterPants" => Self::TreasureHunterPants,
8007 "DryadCoverings" => Self::DryadCoverings,
8008 "DryadLoincloth" => Self::DryadLoincloth,
8009 "MourningWoodTrophy" => Self::MourningWoodTrophy,
8010 "PumpkingTrophy" => Self::PumpkingTrophy,
8011 "JackOLanternMask" => Self::JackOLanternMask,
8012 "SniperScope" => Self::SniperScope,
8013 "HeartLantern" => Self::HeartLantern,
8014 "JellyfishDivingGear" => Self::JellyfishDivingGear,
8015 "ArcticDivingGear" => Self::ArcticDivingGear,
8016 "FrostsparkBoots" => Self::FrostsparkBoots,
8017 "FartInABalloon" => Self::FartInABalloon,
8018 "PapyrusScarab" => Self::PapyrusScarab,
8019 "CelestialStone" => Self::CelestialStone,
8020 "Hoverboard" => Self::Hoverboard,
8021 "CandyCane" => Self::CandyCane,
8022 "SugarPlum" => Self::SugarPlum,
8023 "Present" => Self::Present,
8024 "RedRyder" => Self::RedRyder,
8025 "FestiveWings" => Self::FestiveWings,
8026 "PineTreeBlock" => Self::PineTreeBlock,
8027 "ChristmasTree" => Self::ChristmasTree,
8028 "StarTopper1" => Self::StarTopper1,
8029 "StarTopper2" => Self::StarTopper2,
8030 "StarTopper3" => Self::StarTopper3,
8031 "BowTopper" => Self::BowTopper,
8032 "WhiteGarland" => Self::WhiteGarland,
8033 "WhiteAndRedGarland" => Self::WhiteAndRedGarland,
8034 "RedGardland" => Self::RedGarland,
8035 "RedAndGreenGardland" => Self::RedAndGreenGarland,
8036 "GreenGardland" => Self::GreenGarland,
8037 "GreenAndWhiteGarland" => Self::GreenAndWhiteGarland,
8038 "MulticoloredBulb" => Self::MulticoloredBulb,
8039 "RedBulb" => Self::RedBulb,
8040 "YellowBulb" => Self::YellowBulb,
8041 "GreenBulb" => Self::GreenBulb,
8042 "RedAndGreenBulb" => Self::RedAndGreenBulb,
8043 "YellowAndGreenBulb" => Self::YellowAndGreenBulb,
8044 "RedAndYellowBulb" => Self::RedAndYellowBulb,
8045 "WhiteBulb" => Self::WhiteBulb,
8046 "WhiteAndRedBulb" => Self::WhiteAndRedBulb,
8047 "WhiteAndYellowBulb" => Self::WhiteAndYellowBulb,
8048 "WhiteAndGreenBulb" => Self::WhiteAndGreenBulb,
8049 "MulticoloredLights" => Self::MulticoloredLights,
8050 "RedLights" => Self::RedLights,
8051 "GreenLights" => Self::GreenLights,
8052 "BlueLights" => Self::BlueLights,
8053 "YellowLights" => Self::YellowLights,
8054 "RedAndYellowLights" => Self::RedAndYellowLights,
8055 "RedAndGreenLights" => Self::RedAndGreenLights,
8056 "YellowAndGreenLights" => Self::YellowAndGreenLights,
8057 "BlueAndGreenLights" => Self::BlueAndGreenLights,
8058 "RedAndBlueLights" => Self::RedAndBlueLights,
8059 "BlueAndYellowLights" => Self::BlueAndYellowLights,
8060 "GiantBow" => Self::GiantBow,
8061 "ReindeerAntlers" => Self::ReindeerAntlers,
8062 "Holly" => Self::Holly,
8063 "CandyCaneSword" => Self::CandyCaneSword,
8064 "ElfMelter" => Self::ElfMelter,
8065 "ChristmasPudding" => Self::ChristmasPudding,
8066 "Eggnog" => Self::Eggnog,
8067 "StarAnise" => Self::StarAnise,
8068 "ReindeerBells" => Self::ReindeerBells,
8069 "CandyCaneHook" => Self::CandyCaneHook,
8070 "ChristmasHook" => Self::ChristmasHook,
8071 "CnadyCanePickaxe" => Self::CnadyCanePickaxe,
8072 "FruitcakeChakram" => Self::FruitcakeChakram,
8073 "SugarCookie" => Self::SugarCookie,
8074 "GingerbreadCookie" => Self::GingerbreadCookie,
8075 "HandWarmer" => Self::HandWarmer,
8076 "Coal" => Self::Coal,
8077 "Toolbox" => Self::Toolbox,
8078 "PineDoor" => Self::PineDoor,
8079 "PineChair" => Self::PineChair,
8080 "PineTable" => Self::PineTable,
8081 "DogWhistle" => Self::DogWhistle,
8082 "ChristmasTreeSword" => Self::ChristmasTreeSword,
8083 "ChainGun" => Self::ChainGun,
8084 "Razorpine" => Self::Razorpine,
8085 "BlizzardStaff" => Self::BlizzardStaff,
8086 "MrsClauseHat" => Self::MrsClauseHat,
8087 "MrsClauseShirt" => Self::MrsClauseShirt,
8088 "MrsClauseHeels" => Self::MrsClauseHeels,
8089 "ParkaHood" => Self::ParkaHood,
8090 "ParkaCoat" => Self::ParkaCoat,
8091 "ParkaPants" => Self::ParkaPants,
8092 "SnowHat" => Self::SnowHat,
8093 "UglySweater" => Self::UglySweater,
8094 "TreeMask" => Self::TreeMask,
8095 "TreeShirt" => Self::TreeShirt,
8096 "TreeTrunks" => Self::TreeTrunks,
8097 "ElfHat" => Self::ElfHat,
8098 "ElfShirt" => Self::ElfShirt,
8099 "ElfPants" => Self::ElfPants,
8100 "SnowmanCannon" => Self::SnowmanCannon,
8101 "NorthPole" => Self::NorthPole,
8102 "ChristmasTreeWallpaper" => Self::ChristmasTreeWallpaper,
8103 "OrnamentWallpaper" => Self::OrnamentWallpaper,
8104 "CandyCaneWallpaper" => Self::CandyCaneWallpaper,
8105 "FestiveWallpaper" => Self::FestiveWallpaper,
8106 "StarsWallpaper" => Self::StarsWallpaper,
8107 "SquigglesWallpaper" => Self::SquigglesWallpaper,
8108 "SnowflakeWallpaper" => Self::SnowflakeWallpaper,
8109 "KrampusHornWallpaper" => Self::KrampusHornWallpaper,
8110 "BluegreenWallpaper" => Self::BluegreenWallpaper,
8111 "GrinchFingerWallpaper" => Self::GrinchFingerWallpaper,
8112 "NaughtyPresent" => Self::NaughtyPresent,
8113 "BabyGrinchMischiefWhistle" => Self::BabyGrinchMischiefWhistle,
8114 "IceQueenTrophy" => Self::IceQueenTrophy,
8115 "SantaNK1Trophy" => Self::SantaNK1Trophy,
8116 "EverscreamTrophy" => Self::EverscreamTrophy,
8117 "MusicBoxPumpkinMoon" => Self::MusicBoxPumpkinMoon,
8118 "MusicBoxAltUnderground" => Self::MusicBoxAltUnderground,
8119 "MusicBoxFrostMoon" => Self::MusicBoxFrostMoon,
8120 "BrownPaint" => Self::BrownPaint,
8121 "ShadowPaint" => Self::ShadowPaint,
8122 "NegativePaint" => Self::NegativePaint,
8123 "TeamDye" => Self::TeamDye,
8124 "AmethystGemsparkBlock" => Self::AmethystGemsparkBlock,
8125 "TopazGemsparkBlock" => Self::TopazGemsparkBlock,
8126 "SapphireGemsparkBlock" => Self::SapphireGemsparkBlock,
8127 "EmeraldGemsparkBlock" => Self::EmeraldGemsparkBlock,
8128 "RubyGemsparkBlock" => Self::RubyGemsparkBlock,
8129 "DiamondGemsparkBlock" => Self::DiamondGemsparkBlock,
8130 "AmberGemsparkBlock" => Self::AmberGemsparkBlock,
8131 "LifeHairDye" => Self::LifeHairDye,
8132 "ManaHairDye" => Self::ManaHairDye,
8133 "DepthHairDye" => Self::DepthHairDye,
8134 "MoneyHairDye" => Self::MoneyHairDye,
8135 "TimeHairDye" => Self::TimeHairDye,
8136 "TeamHairDye" => Self::TeamHairDye,
8137 "BiomeHairDye" => Self::BiomeHairDye,
8138 "PartyHairDye" => Self::PartyHairDye,
8139 "RainbowHairDye" => Self::RainbowHairDye,
8140 "SpeedHairDye" => Self::SpeedHairDye,
8141 "AngelHalo" => Self::AngelHalo,
8142 "Fez" => Self::Fez,
8143 "Womannquin" => Self::Womannequin,
8144 "HairDyeRemover" => Self::HairDyeRemover,
8145 "BugNet" => Self::BugNet,
8146 "Firefly" => Self::Firefly,
8147 "FireflyinaBottle" => Self::FireflyInABottle,
8148 "MonarchButterfly" => Self::MonarchButterfly,
8149 "PurpleEmperorButterfly" => Self::PurpleEmperorButterfly,
8150 "RedAdmiralButterfly" => Self::RedAdmiralButterfly,
8151 "UlyssesButterfly" => Self::UlyssesButterfly,
8152 "SulphurButterfly" => Self::SulphurButterfly,
8153 "TreeNymphButterfly" => Self::TreeNymphButterfly,
8154 "ZebraSwallowtailButterfly" => Self::ZebraSwallowtailButterfly,
8155 "JuliaButterfly" => Self::JuliaButterfly,
8156 "Worm" => Self::Worm,
8157 "Mouse" => Self::Mouse,
8158 "LightningBug" => Self::LightningBug,
8159 "LightningBuginaBottle" => Self::LightningBugInABottle,
8160 "Snail" => Self::Snail,
8161 "GlowingSnail" => Self::GlowingSnail,
8162 "FancyGreyWallpaper" => Self::FancyGreyWallpaper,
8163 "IceFloeWallpaper" => Self::IceFloeWallpaper,
8164 "MusicWallpaper" => Self::MusicWallpaper,
8165 "PurpleRainWallpaper" => Self::PurpleRainWallpaper,
8166 "RainbowWallpaper" => Self::RainbowWallpaper,
8167 "SparkleStoneWallpaper" => Self::SparkleStoneWallpaper,
8168 "StarlitHeavenWallpaper" => Self::StarlitHeavenWallpaper,
8169 "Bird" => Self::Bird,
8170 "BlueJay" => Self::BlueJay,
8171 "Cardinal" => Self::Cardinal,
8172 "Squirrel" => Self::Squirrel,
8173 "Bunny" => Self::Bunny,
8174 "CactusBookcase" => Self::CactusBookcase,
8175 "EbonwoodBookcase" => Self::EbonwoodBookcase,
8176 "FleshBookcase" => Self::FleshBookcase,
8177 "HoneyBookcase" => Self::HoneyBookcase,
8178 "SteampunkBookcase" => Self::SteampunkBookcase,
8179 "GlassBookcase" => Self::GlassBookcase,
8180 "RichMahoganyBookcase" => Self::RichMahoganyBookcase,
8181 "PearlwoodBookcase" => Self::PearlwoodBookcase,
8182 "SpookyBookcase" => Self::SpookyBookcase,
8183 "SkywareBookcase" => Self::SkywareBookcase,
8184 "LihzahrdBookcase" => Self::LihzahrdBookcase,
8185 "FrozenBookcase" => Self::FrozenBookcase,
8186 "CactusLantern" => Self::CactusLantern,
8187 "EbonwoodLantern" => Self::EbonwoodLantern,
8188 "FleshLantern" => Self::FleshLantern,
8189 "HoneyLantern" => Self::HoneyLantern,
8190 "SteampunkLantern" => Self::SteampunkLantern,
8191 "GlassLantern" => Self::GlassLantern,
8192 "RichMahoganyLantern" => Self::RichMahoganyLantern,
8193 "PearlwoodLantern" => Self::PearlwoodLantern,
8194 "FrozenLantern" => Self::FrozenLantern,
8195 "LihzahrdLantern" => Self::LihzahrdLantern,
8196 "SkywareLantern" => Self::SkywareLantern,
8197 "SpookyLantern" => Self::SpookyLantern,
8198 "FrozenDoor" => Self::FrozenDoor,
8199 "CactusCandle" => Self::CactusCandle,
8200 "EbonwoodCandle" => Self::EbonwoodCandle,
8201 "FleshCandle" => Self::FleshCandle,
8202 "GlassCandle" => Self::GlassCandle,
8203 "FrozenCandle" => Self::FrozenCandle,
8204 "RichMahoganyCandle" => Self::RichMahoganyCandle,
8205 "PearlwoodCandle" => Self::PearlwoodCandle,
8206 "LihzahrdCandle" => Self::LihzahrdCandle,
8207 "SkywareCandle" => Self::SkywareCandle,
8208 "PumpkinCandle" => Self::PumpkinCandle,
8209 "CactusChandelier" => Self::CactusChandelier,
8210 "EbonwoodChandelier" => Self::EbonwoodChandelier,
8211 "FleshChandelier" => Self::FleshChandelier,
8212 "HoneyChandelier" => Self::HoneyChandelier,
8213 "FrozenChandelier" => Self::FrozenChandelier,
8214 "RichMahoganyChandelier" => Self::RichMahoganyChandelier,
8215 "PearlwoodChandelier" => Self::PearlwoodChandelier,
8216 "LihzahrdChandelier" => Self::LihzahrdChandelier,
8217 "SkywareChandelier" => Self::SkywareChandelier,
8218 "SpookyChandelier" => Self::SpookyChandelier,
8219 "GlassChandelier" => Self::GlassChandelier,
8220 "CactusBed" => Self::CactusBed,
8221 "FleshBed" => Self::FleshBed,
8222 "FrozenBed" => Self::FrozenBed,
8223 "LihzahrdBed" => Self::LihzahrdBed,
8224 "SkywareBed" => Self::SkywareBed,
8225 "SpookyBed" => Self::SpookyBed,
8226 "CactusBathtub" => Self::CactusBathtub,
8227 "EbonwoodBathtub" => Self::EbonwoodBathtub,
8228 "FleshBathtub" => Self::FleshBathtub,
8229 "GlassBathtub" => Self::GlassBathtub,
8230 "FrozenBathtub" => Self::FrozenBathtub,
8231 "RichMahoganyBathtub" => Self::RichMahoganyBathtub,
8232 "PearlwoodBathtub" => Self::PearlwoodBathtub,
8233 "LihzahrdBathtub" => Self::LihzahrdBathtub,
8234 "SkywareBathtub" => Self::SkywareBathtub,
8235 "SpookyBathtub" => Self::SpookyBathtub,
8236 "CactusLamp" => Self::CactusLamp,
8237 "EbonwoodLamp" => Self::EbonwoodLamp,
8238 "FleshLamp" => Self::FleshLamp,
8239 "GlassLamp" => Self::GlassLamp,
8240 "FrozenLamp" => Self::FrozenLamp,
8241 "RichMahoganyLamp" => Self::RichMahoganyLamp,
8242 "PearlwoodLamp" => Self::PearlwoodLamp,
8243 "LihzahrdLamp" => Self::LihzahrdLamp,
8244 "SkywareLamp" => Self::SkywareLamp,
8245 "SpookyLamp" => Self::SpookyLamp,
8246 "CactusCandelabra" => Self::CactusCandelabra,
8247 "EbonwoodCandelabra" => Self::EbonwoodCandelabra,
8248 "FleshCandelabra" => Self::FleshCandelabra,
8249 "HoneyCandelabra" => Self::HoneyCandelabra,
8250 "SteampunkCandelabra" => Self::SteampunkCandelabra,
8251 "GlassCandelabra" => Self::GlassCandelabra,
8252 "RichMahoganyCandelabra" => Self::RichMahoganyCandelabra,
8253 "PearlwoodCandelabra" => Self::PearlwoodCandelabra,
8254 "FrozenCandelabra" => Self::FrozenCandelabra,
8255 "LihzahrdCandelabra" => Self::LihzahrdCandelabra,
8256 "SkywareCandelabra" => Self::SkywareCandelabra,
8257 "SpookyCandelabra" => Self::SpookyCandelabra,
8258 "BrainMask" => Self::BrainMask,
8259 "FleshMask" => Self::FleshMask,
8260 "TwinMask" => Self::TwinMask,
8261 "SkeletronPrimeMask" => Self::SkeletronPrimeMask,
8262 "BeeMask" => Self::BeeMask,
8263 "PlanteraMask" => Self::PlanteraMask,
8264 "GolemMask" => Self::GolemMask,
8265 "EaterMask" => Self::EaterMask,
8266 "EyeMask" => Self::EyeMask,
8267 "DestroyerMask" => Self::DestroyerMask,
8268 "BlacksmithRack" => Self::BlacksmithRack,
8269 "CarpentryRack" => Self::CarpentryRack,
8270 "HelmetRack" => Self::HelmetRack,
8271 "SpearRack" => Self::SpearRack,
8272 "SwordRack" => Self::SwordRack,
8273 "StoneSlab" => Self::StoneSlab,
8274 "SandstoneSlab" => Self::SandstoneSlab,
8275 "Frog" => Self::Frog,
8276 "MallardDuck" => Self::MallardDuck,
8277 "Duck" => Self::Duck,
8278 "HoneyBathtub" => Self::HoneyBathtub,
8279 "SteampunkBathtub" => Self::SteampunkBathtub,
8280 "LivingWoodBathtub" => Self::LivingWoodBathtub,
8281 "ShadewoodBathtub" => Self::ShadewoodBathtub,
8282 "BoneBathtub" => Self::BoneBathtub,
8283 "HoneyLamp" => Self::HoneyLamp,
8284 "SteampunkLamp" => Self::SteampunkLamp,
8285 "LivingWoodLamp" => Self::LivingWoodLamp,
8286 "ShadewoodLamp" => Self::ShadewoodLamp,
8287 "GoldenLamp" => Self::GoldenLamp,
8288 "BoneLamp" => Self::BoneLamp,
8289 "LivingWoodBookcase" => Self::LivingWoodBookcase,
8290 "ShadewoodBookcase" => Self::ShadewoodBookcase,
8291 "GoldenBookcase" => Self::GoldenBookcase,
8292 "BoneBookcase" => Self::BoneBookcase,
8293 "LivingWoodBed" => Self::LivingWoodBed,
8294 "BoneBed" => Self::BoneBed,
8295 "LivingWoodChandelier" => Self::LivingWoodChandelier,
8296 "ShadewoodChandelier" => Self::ShadewoodChandelier,
8297 "GoldenChandelier" => Self::GoldenChandelier,
8298 "BoneChandelier" => Self::BoneChandelier,
8299 "LivingWoodLantern" => Self::LivingWoodLantern,
8300 "ShadewoodLantern" => Self::ShadewoodLantern,
8301 "GoldenLantern" => Self::GoldenLantern,
8302 "BoneLantern" => Self::BoneLantern,
8303 "LivingWoodCandelabra" => Self::LivingWoodCandelabra,
8304 "ShadewoodCandelabra" => Self::ShadewoodCandelabra,
8305 "GoldenCandelabra" => Self::GoldenCandelabra,
8306 "BoneCandelabra" => Self::BoneCandelabra,
8307 "LivingWoodCandle" => Self::LivingWoodCandle,
8308 "ShadewoodCandle" => Self::ShadewoodCandle,
8309 "GoldenCandle" => Self::GoldenCandle,
8310 "BlackScorpion" => Self::BlackScorpion,
8311 "Scorpion" => Self::Scorpion,
8312 "BubbleWallpaper" => Self::BubbleWallpaper,
8313 "CopperPipeWallpaper" => Self::CopperPipeWallpaper,
8314 "DuckyWallpaper" => Self::DuckyWallpaper,
8315 "FrostCore" => Self::FrostCore,
8316 "BunnyCage" => Self::BunnyCage,
8317 "SquirrelCage" => Self::SquirrelCage,
8318 "MallardDuckCage" => Self::MallardDuckCage,
8319 "DuckCage" => Self::DuckCage,
8320 "BirdCage" => Self::BirdCage,
8321 "BlueJayCage" => Self::BlueJayCage,
8322 "CardinalCage" => Self::CardinalCage,
8323 "WaterfallWall" => Self::WaterfallWall,
8324 "LavafallWall" => Self::LavafallWall,
8325 "CrimsonSeeds" => Self::CrimsonSeeds,
8326 "HeavyWorkBench" => Self::HeavyWorkBench,
8327 "CopperPlating" => Self::CopperPlating,
8328 "SnailCage" => Self::SnailCage,
8329 "GlowingSnailCage" => Self::GlowingSnailCage,
8330 "ShroomiteDiggingClaw" => Self::ShroomiteDiggingClaw,
8331 "AmmoBox" => Self::AmmoBox,
8332 "MonarchButterflyJar" => Self::MonarchButterflyJar,
8333 "PurpleEmperorButterflyJar" => Self::PurpleEmperorButterflyJar,
8334 "RedAdmiralButterflyJar" => Self::RedAdmiralButterflyJar,
8335 "UlyssesButterflyJar" => Self::UlyssesButterflyJar,
8336 "SulphurButterflyJar" => Self::SulphurButterflyJar,
8337 "TreeNymphButterflyJar" => Self::TreeNymphButterflyJar,
8338 "ZebraSwallowtailButterflyJar" => Self::ZebraSwallowtailButterflyJar,
8339 "JuliaButterflyJar" => Self::JuliaButterflyJar,
8340 "ScorpionCage" => Self::ScorpionCage,
8341 "BlackScorpionCage" => Self::BlackScorpionCage,
8342 "VenomStaff" => Self::VenomStaff,
8343 "SpectreMask" => Self::SpectreMask,
8344 "FrogCage" => Self::FrogCage,
8345 "MouseCage" => Self::MouseCage,
8346 "BoneWelder" => Self::BoneWelder,
8347 "FleshCloningVaat" => Self::FleshCloningVaat,
8348 "GlassKiln" => Self::GlassKiln,
8349 "LihzahrdFurnace" => Self::LihzahrdFurnace,
8350 "LivingLoom" => Self::LivingLoom,
8351 "SkyMill" => Self::SkyMill,
8352 "IceMachine" => Self::IceMachine,
8353 "BeetleHelmet" => Self::BeetleHelmet,
8354 "BeetleScaleMail" => Self::BeetleScaleMail,
8355 "BeetleShell" => Self::BeetleShell,
8356 "BeetleLeggings" => Self::BeetleLeggings,
8357 "SteampunkBoiler" => Self::SteampunkBoiler,
8358 "HoneyDispenser" => Self::HoneyDispenser,
8359 "Penguin" => Self::Penguin,
8360 "PenguinCage" => Self::PenguinCage,
8361 "WormCage" => Self::WormCage,
8362 "Terrarium" => Self::Terrarium,
8363 "SuperManaPotion" => Self::SuperManaPotion,
8364 "EbonwoodFence" => Self::EbonwoodFence,
8365 "RichMahoganyFence" => Self::RichMahoganyFence,
8366 "PearlwoodFence" => Self::PearlwoodFence,
8367 "ShadewoodFence" => Self::ShadewoodFence,
8368 "BrickLayer" => Self::BrickLayer,
8369 "ExtendoGrip" => Self::ExtendoGrip,
8370 "PaintSprayer" => Self::PaintSprayer,
8371 "PortableCementMixer" => Self::PortableCementMixer,
8372 "BeetleHusk" => Self::BeetleHusk,
8373 "CelestialMagnet" => Self::CelestialMagnet,
8374 "CelestialEmblem" => Self::CelestialEmblem,
8375 "CelestialCuffs" => Self::CelestialCuffs,
8376 "PeddlersHat" => Self::PeddlersHat,
8377 "PulseBow" => Self::PulseBow,
8378 "DynastyChandelier" => Self::DynastyChandelier,
8379 "DynastyLamp" => Self::DynastyLamp,
8380 "DynastyLantern" => Self::DynastyLantern,
8381 "DynastyCandelabra" => Self::DynastyCandelabra,
8382 "DynastyChair" => Self::DynastyChair,
8383 "DynastyWorkBench" => Self::DynastyWorkBench,
8384 "DynastyChest" => Self::DynastyChest,
8385 "DynastyBed" => Self::DynastyBed,
8386 "DynastyBathtub" => Self::DynastyBathtub,
8387 "DynastyBookcase" => Self::DynastyBookcase,
8388 "DynastyCup" => Self::DynastyCup,
8389 "DynastyBowl" => Self::DynastyBowl,
8390 "DynastyCandle" => Self::DynastyCandle,
8391 "DynastyClock" => Self::DynastyClock,
8392 "GoldenClock" => Self::GoldenClock,
8393 "GlassClock" => Self::GlassClock,
8394 "HoneyClock" => Self::HoneyClock,
8395 "SteampunkClock" => Self::SteampunkClock,
8396 "FancyDishes" => Self::FancyDishes,
8397 "GlassBowl" => Self::GlassBowl,
8398 "WineGlass" => Self::WineGlass,
8399 "LivingWoodPiano" => Self::LivingWoodPiano,
8400 "FleshPiano" => Self::FleshPiano,
8401 "FrozenPiano" => Self::FrozenPiano,
8402 "FrozenTable" => Self::FrozenTable,
8403 "HoneyChest" => Self::HoneyChest,
8404 "SteampunkChest" => Self::SteampunkChest,
8405 "HoneyWorkBench" => Self::HoneyWorkBench,
8406 "FrozenWorkBench" => Self::FrozenWorkBench,
8407 "SteampunkWorkBench" => Self::SteampunkWorkBench,
8408 "GlassPiano" => Self::GlassPiano,
8409 "HoneyPiano" => Self::HoneyPiano,
8410 "SteampunkPiano" => Self::SteampunkPiano,
8411 "HoneyCup" => Self::HoneyCup,
8412 "SteampunkCup" => Self::SteampunkCup,
8413 "DynastyTable" => Self::DynastyTable,
8414 "DynastyWood" => Self::DynastyWood,
8415 "RedDynastyShingles" => Self::RedDynastyShingles,
8416 "BlueDynastyShingles" => Self::BlueDynastyShingles,
8417 "WhiteDynastyWall" => Self::WhiteDynastyWall,
8418 "BlueDynastyWall" => Self::BlueDynastyWall,
8419 "DynastyDoor" => Self::DynastyDoor,
8420 "Sake" => Self::Sake,
8421 "PadThai" => Self::PadThai,
8422 "Pho" => Self::Pho,
8423 "Revolver" => Self::Revolver,
8424 "Gatligator" => Self::Gatligator,
8425 "ArcaneRuneWall" => Self::ArcaneRuneWall,
8426 "WaterGun" => Self::WaterGun,
8427 "Katana" => Self::Katana,
8428 "UltrabrightTorch" => Self::UltrabrightTorch,
8429 "MagicHat" => Self::MagicHat,
8430 "DiamondRing" => Self::DiamondRing,
8431 "Gi" => Self::Gi,
8432 "Kimono" => Self::Kimono,
8433 "GypsyRobe" => Self::GypsyRobe,
8434 "BeetleWings" => Self::BeetleWings,
8435 "TigerSkin" => Self::TigerSkin,
8436 "LeopardSkin" => Self::LeopardSkin,
8437 "ZebraSkin" => Self::ZebraSkin,
8438 "CrimsonCloak" => Self::CrimsonCloak,
8439 "MysteriousCape" => Self::MysteriousCape,
8440 "RedCape" => Self::RedCape,
8441 "WinterCape" => Self::WinterCape,
8442 "FrozenChair" => Self::FrozenChair,
8443 "WoodFishingPole" => Self::WoodFishingPole,
8444 "Bass" => Self::Bass,
8445 "ReinforcedFishingPole" => Self::ReinforcedFishingPole,
8446 "FiberglassFishingPole" => Self::FiberglassFishingPole,
8447 "FisherofSouls" => Self::FisherOfSouls,
8448 "GoldenFishingRod" => Self::GoldenFishingRod,
8449 "MechanicsRod" => Self::MechanicsRod,
8450 "SittingDucksFishingRod" => Self::SittingDucksFishingRod,
8451 "Trout" => Self::Trout,
8452 "Salmon" => Self::Salmon,
8453 "AtlanticCod" => Self::AtlanticCod,
8454 "Tuna" => Self::Tuna,
8455 "RedSnapper" => Self::RedSnapper,
8456 "NeonTetra" => Self::NeonTetra,
8457 "ArmoredCavefish" => Self::ArmoredCavefish,
8458 "Damselfish" => Self::Damselfish,
8459 "CrimsonTigerfish" => Self::CrimsonTigerfish,
8460 "FrostMinnow" => Self::FrostMinnow,
8461 "PrincessFish" => Self::PrincessFish,
8462 "GoldenCarp" => Self::GoldenCarp,
8463 "SpecularFish" => Self::SpecularFish,
8464 "Prismite" => Self::Prismite,
8465 "VariegatedLardfish" => Self::VariegatedLardfish,
8466 "FlarefinKoi" => Self::FlarefinKoi,
8467 "DoubleCod" => Self::DoubleCod,
8468 "Honeyfin" => Self::Honeyfin,
8469 "Obsidifish" => Self::Obsidifish,
8470 "Shrimp" => Self::Shrimp,
8471 "ChaosFish" => Self::ChaosFish,
8472 "Ebonkoi" => Self::Ebonkoi,
8473 "Hemopiranha" => Self::Hemopiranha,
8474 "Rockfish" => Self::Rockfish,
8475 "Stinkfish" => Self::Stinkfish,
8476 "MiningPotion" => Self::MiningPotion,
8477 "HeartreachPotion" => Self::HeartreachPotion,
8478 "CalmingPotion" => Self::CalmingPotion,
8479 "BuilderPotion" => Self::BuilderPotion,
8480 "TitanPotion" => Self::TitanPotion,
8481 "FlipperPotion" => Self::FlipperPotion,
8482 "SummoningPotion" => Self::SummoningPotion,
8483 "TrapsightPotion" => Self::TrapsightPotion,
8484 "PurpleClubberfish" => Self::PurpleClubberfish,
8485 "ObsidianSwordfish" => Self::ObsidianSwordfish,
8486 "Swordfish" => Self::Swordfish,
8487 "IronFence" => Self::IronFence,
8488 "WoodenCrate" => Self::WoodenCrate,
8489 "IronCrate" => Self::IronCrate,
8490 "GoldenCrate" => Self::GoldenCrate,
8491 "OldShoe" => Self::OldShoe,
8492 "FishingSeaweed" => Self::FishingSeaweed,
8493 "TinCan" => Self::TinCan,
8494 "MinecartTrack" => Self::MinecartTrack,
8495 "ReaverShark" => Self::ReaverShark,
8496 "SawtoothShark" => Self::SawtoothShark,
8497 "Minecart" => Self::Minecart,
8498 "AmmoReservationPotion" => Self::AmmoReservationPotion,
8499 "LifeforcePotion" => Self::LifeforcePotion,
8500 "EndurancePotion" => Self::EndurancePotion,
8501 "RagePotion" => Self::RagePotion,
8502 "InfernoPotion" => Self::InfernoPotion,
8503 "WrathPotion" => Self::WrathPotion,
8504 "RecallPotion" => Self::RecallPotion,
8505 "TeleportationPotion" => Self::TeleportationPotion,
8506 "LovePotion" => Self::LovePotion,
8507 "StinkPotion" => Self::StinkPotion,
8508 "FishingPotion" => Self::FishingPotion,
8509 "SonarPotion" => Self::SonarPotion,
8510 "CratePotion" => Self::CratePotion,
8511 "ShiverthornSeeds" => Self::ShiverthornSeeds,
8512 "Shiverthorn" => Self::Shiverthorn,
8513 "WarmthPotion" => Self::WarmthPotion,
8514 "FishHook" => Self::FishHook,
8515 "BeeHeadgear" => Self::BeeHeadgear,
8516 "BeeBreastplate" => Self::BeeBreastplate,
8517 "BeeGreaves" => Self::BeeGreaves,
8518 "HornetStaff" => Self::HornetStaff,
8519 "ImpStaff" => Self::ImpStaff,
8520 "QueenSpiderStaff" => Self::QueenSpiderStaff,
8521 "AnglerHat" => Self::AnglerHat,
8522 "AnglerVest" => Self::AnglerVest,
8523 "AnglerPants" => Self::AnglerPants,
8524 "SpiderMask" => Self::SpiderMask,
8525 "SpiderBreastplate" => Self::SpiderBreastplate,
8526 "SpiderGreaves" => Self::SpiderGreaves,
8527 "HighTestFishingLine" => Self::HighTestFishingLine,
8528 "AnglerEarring" => Self::AnglerEarring,
8529 "TackleBox" => Self::TackleBox,
8530 "BlueDungeonPiano" => Self::BlueDungeonPiano,
8531 "GreenDungeonPiano" => Self::GreenDungeonPiano,
8532 "PinkDungeonPiano" => Self::PinkDungeonPiano,
8533 "GoldenPiano" => Self::GoldenPiano,
8534 "ObsidianPiano" => Self::ObsidianPiano,
8535 "BonePiano" => Self::BonePiano,
8536 "CactusPiano" => Self::CactusPiano,
8537 "SpookyPiano" => Self::SpookyPiano,
8538 "SkywarePiano" => Self::SkywarePiano,
8539 "LihzahrdPiano" => Self::LihzahrdPiano,
8540 "BlueDungeonDresser" => Self::BlueDungeonDresser,
8541 "GreenDungeonDresser" => Self::GreenDungeonDresser,
8542 "PinkDungeonDresser" => Self::PinkDungeonDresser,
8543 "GoldenDresser" => Self::GoldenDresser,
8544 "ObsidianDresser" => Self::ObsidianDresser,
8545 "BoneDresser" => Self::BoneDresser,
8546 "CactusDresser" => Self::CactusDresser,
8547 "SpookyDresser" => Self::SpookyDresser,
8548 "SkywareDresser" => Self::SkywareDresser,
8549 "HoneyDresser" => Self::HoneyDresser,
8550 "LihzahrdDresser" => Self::LihzahrdDresser,
8551 "Sofa" => Self::Sofa,
8552 "EbonwoodSofa" => Self::EbonwoodSofa,
8553 "RichMahoganySofa" => Self::RichMahoganySofa,
8554 "PearlwoodSofa" => Self::PearlwoodSofa,
8555 "ShadewoodSofa" => Self::ShadewoodSofa,
8556 "BlueDungeonSofa" => Self::BlueDungeonSofa,
8557 "GreenDungeonSofa" => Self::GreenDungeonSofa,
8558 "PinkDungeonSofa" => Self::PinkDungeonSofa,
8559 "GoldenSofa" => Self::GoldenSofa,
8560 "ObsidianSofa" => Self::ObsidianSofa,
8561 "BoneSofa" => Self::BoneSofa,
8562 "CactusSofa" => Self::CactusSofa,
8563 "SpookySofa" => Self::SpookySofa,
8564 "SkywareSofa" => Self::SkywareSofa,
8565 "HoneySofa" => Self::HoneySofa,
8566 "SteampunkSofa" => Self::SteampunkSofa,
8567 "MushroomSofa" => Self::MushroomSofa,
8568 "GlassSofa" => Self::GlassSofa,
8569 "PumpkinSofa" => Self::PumpkinSofa,
8570 "LihzahrdSofa" => Self::LihzahrdSofa,
8571 "SeashellHairpin" => Self::SeashellHairpin,
8572 "MermaidAdornment" => Self::MermaidAdornment,
8573 "MermaidTail" => Self::MermaidTail,
8574 "ZephyrFish" => Self::ZephyrFish,
8575 "Fleshcatcher" => Self::Fleshcatcher,
8576 "HotlineFishingHook" => Self::HotlineFishingHook,
8577 "FrogLeg" => Self::FrogLeg,
8578 "Anchor" => Self::Anchor,
8579 "CookedFish" => Self::CookedFish,
8580 "CookedShrimp" => Self::CookedShrimp,
8581 "Sashimi" => Self::Sashimi,
8582 "FuzzyCarrot" => Self::FuzzyCarrot,
8583 "ScalyTruffle" => Self::ScalyTruffle,
8584 "SlimySaddle" => Self::SlimySaddle,
8585 "BeeWax" => Self::BeeWax,
8586 "CopperPlatingWall" => Self::CopperPlatingWall,
8587 "StoneSlabWall" => Self::StoneSlabWall,
8588 "Sail" => Self::Sail,
8589 "CoralstoneBlock" => Self::CoralstoneBlock,
8590 "BlueJellyfish" => Self::BlueJellyfish,
8591 "GreenJellyfish" => Self::GreenJellyfish,
8592 "PinkJellyfish" => Self::PinkJellyfish,
8593 "BlueJellyfishJar" => Self::BlueJellyfishJar,
8594 "GreenJellyfishJar" => Self::GreenJellyfishJar,
8595 "PinkJellyfishJar" => Self::PinkJellyfishJar,
8596 "LifePreserver" => Self::LifePreserver,
8597 "ShipsWheel" => Self::ShipsWheel,
8598 "CompassRose" => Self::CompassRose,
8599 "WallAnchor" => Self::WallAnchor,
8600 "GoldfishTrophy" => Self::GoldfishTrophy,
8601 "BunnyfishTrophy" => Self::BunnyfishTrophy,
8602 "SwordfishTrophy" => Self::SwordfishTrophy,
8603 "SharkteethTrophy" => Self::SharkteethTrophy,
8604 "Batfish" => Self::Batfish,
8605 "BumblebeeTuna" => Self::BumblebeeTuna,
8606 "Catfish" => Self::Catfish,
8607 "Cloudfish" => Self::Cloudfish,
8608 "Cursedfish" => Self::Cursedfish,
8609 "Dirtfish" => Self::Dirtfish,
8610 "DynamiteFish" => Self::DynamiteFish,
8611 "EaterofPlankton" => Self::EaterOfPlankton,
8612 "FallenStarfish" => Self::FallenStarfish,
8613 "TheFishofCthulu" => Self::TheFishOfCthulu,
8614 "Fishotron" => Self::Fishotron,
8615 "Harpyfish" => Self::Harpyfish,
8616 "Hungerfish" => Self::Hungerfish,
8617 "Ichorfish" => Self::Ichorfish,
8618 "Jewelfish" => Self::Jewelfish,
8619 "MirageFish" => Self::MirageFish,
8620 "MutantFlinxfin" => Self::MutantFlinxfin,
8621 "Pengfish" => Self::Pengfish,
8622 "Pixiefish" => Self::Pixiefish,
8623 "Spiderfish" => Self::Spiderfish,
8624 "TundraTrout" => Self::TundraTrout,
8625 "UnicornFish" => Self::UnicornFish,
8626 "GuideVoodooFish" => Self::GuideVoodooFish,
8627 "Wyverntail" => Self::Wyverntail,
8628 "ZombieFish" => Self::ZombieFish,
8629 "AmanitaFungifin" => Self::AmanitaFungifin,
8630 "Angelfish" => Self::Angelfish,
8631 "BloodyManowar" => Self::BloodyManowar,
8632 "Bonefish" => Self::Bonefish,
8633 "Bunnyfish" => Self::Bunnyfish,
8634 "CapnTunabeard" => Self::CapnTunabeard,
8635 "Clownfish" => Self::Clownfish,
8636 "DemonicHellfish" => Self::DemonicHellfish,
8637 "Derpfish" => Self::Derpfish,
8638 "Fishron" => Self::Fishron,
8639 "InfectedScabbardfish" => Self::InfectedScabbardfish,
8640 "Mudfish" => Self::Mudfish,
8641 "Slimefish" => Self::Slimefish,
8642 "TropicalBarracuda" => Self::TropicalBarracuda,
8643 "KingSlimeTrophy" => Self::KingSlimeTrophy,
8644 "ShipInABottle" => Self::ShipInABottle,
8645 "HardySaddle" => Self::HardySaddle,
8646 "PressureTrack" => Self::PressureTrack,
8647 "KingSlimeMask" => Self::KingSlimeMask,
8648 "FinWings" => Self::FinWings,
8649 "TreasureMap" => Self::TreasureMap,
8650 "SeaweedPlanter" => Self::SeaweedPlanter,
8651 "PillaginMePixels" => Self::PillaginMePixels,
8652 "FishCostumeMask" => Self::FishCostumeMask,
8653 "FishCostumeShirt" => Self::FishCostumeShirt,
8654 "FishCostumeFinskirt" => Self::FishCostumeFinskirt,
8655 "GingerBeard" => Self::GingerBeard,
8656 "HoneyedGoggles" => Self::HoneyedGoggles,
8657 "BorealWood" => Self::BorealWood,
8658 "PalmWood" => Self::PalmWood,
8659 "BorealWoodWall" => Self::BorealWoodWall,
8660 "PalmWoodWall" => Self::PalmWoodWall,
8661 "BorealWoodFence" => Self::BorealWoodFence,
8662 "PalmWoodFence" => Self::PalmWoodFence,
8663 "BorealWoodHelmet" => Self::BorealWoodHelmet,
8664 "BorealWoodBreastplate" => Self::BorealWoodBreastplate,
8665 "BorealWoodGreaves" => Self::BorealWoodGreaves,
8666 "PalmWoodHelmet" => Self::PalmWoodHelmet,
8667 "PalmWoodBreastplate" => Self::PalmWoodBreastplate,
8668 "PalmWoodGreaves" => Self::PalmWoodGreaves,
8669 "PalmWoodBow" => Self::PalmWoodBow,
8670 "PalmWoodHammer" => Self::PalmWoodHammer,
8671 "PalmWoodSword" => Self::PalmWoodSword,
8672 "PalmWoodPlatform" => Self::PalmWoodPlatform,
8673 "PalmWoodBathtub" => Self::PalmWoodBathtub,
8674 "PalmWoodBed" => Self::PalmWoodBed,
8675 "PalmWoodBench" => Self::PalmWoodBench,
8676 "PalmWoodCandelabra" => Self::PalmWoodCandelabra,
8677 "PalmWoodCandle" => Self::PalmWoodCandle,
8678 "PalmWoodChair" => Self::PalmWoodChair,
8679 "PalmWoodChandelier" => Self::PalmWoodChandelier,
8680 "PalmWoodChest" => Self::PalmWoodChest,
8681 "PalmWoodSofa" => Self::PalmWoodSofa,
8682 "PalmWoodDoor" => Self::PalmWoodDoor,
8683 "PalmWoodDresser" => Self::PalmWoodDresser,
8684 "PalmWoodLantern" => Self::PalmWoodLantern,
8685 "PalmWoodPiano" => Self::PalmWoodPiano,
8686 "PalmWoodTable" => Self::PalmWoodTable,
8687 "PalmWoodLamp" => Self::PalmWoodLamp,
8688 "PalmWoodWorkBench" => Self::PalmWoodWorkBench,
8689 "OpticStaff" => Self::OpticStaff,
8690 "PalmWoodBookcase" => Self::PalmWoodBookcase,
8691 "MushroomBathtub" => Self::MushroomBathtub,
8692 "MushroomBed" => Self::MushroomBed,
8693 "MushroomBench" => Self::MushroomBench,
8694 "MushroomBookcase" => Self::MushroomBookcase,
8695 "MushroomCandelabra" => Self::MushroomCandelabra,
8696 "MushroomCandle" => Self::MushroomCandle,
8697 "MushroomChandelier" => Self::MushroomChandelier,
8698 "MushroomChest" => Self::MushroomChest,
8699 "MushroomDresser" => Self::MushroomDresser,
8700 "MushroomLantern" => Self::MushroomLantern,
8701 "MushroomLamp" => Self::MushroomLamp,
8702 "MushroomPiano" => Self::MushroomPiano,
8703 "MushroomPlatform" => Self::MushroomPlatform,
8704 "MushroomTable" => Self::MushroomTable,
8705 "SpiderStaff" => Self::SpiderStaff,
8706 "BorealWoodBathtub" => Self::BorealWoodBathtub,
8707 "BorealWoodBed" => Self::BorealWoodBed,
8708 "BorealWoodBookcase" => Self::BorealWoodBookcase,
8709 "BorealWoodCandelabra" => Self::BorealWoodCandelabra,
8710 "BorealWoodCandle" => Self::BorealWoodCandle,
8711 "BorealWoodChair" => Self::BorealWoodChair,
8712 "BorealWoodChandelier" => Self::BorealWoodChandelier,
8713 "BorealWoodChest" => Self::BorealWoodChest,
8714 "BorealWoodClock" => Self::BorealWoodClock,
8715 "BorealWoodDoor" => Self::BorealWoodDoor,
8716 "BorealWoodDresser" => Self::BorealWoodDresser,
8717 "BorealWoodLamp" => Self::BorealWoodLamp,
8718 "BorealWoodLantern" => Self::BorealWoodLantern,
8719 "BorealWoodPiano" => Self::BorealWoodPiano,
8720 "BorealWoodPlatform" => Self::BorealWoodPlatform,
8721 "SlimeBathtub" => Self::SlimeBathtub,
8722 "SlimeBed" => Self::SlimeBed,
8723 "SlimeBookcase" => Self::SlimeBookcase,
8724 "SlimeCandelabra" => Self::SlimeCandelabra,
8725 "SlimeCandle" => Self::SlimeCandle,
8726 "SlimeChair" => Self::SlimeChair,
8727 "SlimeChandelier" => Self::SlimeChandelier,
8728 "SlimeChest" => Self::SlimeChest,
8729 "SlimeClock" => Self::SlimeClock,
8730 "SlimeDoor" => Self::SlimeDoor,
8731 "SlimeDresser" => Self::SlimeDresser,
8732 "SlimeLamp" => Self::SlimeLamp,
8733 "SlimeLantern" => Self::SlimeLantern,
8734 "SlimePiano" => Self::SlimePiano,
8735 "SlimePlatform" => Self::SlimePlatform,
8736 "SlimeSofa" => Self::SlimeSofa,
8737 "SlimeTable" => Self::SlimeTable,
8738 "PirateStaff" => Self::PirateStaff,
8739 "SlimeHook" => Self::SlimeHook,
8740 "StickyGrenade" => Self::StickyGrenade,
8741 "TartarSauce" => Self::TartarSauce,
8742 "DukeFishronMask" => Self::DukeFishronMask,
8743 "DukeFishronTrophy" => Self::DukeFishronTrophy,
8744 "MolotovCocktail" => Self::MolotovCocktail,
8745 "BoneClock" => Self::BoneClock,
8746 "CactusClock" => Self::CactusClock,
8747 "EbonwoodClock" => Self::EbonwoodClock,
8748 "FrozenClock" => Self::FrozenClock,
8749 "LihzahrdClock" => Self::LihzahrdClock,
8750 "LivingWoodClock" => Self::LivingWoodClock,
8751 "RichMahoganyClock" => Self::RichMahoganyClock,
8752 "FleshClock" => Self::FleshClock,
8753 "MushroomClock" => Self::MushroomClock,
8754 "ObsidianClock" => Self::ObsidianClock,
8755 "PalmWoodClock" => Self::PalmWoodClock,
8756 "PearlwoodClock" => Self::PearlwoodClock,
8757 "PumpkinClock" => Self::PumpkinClock,
8758 "ShadewoodClock" => Self::ShadewoodClock,
8759 "SpookyClock" => Self::SpookyClock,
8760 "SkywareClock" => Self::SkywareClock,
8761 "SpiderFang" => Self::SpiderFang,
8762 "FalconBlade" => Self::FalconBlade,
8763 "FishronWings" => Self::FishronWings,
8764 "SlimeGun" => Self::SlimeGun,
8765 "Flairon" => Self::Flairon,
8766 "GreenDungeonChest" => Self::GreenDungeonChest,
8767 "PinkDungeonChest" => Self::PinkDungeonChest,
8768 "BlueDungeonChest" => Self::BlueDungeonChest,
8769 "BoneChest" => Self::BoneChest,
8770 "CactusChest" => Self::CactusChest,
8771 "FleshChest" => Self::FleshChest,
8772 "ObsidianChest" => Self::ObsidianChest,
8773 "PumpkinChest" => Self::PumpkinChest,
8774 "SpookyChest" => Self::SpookyChest,
8775 "TempestStaff" => Self::TempestStaff,
8776 "RazorbladeTyphoon" => Self::RazorbladeTyphoon,
8777 "BubbleGun" => Self::BubbleGun,
8778 "Tsunami" => Self::Tsunami,
8779 "Seashell" => Self::Seashell,
8780 "Starfish" => Self::Starfish,
8781 "SteampunkPlatform" => Self::SteampunkPlatform,
8782 "SkywarePlatform" => Self::SkywarePlatform,
8783 "LivingWoodPlatform" => Self::LivingWoodPlatform,
8784 "HoneyPlatform" => Self::HoneyPlatform,
8785 "SkywareWorkbench" => Self::SkywareWorkbench,
8786 "GlassWorkBench" => Self::GlassWorkBench,
8787 "LivingWoodWorkBench" => Self::LivingWoodWorkBench,
8788 "FleshSofa" => Self::FleshSofa,
8789 "FrozenSofa" => Self::FrozenSofa,
8790 "LivingWoodSofa" => Self::LivingWoodSofa,
8791 "PumpkinDresser" => Self::PumpkinDresser,
8792 "SteampunkDresser" => Self::SteampunkDresser,
8793 "GlassDresser" => Self::GlassDresser,
8794 "FleshDresser" => Self::FleshDresser,
8795 "PumpkinLantern" => Self::PumpkinLantern,
8796 "ObsidianLantern" => Self::ObsidianLantern,
8797 "PumpkinLamp" => Self::PumpkinLamp,
8798 "ObsidianLamp" => Self::ObsidianLamp,
8799 "BlueDungeonLamp" => Self::BlueDungeonLamp,
8800 "GreenDungeonLamp" => Self::GreenDungeonLamp,
8801 "PinkDungeonLamp" => Self::PinkDungeonLamp,
8802 "HoneyCandle" => Self::HoneyCandle,
8803 "SteampunkCandle" => Self::SteampunkCandle,
8804 "SpookyCandle" => Self::SpookyCandle,
8805 "ObsidianCandle" => Self::ObsidianCandle,
8806 "BlueDungeonChandelier" => Self::BlueDungeonChandelier,
8807 "GreenDungeonChandelier" => Self::GreenDungeonChandelier,
8808 "PinkDungeonChandelier" => Self::PinkDungeonChandelier,
8809 "SteampunkChandelier" => Self::SteampunkChandelier,
8810 "PumpkinChandelier" => Self::PumpkinChandelier,
8811 "ObsidianChandelier" => Self::ObsidianChandelier,
8812 "BlueDungeonBathtub" => Self::BlueDungeonBathtub,
8813 "GreenDungeonBathtub" => Self::GreenDungeonBathtub,
8814 "PinkDungeonBathtub" => Self::PinkDungeonBathtub,
8815 "PumpkinBathtub" => Self::PumpkinBathtub,
8816 "ObsidianBathtub" => Self::ObsidianBathtub,
8817 "GoldenBathtub" => Self::GoldenBathtub,
8818 "BlueDungeonCandelabra" => Self::BlueDungeonCandelabra,
8819 "GreenDungeonCandelabra" => Self::GreenDungeonCandelabra,
8820 "PinkDungeonCandelabra" => Self::PinkDungeonCandelabra,
8821 "ObsidianCandelabra" => Self::ObsidianCandelabra,
8822 "PumpkinCandelabra" => Self::PumpkinCandelabra,
8823 "PumpkinBed" => Self::PumpkinBed,
8824 "PumpkinBookcase" => Self::PumpkinBookcase,
8825 "PumpkinPiano" => Self::PumpkinPiano,
8826 "SharkStatue" => Self::SharkStatue,
8827 "TruffleWorm" => Self::TruffleWorm,
8828 "ApprenticeBait" => Self::ApprenticeBait,
8829 "JourneymanBait" => Self::JourneymanBait,
8830 "MasterBait" => Self::MasterBait,
8831 "AmberGemsparkWall" => Self::AmberGemsparkWall,
8832 "AmberGemsparkWallOff" => Self::AmberGemsparkWallOff,
8833 "AmethystGemsparkWall" => Self::AmethystGemsparkWall,
8834 "AmethystGemsparkWallOff" => Self::AmethystGemsparkWallOff,
8835 "DiamondGemsparkWall" => Self::DiamondGemsparkWall,
8836 "DiamondGemsparkWallOff" => Self::DiamondGemsparkWallOff,
8837 "EmeraldGemsparkWall" => Self::EmeraldGemsparkWall,
8838 "EmeraldGemsparkWallOff" => Self::EmeraldGemsparkWallOff,
8839 "RubyGemsparkWall" => Self::RubyGemsparkWall,
8840 "RubyGemsparkWallOff" => Self::RubyGemsparkWallOff,
8841 "SapphireGemsparkWall" => Self::SapphireGemsparkWall,
8842 "SapphireGemsparkWallOff" => Self::SapphireGemsparkWallOff,
8843 "TopazGemsparkWall" => Self::TopazGemsparkWall,
8844 "TopazGemsparkWallOff" => Self::TopazGemsparkWallOff,
8845 "TinPlatingWall" => Self::TinPlatingWall,
8846 "TinPlating" => Self::TinPlating,
8847 "WaterfallBlock" => Self::WaterfallBlock,
8848 "LavafallBlock" => Self::LavafallBlock,
8849 "ConfettiBlock" => Self::ConfettiBlock,
8850 "ConfettiWall" => Self::ConfettiWall,
8851 "ConfettiBlockBlack" => Self::ConfettiBlockBlack,
8852 "ConfettiWallBlack" => Self::ConfettiWallBlack,
8853 "WeaponRack" => Self::WeaponRack,
8854 "FireworksBox" => Self::FireworksBox,
8855 "LivingFireBlock" => Self::LivingFireBlock,
8856 "AlphabetStatue0" => Self::AlphabetStatue0,
8857 "AlphabetStatue1" => Self::AlphabetStatue1,
8858 "AlphabetStatue2" => Self::AlphabetStatue2,
8859 "AlphabetStatue3" => Self::AlphabetStatue3,
8860 "AlphabetStatue4" => Self::AlphabetStatue4,
8861 "AlphabetStatue5" => Self::AlphabetStatue5,
8862 "AlphabetStatue6" => Self::AlphabetStatue6,
8863 "AlphabetStatue7" => Self::AlphabetStatue7,
8864 "AlphabetStatue8" => Self::AlphabetStatue8,
8865 "AlphabetStatue9" => Self::AlphabetStatue9,
8866 "AlphabetStatueA" => Self::AlphabetStatueA,
8867 "AlphabetStatueB" => Self::AlphabetStatueB,
8868 "AlphabetStatueC" => Self::AlphabetStatueC,
8869 "AlphabetStatueD" => Self::AlphabetStatueD,
8870 "AlphabetStatueE" => Self::AlphabetStatueE,
8871 "AlphabetStatueF" => Self::AlphabetStatueF,
8872 "AlphabetStatueG" => Self::AlphabetStatueG,
8873 "AlphabetStatueH" => Self::AlphabetStatueH,
8874 "AlphabetStatueI" => Self::AlphabetStatueI,
8875 "AlphabetStatueJ" => Self::AlphabetStatueJ,
8876 "AlphabetStatueK" => Self::AlphabetStatueK,
8877 "AlphabetStatueL" => Self::AlphabetStatueL,
8878 "AlphabetStatueM" => Self::AlphabetStatueM,
8879 "AlphabetStatueN" => Self::AlphabetStatueN,
8880 "AlphabetStatueO" => Self::AlphabetStatueO,
8881 "AlphabetStatueP" => Self::AlphabetStatueP,
8882 "AlphabetStatueQ" => Self::AlphabetStatueQ,
8883 "AlphabetStatueR" => Self::AlphabetStatueR,
8884 "AlphabetStatueS" => Self::AlphabetStatueS,
8885 "AlphabetStatueT" => Self::AlphabetStatueT,
8886 "AlphabetStatueU" => Self::AlphabetStatueU,
8887 "AlphabetStatueV" => Self::AlphabetStatueV,
8888 "AlphabetStatueW" => Self::AlphabetStatueW,
8889 "AlphabetStatueX" => Self::AlphabetStatueX,
8890 "AlphabetStatueY" => Self::AlphabetStatueY,
8891 "AlphabetStatueZ" => Self::AlphabetStatueZ,
8892 "FireworkFountain" => Self::FireworkFountain,
8893 "BoosterTrack" => Self::BoosterTrack,
8894 "Grasshopper" => Self::Grasshopper,
8895 "GrasshopperCage" => Self::GrasshopperCage,
8896 "MusicBoxUndergroundCrimson" => Self::MusicBoxUndergroundCrimson,
8897 "CactusTable" => Self::CactusTable,
8898 "CactusPlatform" => Self::CactusPlatform,
8899 "BorealWoodSword" => Self::BorealWoodSword,
8900 "BorealWoodHammer" => Self::BorealWoodHammer,
8901 "BorealWoodBow" => Self::BorealWoodBow,
8902 "GlassChest" => Self::GlassChest,
8903 "XenoStaff" => Self::XenoStaff,
8904 "MeteorStaff" => Self::MeteorStaff,
8905 "LivingCursedFireBlock" => Self::LivingCursedFireBlock,
8906 "LivingDemonFireBlock" => Self::LivingDemonFireBlock,
8907 "LivingFrostFireBlock" => Self::LivingFrostFireBlock,
8908 "LivingIchorBlock" => Self::LivingIchorBlock,
8909 "LivingUltrabrightFireBlock" => Self::LivingUltrabrightFireBlock,
8910 "GenderChangePotion" => Self::GenderChangePotion,
8911 "VortexHelmet" => Self::VortexHelmet,
8912 "VortexBreastplate" => Self::VortexBreastplate,
8913 "VortexLeggings" => Self::VortexLeggings,
8914 "NebulaHelmet" => Self::NebulaHelmet,
8915 "NebulaBreastplate" => Self::NebulaBreastplate,
8916 "NebulaLeggings" => Self::NebulaLeggings,
8917 "SolarFlareHelmet" => Self::SolarFlareHelmet,
8918 "SolarFlareBreastplate" => Self::SolarFlareBreastplate,
8919 "SolarFlareLeggings" => Self::SolarFlareLeggings,
8920 "LunarTabletFragment" => Self::LunarTabletFragment,
8921 "SolarTablet" => Self::SolarTablet,
8922 "DrillContainmentUnit" => Self::DrillContainmentUnit,
8923 "CosmicCarKey" => Self::CosmicCarKey,
8924 "MothronWings" => Self::MothronWings,
8925 "BrainScrambler" => Self::BrainScrambler,
8926 "VortexAxe" => Self::VortexAxe,
8927 "VortexChainsaw" => Self::VortexChainsaw,
8928 "VortexDrill" => Self::VortexDrill,
8929 "VortexHammer" => Self::VortexHammer,
8930 "VortexPickaxe" => Self::VortexPickaxe,
8931 "NebulaAxe" => Self::NebulaAxe,
8932 "NebulaChainsaw" => Self::NebulaChainsaw,
8933 "NebulaDrill" => Self::NebulaDrill,
8934 "NebulaHammer" => Self::NebulaHammer,
8935 "NebulaPickaxe" => Self::NebulaPickaxe,
8936 "SolarFlareAxe" => Self::SolarFlareAxe,
8937 "SolarFlareChainsaw" => Self::SolarFlareChainsaw,
8938 "SolarFlareDrill" => Self::SolarFlareDrill,
8939 "SolarFlareHammer" => Self::SolarFlareHammer,
8940 "SolarFlarePickaxe" => Self::SolarFlarePickaxe,
8941 "HoneyfallBlock" => Self::HoneyfallBlock,
8942 "HoneyfallWall" => Self::HoneyfallWall,
8943 "ChlorophyteBrickWall" => Self::ChlorophyteBrickWall,
8944 "CrimtaneBrickWall" => Self::CrimtaneBrickWall,
8945 "ShroomitePlatingWall" => Self::ShroomitePlatingWall,
8946 "ChlorophyteBrick" => Self::ChlorophyteBrick,
8947 "CrimtaneBrick" => Self::CrimtaneBrick,
8948 "ShroomitePlating" => Self::ShroomitePlating,
8949 "LaserMachinegun" => Self::LaserMachinegun,
8950 "ElectrosphereLauncher" => Self::ElectrosphereLauncher,
8951 "Xenopopper" => Self::Xenopopper,
8952 "LaserDrill" => Self::LaserDrill,
8953 "LaserRuler" => Self::LaserRuler,
8954 "AntiGravityHook" => Self::AntiGravityHook,
8955 "MoonMask" => Self::MoonMask,
8956 "SunMask" => Self::SunMask,
8957 "MartianCostumeMask" => Self::MartianCostumeMask,
8958 "MartianCostumeShirt" => Self::MartianCostumeShirt,
8959 "MartianCostumePants" => Self::MartianCostumePants,
8960 "MartianUniformHelmet" => Self::MartianUniformHelmet,
8961 "MartianUniformTorso" => Self::MartianUniformTorso,
8962 "MartianUniformPants" => Self::MartianUniformPants,
8963 "MartianAstroClock" => Self::MartianAstroClock,
8964 "MartianBathtub" => Self::MartianBathtub,
8965 "MartianBed" => Self::MartianBed,
8966 "MartianHoverChair" => Self::MartianHoverChair,
8967 "MartianChandelier" => Self::MartianChandelier,
8968 "MartianChest" => Self::MartianChest,
8969 "MartianDoor" => Self::MartianDoor,
8970 "MartianDresser" => Self::MartianDresser,
8971 "MartianHolobookcase" => Self::MartianHolobookcase,
8972 "MartianHoverCandle" => Self::MartianHoverCandle,
8973 "MartianLamppost" => Self::MartianLamppost,
8974 "MartianLantern" => Self::MartianLantern,
8975 "MartianPiano" => Self::MartianPiano,
8976 "MartianPlatform" => Self::MartianPlatform,
8977 "MartianSofa" => Self::MartianSofa,
8978 "MartianTable" => Self::MartianTable,
8979 "MartianTableLamp" => Self::MartianTableLamp,
8980 "MartianWorkBench" => Self::MartianWorkBench,
8981 "WoodenSink" => Self::WoodenSink,
8982 "EbonwoodSink" => Self::EbonwoodSink,
8983 "RichMahoganySink" => Self::RichMahoganySink,
8984 "PearlwoodSink" => Self::PearlwoodSink,
8985 "BoneSink" => Self::BoneSink,
8986 "FleshSink" => Self::FleshSink,
8987 "LivingWoodSink" => Self::LivingWoodSink,
8988 "SkywareSink" => Self::SkywareSink,
8989 "ShadewoodSink" => Self::ShadewoodSink,
8990 "LihzahrdSink" => Self::LihzahrdSink,
8991 "BlueDungeonSink" => Self::BlueDungeonSink,
8992 "GreenDungeonSink" => Self::GreenDungeonSink,
8993 "PinkDungeonSink" => Self::PinkDungeonSink,
8994 "ObsidianSink" => Self::ObsidianSink,
8995 "MetalSink" => Self::MetalSink,
8996 "GlassSink" => Self::GlassSink,
8997 "GoldenSink" => Self::GoldenSink,
8998 "HoneySink" => Self::HoneySink,
8999 "SteampunkSink" => Self::SteampunkSink,
9000 "PumpkinSink" => Self::PumpkinSink,
9001 "SpookySink" => Self::SpookySink,
9002 "FrozenSink" => Self::FrozenSink,
9003 "DynastySink" => Self::DynastySink,
9004 "PalmWoodSink" => Self::PalmWoodSink,
9005 "MushroomSink" => Self::MushroomSink,
9006 "BorealWoodSink" => Self::BorealWoodSink,
9007 "SlimeSink" => Self::SlimeSink,
9008 "CactusSink" => Self::CactusSink,
9009 "MartianSink" => Self::MartianSink,
9010 "WhiteLunaticHood" => Self::WhiteLunaticHood,
9011 "BlueLunaticHood" => Self::BlueLunaticHood,
9012 "WhiteLunaticRobe" => Self::WhiteLunaticRobe,
9013 "BlueLunaticRobe" => Self::BlueLunaticRobe,
9014 "MartianConduitPlating" => Self::MartianConduitPlating,
9015 "MartianConduitWall" => Self::MartianConduitWall,
9016 "HiTekSunglasses" => Self::HiTekSunglasses,
9017 "MartianHairDye" => Self::MartianHairDye,
9018 "MartianArmorDye" => Self::MartianArmorDye,
9019 "PaintingCastleMarsberg" => Self::PaintingCastleMarsberg,
9020 "PaintingMartiaLisa" => Self::PaintingMartiaLisa,
9021 "PaintingTheTruthIsUpThere" => Self::PaintingTheTruthIsUpThere,
9022 "SmokeBlock" => Self::SmokeBlock,
9023 "LivingFlameDye" => Self::LivingFlameDye,
9024 "LivingRainbowDye" => Self::LivingRainbowDye,
9025 "ShadowDye" => Self::ShadowDye,
9026 "NegativeDye" => Self::NegativeDye,
9027 "LivingOceanDye" => Self::LivingOceanDye,
9028 "BrownDye" => Self::BrownDye,
9029 "BrownAndBlackDye" => Self::BrownAndBlackDye,
9030 "BrightBrownDye" => Self::BrightBrownDye,
9031 "BrownAndSilverDye" => Self::BrownAndSilverDye,
9032 "WispDye" => Self::WispDye,
9033 "PixieDye" => Self::PixieDye,
9034 "InfluxWaver" => Self::InfluxWaver,
9035 "PhasicWarpEjector" => Self::PhasicWarpEjector,
9036 "ChargedBlasterCannon" => Self::ChargedBlasterCannon,
9037 "ChlorophyteDye" => Self::ChlorophyteDye,
9038 "UnicornWispDye" => Self::UnicornWispDye,
9039 "InfernalWispDye" => Self::InfernalWispDye,
9040 "ViciousPowder" => Self::ViciousPowder,
9041 "ViciousMushroom" => Self::ViciousMushroom,
9042 "BeesKnees" => Self::BeesKnees,
9043 "GoldBird" => Self::GoldBird,
9044 "GoldBunny" => Self::GoldBunny,
9045 "GoldButterfly" => Self::GoldButterfly,
9046 "GoldFrog" => Self::GoldFrog,
9047 "GoldGrasshopper" => Self::GoldGrasshopper,
9048 "GoldMouse" => Self::GoldMouse,
9049 "GoldWorm" => Self::GoldWorm,
9050 "StickyDynamite" => Self::StickyDynamite,
9051 "AngryTrapperBanner" => Self::AngryTrapperBanner,
9052 "ArmoredVikingBanner" => Self::ArmoredVikingBanner,
9053 "BlackSlimeBanner" => Self::BlackSlimeBanner,
9054 "BlueArmoredBonesBanner" => Self::BlueArmoredBonesBanner,
9055 "BlueCultistArcherBanner" => Self::BlueCultistArcherBanner,
9056 "BlueCultistCasterBanner" => Self::BlueCultistCasterBanner,
9057 "BlueCultistFighterBanner" => Self::BlueCultistFighterBanner,
9058 "BoneLeeBanner" => Self::BoneLeeBanner,
9059 "ClingerBanner" => Self::ClingerBanner,
9060 "CochinealBeetleBanner" => Self::CochinealBeetleBanner,
9061 "CorruptPenguinBanner" => Self::CorruptPenguinBanner,
9062 "CorruptSlimeBanner" => Self::CorruptSlimeBanner,
9063 "CorruptorBanner" => Self::CorruptorBanner,
9064 "CrimslimeBanner" => Self::CrimslimeBanner,
9065 "CursedSkullBanner" => Self::CursedSkullBanner,
9066 "CyanBeetleBanner" => Self::CyanBeetleBanner,
9067 "DevourerBanner" => Self::DevourerBanner,
9068 "DiablolistBanner" => Self::DiablolistBanner,
9069 "DoctorBonesBanner" => Self::DoctorBonesBanner,
9070 "DungeonSlimeBanner" => Self::DungeonSlimeBanner,
9071 "DungeonSpiritBanner" => Self::DungeonSpiritBanner,
9072 "ElfArcherBanner" => Self::ElfArcherBanner,
9073 "ElfCopterBanner" => Self::ElfCopterBanner,
9074 "EyezorBanner" => Self::EyezorBanner,
9075 "FlockoBanner" => Self::FlockoBanner,
9076 "GhostBanner" => Self::GhostBanner,
9077 "GiantBatBanner" => Self::GiantBatBanner,
9078 "GiantCursedSkullBanner" => Self::GiantCursedSkullBanner,
9079 "GiantFlyingFoxBanner" => Self::GiantFlyingFoxBanner,
9080 "GingerbreadManBanner" => Self::GingerbreadManBanner,
9081 "GoblinArcherBanner" => Self::GoblinArcherBanner,
9082 "GreenSlimeBanner" => Self::GreenSlimeBanner,
9083 "HeadlessHorsemanBanner" => Self::HeadlessHorsemanBanner,
9084 "HellArmoredBonesBanner" => Self::HellArmoredBonesBanner,
9085 "HellhoundBanner" => Self::HellhoundBanner,
9086 "HoppinJackBanner" => Self::HoppinJackBanner,
9087 "IceBatBanner" => Self::IceBatBanner,
9088 "IceGolemBanner" => Self::IceGolemBanner,
9089 "IceSlimeBanner" => Self::IceSlimeBanner,
9090 "IchorStickerBanner" => Self::IchorStickerBanner,
9091 "IlluminantBatBanner" => Self::IlluminantBatBanner,
9092 "IlluminantSlimeBanner" => Self::IlluminantSlimeBanner,
9093 "JungleBatBanner" => Self::JungleBatBanner,
9094 "JungleSlimeBanner" => Self::JungleSlimeBanner,
9095 "KrampusBanner" => Self::KrampusBanner,
9096 "LacBeetleBanner" => Self::LacBeetleBanner,
9097 "LavaBatBanner" => Self::LavaBatBanner,
9098 "LavaSlimeBanner" => Self::LavaSlimeBanner,
9099 "MartianBrainscramblerBanner" => Self::MartianBrainscramblerBanner,
9100 "MartianDroneBanner" => Self::MartianDroneBanner,
9101 "MartianEngineerBanner" => Self::MartianEngineerBanner,
9102 "MartianGigazapperBanner" => Self::MartianGigazapperBanner,
9103 "MartianGreyGruntBanner" => Self::MartianGreyGruntBanner,
9104 "MartianOfficerBanner" => Self::MartianOfficerBanner,
9105 "MartianRaygunnerBanner" => Self::MartianRaygunnerBanner,
9106 "MartianScutlixGunnerBanner" => Self::MartianScutlixGunnerBanner,
9107 "MartianTeslaTurretBanner" => Self::MartianTeslaTurretBanner,
9108 "MisterStabbyBanner" => Self::MisterStabbyBanner,
9109 "MotherSlimeBanner" => Self::MotherSlimeBanner,
9110 "NecromancerBanner" => Self::NecromancerBanner,
9111 "NutcrackerBanner" => Self::NutcrackerBanner,
9112 "PaladinBanner" => Self::PaladinBanner,
9113 "PenguinBanner" => Self::PenguinBanner,
9114 "PinkyBanner" => Self::PinkyBanner,
9115 "PoltergeistBanner" => Self::PoltergeistBanner,
9116 "PossessedArmorBanner" => Self::PossessedArmorBanner,
9117 "PresentMimicBanner" => Self::PresentMimicBanner,
9118 "PurpleSlimeBanner" => Self::PurpleSlimeBanner,
9119 "RaggedCasterBanner" => Self::RaggedCasterBanner,
9120 "RainbowSlimeBanner" => Self::RainbowSlimeBanner,
9121 "RavenBanner" => Self::RavenBanner,
9122 "RedSlimeBanner" => Self::RedSlimeBanner,
9123 "RuneWizardBanner" => Self::RuneWizardBanner,
9124 "RustyArmoredBonesBanner" => Self::RustyArmoredBonesBanner,
9125 "ScarecrowBanner" => Self::ScarecrowBanner,
9126 "ScutlixBanner" => Self::ScutlixBanner,
9127 "SkeletonArcherBanner" => Self::SkeletonArcherBanner,
9128 "SkeletonCommandoBanner" => Self::SkeletonCommandoBanner,
9129 "SkeletonSniperBanner" => Self::SkeletonSniperBanner,
9130 "SlimerBanner" => Self::SlimerBanner,
9131 "SnatcherBanner" => Self::SnatcherBanner,
9132 "SnowBallaBanner" => Self::SnowBallaBanner,
9133 "SnowmanGangstaBanner" => Self::SnowmanGangstaBanner,
9134 "SpikedIceSlimeBanner" => Self::SpikedIceSlimeBanner,
9135 "SpikedJungleSlimeBanner" => Self::SpikedJungleSlimeBanner,
9136 "SplinterlingBanner" => Self::SplinterlingBanner,
9137 "SquidBanner" => Self::SquidBanner,
9138 "TacticalSkeletonBanner" => Self::TacticalSkeletonBanner,
9139 "TheGroomBanner" => Self::TheGroomBanner,
9140 "TimBanner" => Self::TimBanner,
9141 "UndeadMinerBanner" => Self::UndeadMinerBanner,
9142 "UndeadVikingBanner" => Self::UndeadVikingBanner,
9143 "WhiteCultistArcherBanner" => Self::WhiteCultistArcherBanner,
9144 "WhiteCultistCasterBanner" => Self::WhiteCultistCasterBanner,
9145 "WhiteCultistFighterBanner" => Self::WhiteCultistFighterBanner,
9146 "YellowSlimeBanner" => Self::YellowSlimeBanner,
9147 "YetiBanner" => Self::YetiBanner,
9148 "ZombieElfBanner" => Self::ZombieElfBanner,
9149 "SparkyPainting" => Self::SparkyPainting,
9150 "VineRope" => Self::VineRope,
9151 "WormholePotion" => Self::WormholePotion,
9152 "SummonerEmblem" => Self::SummonerEmblem,
9153 "BewitchingTable" => Self::BewitchingTable,
9154 "AlchemyTable" => Self::AlchemyTable,
9155 "StrangeBrew" => Self::StrangeBrew,
9156 "SpelunkerGlowstick" => Self::SpelunkerGlowstick,
9157 "BoneArrow" => Self::BoneArrow,
9158 "BoneTorch" => Self::BoneTorch,
9159 "VineRopeCoil" => Self::VineRopeCoil,
9160 "SoulDrain" => Self::SoulDrain,
9161 "DartPistol" => Self::DartPistol,
9162 "DartRifle" => Self::DartRifle,
9163 "CrystalDart" => Self::CrystalDart,
9164 "CursedDart" => Self::CursedDart,
9165 "IchorDart" => Self::IchorDart,
9166 "ChainGuillotines" => Self::ChainGuillotines,
9167 "FetidBaghnakhs" => Self::FetidBaghnakhs,
9168 "ClingerStaff" => Self::ClingerStaff,
9169 "PutridScent" => Self::PutridScent,
9170 "FleshKnuckles" => Self::FleshKnuckles,
9171 "FlowerBoots" => Self::FlowerBoots,
9172 "Seedler" => Self::Seedler,
9173 "HellwingBow" => Self::HellwingBow,
9174 "TendonHook" => Self::TendonHook,
9175 "ThornHook" => Self::ThornHook,
9176 "IlluminantHook" => Self::IlluminantHook,
9177 "WormHook" => Self::WormHook,
9178 "DevDye" => Self::DevDye,
9179 "PurpleOozeDye" => Self::PurpleOozeDye,
9180 "ReflectiveSilverDye" => Self::ReflectiveSilverDye,
9181 "ReflectiveGoldDye" => Self::ReflectiveGoldDye,
9182 "BlueAcidDye" => Self::BlueAcidDye,
9183 "DaedalusStormbow" => Self::DaedalusStormbow,
9184 "FlyingKnife" => Self::FlyingKnife,
9185 "BottomlessBucket" => Self::BottomlessBucket,
9186 "SuperAbsorbantSponge" => Self::SuperAbsorbantSponge,
9187 "GoldRing" => Self::GoldRing,
9188 "CoinRing" => Self::CoinRing,
9189 "GreedyRing" => Self::GreedyRing,
9190 "FishFinder" => Self::FishFinder,
9191 "WeatherRadio" => Self::WeatherRadio,
9192 "HadesDye" => Self::HadesDye,
9193 "TwilightDye" => Self::TwilightDye,
9194 "AcidDye" => Self::AcidDye,
9195 "MushroomDye" => Self::MushroomDye,
9196 "PhaseDye" => Self::PhaseDye,
9197 "MagicLantern" => Self::MagicLantern,
9198 "MusicBoxLunarBoss" => Self::MusicBoxLunarBoss,
9199 "RainbowTorch" => Self::RainbowTorch,
9200 "CursedCampfire" => Self::CursedCampfire,
9201 "DemonCampfire" => Self::DemonCampfire,
9202 "FrozenCampfire" => Self::FrozenCampfire,
9203 "IchorCampfire" => Self::IchorCampfire,
9204 "RainbowCampfire" => Self::RainbowCampfire,
9205 "CrystalVileShard" => Self::CrystalVileShard,
9206 "ShadowFlameBow" => Self::ShadowFlameBow,
9207 "ShadowFlameHexDoll" => Self::ShadowFlameHexDoll,
9208 "ShadowFlameKnife" => Self::ShadowFlameKnife,
9209 "PaintingAcorns" => Self::PaintingAcorns,
9210 "PaintingColdSnap" => Self::PaintingColdSnap,
9211 "PaintingCursedSaint" => Self::PaintingCursedSaint,
9212 "PaintingSnowfellas" => Self::PaintingSnowfellas,
9213 "PaintingTheSeason" => Self::PaintingTheSeason,
9214 "BoneRattle" => Self::BoneRattle,
9215 "ArchitectGizmoPack" => Self::ArchitectGizmoPack,
9216 "CrimsonHeart" => Self::CrimsonHeart,
9217 "Meowmere" => Self::Meowmere,
9218 "Sundial" => Self::Sundial,
9219 "StarWrath" => Self::StarWrath,
9220 "MarbleBlock" => Self::MarbleBlock,
9221 "HellstoneBrickWall" => Self::HellstoneBrickWall,
9222 "CordageGuide" => Self::CordageGuide,
9223 "WandofSparking" => Self::WandOfSparking,
9224 "GoldBirdCage" => Self::GoldBirdCage,
9225 "GoldBunnyCage" => Self::GoldBunnyCage,
9226 "GoldButterflyCage" => Self::GoldButterflyCage,
9227 "GoldFrogCage" => Self::GoldFrogCage,
9228 "GoldGrasshopperCage" => Self::GoldGrasshopperCage,
9229 "GoldMouseCage" => Self::GoldMouseCage,
9230 "GoldWormCage" => Self::GoldWormCage,
9231 "SilkRope" => Self::SilkRope,
9232 "WebRope" => Self::WebRope,
9233 "SilkRopeCoil" => Self::SilkRopeCoil,
9234 "WebRopeCoil" => Self::WebRopeCoil,
9235 "Marble" => Self::Marble,
9236 "MarbleWall" => Self::MarbleWall,
9237 "MarbleBlockWall" => Self::MarbleBlockWall,
9238 "Radar" => Self::Radar,
9239 "LockBox" => Self::LockBox,
9240 "Granite" => Self::Granite,
9241 "GraniteBlock" => Self::GraniteBlock,
9242 "GraniteWall" => Self::GraniteWall,
9243 "GraniteBlockWall" => Self::GraniteBlockWall,
9244 "RoyalGel" => Self::RoyalGel,
9245 "NightKey" => Self::NightKey,
9246 "LightKey" => Self::LightKey,
9247 "HerbBag" => Self::HerbBag,
9248 "Javelin" => Self::Javelin,
9249 "TallyCounter" => Self::TallyCounter,
9250 "Sextant" => Self::Sextant,
9251 "EoCShield" => Self::EoCShield,
9252 "ButchersChainsaw" => Self::ButchersChainsaw,
9253 "Stopwatch" => Self::Stopwatch,
9254 "MeteoriteBrick" => Self::MeteoriteBrick,
9255 "MeteoriteBrickWall" => Self::MeteoriteBrickWall,
9256 "MetalDetector" => Self::MetalDetector,
9257 "EndlessQuiver" => Self::EndlessQuiver,
9258 "EndlessMusketPouch" => Self::EndlessMusketPouch,
9259 "ToxicFlask" => Self::ToxicFlask,
9260 "PsychoKnife" => Self::PsychoKnife,
9261 "NailGun" => Self::NailGun,
9262 "Nail" => Self::Nail,
9263 "NightVisionHelmet" => Self::NightVisionHelmet,
9264 "CelestialShell" => Self::CelestialShell,
9265 "PinkGel" => Self::PinkGel,
9266 "BouncyGlowstick" => Self::BouncyGlowstick,
9267 "PinkSlimeBlock" => Self::PinkSlimeBlock,
9268 "PinkTorch" => Self::PinkTorch,
9269 "BouncyBomb" => Self::BouncyBomb,
9270 "BouncyGrenade" => Self::BouncyGrenade,
9271 "PeaceCandle" => Self::PeaceCandle,
9272 "LifeformAnalyzer" => Self::LifeformAnalyzer,
9273 "DPSMeter" => Self::DPSMeter,
9274 "FishermansGuide" => Self::FishermansGuide,
9275 "GoblinTech" => Self::GoblinTech,
9276 "REK" => Self::Rek,
9277 "PDA" => Self::Pda,
9278 "CellPhone" => Self::CellPhone,
9279 "GraniteChest" => Self::GraniteChest,
9280 "MeteoriteClock" => Self::MeteoriteClock,
9281 "MarbleClock" => Self::MarbleClock,
9282 "GraniteClock" => Self::GraniteClock,
9283 "MeteoriteDoor" => Self::MeteoriteDoor,
9284 "MarbleDoor" => Self::MarbleDoor,
9285 "GraniteDoor" => Self::GraniteDoor,
9286 "MeteoriteDresser" => Self::MeteoriteDresser,
9287 "MarbleDresser" => Self::MarbleDresser,
9288 "GraniteDresser" => Self::GraniteDresser,
9289 "MeteoriteLamp" => Self::MeteoriteLamp,
9290 "MarbleLamp" => Self::MarbleLamp,
9291 "GraniteLamp" => Self::GraniteLamp,
9292 "MeteoriteLantern" => Self::MeteoriteLantern,
9293 "MarbleLantern" => Self::MarbleLantern,
9294 "GraniteLantern" => Self::GraniteLantern,
9295 "MeteoritePiano" => Self::MeteoritePiano,
9296 "MarblePiano" => Self::MarblePiano,
9297 "GranitePiano" => Self::GranitePiano,
9298 "MeteoritePlatform" => Self::MeteoritePlatform,
9299 "MarblePlatform" => Self::MarblePlatform,
9300 "GranitePlatform" => Self::GranitePlatform,
9301 "MeteoriteSink" => Self::MeteoriteSink,
9302 "MarbleSink" => Self::MarbleSink,
9303 "GraniteSink" => Self::GraniteSink,
9304 "MeteoriteSofa" => Self::MeteoriteSofa,
9305 "MarbleSofa" => Self::MarbleSofa,
9306 "GraniteSofa" => Self::GraniteSofa,
9307 "MeteoriteTable" => Self::MeteoriteTable,
9308 "MarbleTable" => Self::MarbleTable,
9309 "GraniteTable" => Self::GraniteTable,
9310 "MeteoriteWorkBench" => Self::MeteoriteWorkBench,
9311 "MarbleWorkBench" => Self::MarbleWorkBench,
9312 "GraniteWorkBench" => Self::GraniteWorkBench,
9313 "MeteoriteBathtub" => Self::MeteoriteBathtub,
9314 "MarbleBathtub" => Self::MarbleBathtub,
9315 "GraniteBathtub" => Self::GraniteBathtub,
9316 "MeteoriteBed" => Self::MeteoriteBed,
9317 "MarbleBed" => Self::MarbleBed,
9318 "GraniteBed" => Self::GraniteBed,
9319 "MeteoriteBookcase" => Self::MeteoriteBookcase,
9320 "MarbleBookcase" => Self::MarbleBookcase,
9321 "GraniteBookcase" => Self::GraniteBookcase,
9322 "MeteoriteCandelabra" => Self::MeteoriteCandelabra,
9323 "MarbleCandelabra" => Self::MarbleCandelabra,
9324 "GraniteCandelabra" => Self::GraniteCandelabra,
9325 "MeteoriteCandle" => Self::MeteoriteCandle,
9326 "MarbleCandle" => Self::MarbleCandle,
9327 "GraniteCandle" => Self::GraniteCandle,
9328 "MeteoriteChair" => Self::MeteoriteChair,
9329 "MarbleChair" => Self::MarbleChair,
9330 "GraniteChair" => Self::GraniteChair,
9331 "MeteoriteChandelier" => Self::MeteoriteChandelier,
9332 "MarbleChandelier" => Self::MarbleChandelier,
9333 "GraniteChandelier" => Self::GraniteChandelier,
9334 "MeteoriteChest" => Self::MeteoriteChest,
9335 "MarbleChest" => Self::MarbleChest,
9336 "MagicWaterDropper" => Self::MagicWaterDropper,
9337 "GoldenBugNet" => Self::GoldenBugNet,
9338 "MagicLavaDropper" => Self::MagicLavaDropper,
9339 "MagicHoneyDropper" => Self::MagicHoneyDropper,
9340 "EmptyDropper" => Self::EmptyDropper,
9341 "GladiatorHelmet" => Self::GladiatorHelmet,
9342 "GladiatorBreastplate" => Self::GladiatorBreastplate,
9343 "GladiatorLeggings" => Self::GladiatorLeggings,
9344 "ReflectiveDye" => Self::ReflectiveDye,
9345 "EnchantedNightcrawler" => Self::EnchantedNightcrawler,
9346 "Grubby" => Self::Grubby,
9347 "Sluggy" => Self::Sluggy,
9348 "Buggy" => Self::Buggy,
9349 "GrubSoup" => Self::GrubSoup,
9350 "BombFish" => Self::BombFish,
9351 "FrostDaggerfish" => Self::FrostDaggerfish,
9352 "SharpeningStation" => Self::SharpeningStation,
9353 "IceMirror" => Self::IceMirror,
9354 "SailfishBoots" => Self::SailfishBoots,
9355 "TsunamiInABottle" => Self::TsunamiInABottle,
9356 "TargetDummy" => Self::TargetDummy,
9357 "CorruptFishingCrate" => Self::CorruptFishingCrate,
9358 "CrimsonFishingCrate" => Self::CrimsonFishingCrate,
9359 "DungeonFishingCrate" => Self::DungeonFishingCrate,
9360 "FloatingIslandFishingCrate" => Self::FloatingIslandFishingCrate,
9361 "HallowedFishingCrate" => Self::HallowedFishingCrate,
9362 "JungleFishingCrate" => Self::JungleFishingCrate,
9363 "CrystalSerpent" => Self::CrystalSerpent,
9364 "Toxikarp" => Self::Toxikarp,
9365 "Bladetongue" => Self::Bladetongue,
9366 "SharkToothNecklace" => Self::SharkToothNecklace,
9367 "MoneyTrough" => Self::MoneyTrough,
9368 "Bubble" => Self::Bubble,
9369 "DayBloomPlanterBox" => Self::DayBloomPlanterBox,
9370 "MoonglowPlanterBox" => Self::MoonglowPlanterBox,
9371 "CorruptPlanterBox" => Self::CorruptPlanterBox,
9372 "CrimsonPlanterBox" => Self::CrimsonPlanterBox,
9373 "BlinkrootPlanterBox" => Self::BlinkrootPlanterBox,
9374 "WaterleafPlanterBox" => Self::WaterleafPlanterBox,
9375 "ShiverthornPlanterBox" => Self::ShiverthornPlanterBox,
9376 "FireBlossomPlanterBox" => Self::FireBlossomPlanterBox,
9377 "BrainOfConfusion" => Self::BrainOfConfusion,
9378 "WormScarf" => Self::WormScarf,
9379 "BalloonPufferfish" => Self::BalloonPufferfish,
9380 "BejeweledValkyrieHead" => Self::BejeweledValkyrieHead,
9381 "BejeweledValkyrieBody" => Self::BejeweledValkyrieBody,
9382 "BejeweledValkyrieWing" => Self::BejeweledValkyrieWing,
9383 "RichGravestone1" => Self::RichGravestone1,
9384 "RichGravestone2" => Self::RichGravestone2,
9385 "RichGravestone3" => Self::RichGravestone3,
9386 "RichGravestone4" => Self::RichGravestone4,
9387 "RichGravestone5" => Self::RichGravestone5,
9388 "CrystalBlock" => Self::CrystalBlock,
9389 "MusicBoxMartians" => Self::MusicBoxMartians,
9390 "MusicBoxPirates" => Self::MusicBoxPirates,
9391 "MusicBoxHell" => Self::MusicBoxHell,
9392 "CrystalBlockWall" => Self::CrystalBlockWall,
9393 "Trapdoor" => Self::Trapdoor,
9394 "TallGate" => Self::TallGate,
9395 "SharkronBalloon" => Self::SharkronBalloon,
9396 "TaxCollectorHat" => Self::TaxCollectorHat,
9397 "TaxCollectorSuit" => Self::TaxCollectorSuit,
9398 "TaxCollectorPants" => Self::TaxCollectorPants,
9399 "BoneGlove" => Self::BoneGlove,
9400 "ClothierJacket" => Self::ClothierJacket,
9401 "ClothierPants" => Self::ClothierPants,
9402 "DyeTraderTurban" => Self::DyeTraderTurban,
9403 "DeadlySphereStaff" => Self::DeadlySphereStaff,
9404 "BalloonHorseshoeFart" => Self::BalloonHorseshoeFart,
9405 "BalloonHorseshoeHoney" => Self::BalloonHorseshoeHoney,
9406 "BalloonHorseshoeSharkron" => Self::BalloonHorseshoeSharkron,
9407 "LavaLamp" => Self::LavaLamp,
9408 "CageEnchantedNightcrawler" => Self::CageEnchantedNightcrawler,
9409 "CageBuggy" => Self::CageBuggy,
9410 "CageGrubby" => Self::CageGrubby,
9411 "CageSluggy" => Self::CageSluggy,
9412 "SlapHand" => Self::SlapHand,
9413 "TwilightHairDye" => Self::TwilightHairDye,
9414 "BlessedApple" => Self::BlessedApple,
9415 "SpectreBar" => Self::SpectreBar,
9416 "Code1" => Self::Code1,
9417 "BuccaneerBandana" => Self::BuccaneerBandana,
9418 "BuccaneerShirt" => Self::BuccaneerShirt,
9419 "BuccaneerPants" => Self::BuccaneerPants,
9420 "ObsidianHelm" => Self::ObsidianHelm,
9421 "ObsidianShirt" => Self::ObsidianShirt,
9422 "ObsidianPants" => Self::ObsidianPants,
9423 "MedusaHead" => Self::MedusaHead,
9424 "ItemFrame" => Self::ItemFrame,
9425 "Sandstone" => Self::Sandstone,
9426 "HardenedSand" => Self::HardenedSand,
9427 "SandstoneWall" => Self::SandstoneWall,
9428 "CorruptHardenedSand" => Self::CorruptHardenedSand,
9429 "CrimsonHardenedSand" => Self::CrimsonHardenedSand,
9430 "CorruptSandstone" => Self::CorruptSandstone,
9431 "CrimsonSandstone" => Self::CrimsonSandstone,
9432 "WoodYoyo" => Self::WoodYoyo,
9433 "CorruptYoyo" => Self::CorruptYoyo,
9434 "CrimsonYoyo" => Self::CrimsonYoyo,
9435 "JungleYoyo" => Self::JungleYoyo,
9436 "Cascade" => Self::Cascade,
9437 "Chik" => Self::Chik,
9438 "Code2" => Self::Code2,
9439 "Rally" => Self::Rally,
9440 "Yelets" => Self::Yelets,
9441 "RedsYoyo" => Self::RedsYoyo,
9442 "ValkyrieYoyo" => Self::ValkyrieYoyo,
9443 "Amarok" => Self::Amarok,
9444 "HelFire" => Self::HelFire,
9445 "Kraken" => Self::Kraken,
9446 "TheEyeOfCthulhu" => Self::TheEyeOfCthulhu,
9447 "RedString" => Self::RedString,
9448 "OrangeString" => Self::OrangeString,
9449 "YellowString" => Self::YellowString,
9450 "LimeString" => Self::LimeString,
9451 "GreenString" => Self::GreenString,
9452 "TealString" => Self::TealString,
9453 "CyanString" => Self::CyanString,
9454 "SkyBlueString" => Self::SkyBlueString,
9455 "BlueString" => Self::BlueString,
9456 "PurpleString" => Self::PurpleString,
9457 "VioletString" => Self::VioletString,
9458 "PinkString" => Self::PinkString,
9459 "BrownString" => Self::BrownString,
9460 "WhiteString" => Self::WhiteString,
9461 "RainbowString" => Self::RainbowString,
9462 "BlackString" => Self::BlackString,
9463 "BlackCounterweight" => Self::BlackCounterweight,
9464 "BlueCounterweight" => Self::BlueCounterweight,
9465 "GreenCounterweight" => Self::GreenCounterweight,
9466 "PurpleCounterweight" => Self::PurpleCounterweight,
9467 "RedCounterweight" => Self::RedCounterweight,
9468 "YellowCounterweight" => Self::YellowCounterweight,
9469 "FormatC" => Self::FormatC,
9470 "Gradient" => Self::Gradient,
9471 "Valor" => Self::Valor,
9472 "KingSlimeBossBag" => Self::KingSlimeBossBag,
9473 "EyeOfCthulhuBossBag" => Self::EyeOfCthulhuBossBag,
9474 "EaterOfWorldsBossBag" => Self::EaterOfWorldsBossBag,
9475 "BrainOfCthulhuBossBag" => Self::BrainOfCthulhuBossBag,
9476 "QueenBeeBossBag" => Self::QueenBeeBossBag,
9477 "SkeletronBossBag" => Self::SkeletronBossBag,
9478 "WallOfFleshBossBag" => Self::WallOfFleshBossBag,
9479 "DestroyerBossBag" => Self::DestroyerBossBag,
9480 "TwinsBossBag" => Self::TwinsBossBag,
9481 "SkeletronPrimeBossBag" => Self::SkeletronPrimeBossBag,
9482 "PlanteraBossBag" => Self::PlanteraBossBag,
9483 "GolemBossBag" => Self::GolemBossBag,
9484 "FishronBossBag" => Self::FishronBossBag,
9485 "CultistBossBag" => Self::CultistBossBag,
9486 "MoonLordBossBag" => Self::MoonLordBossBag,
9487 "HiveBackpack" => Self::HiveBackpack,
9488 "YoYoGlove" => Self::YoYoGlove,
9489 "DemonHeart" => Self::DemonHeart,
9490 "SporeSac" => Self::SporeSac,
9491 "ShinyStone" => Self::ShinyStone,
9492 "HallowHardenedSand" => Self::HallowHardenedSand,
9493 "HallowSandstone" => Self::HallowSandstone,
9494 "HardenedSandWall" => Self::HardenedSandWall,
9495 "CorruptHardenedSandWall" => Self::CorruptHardenedSandWall,
9496 "CrimsonHardenedSandWall" => Self::CrimsonHardenedSandWall,
9497 "HallowHardenedSandWall" => Self::HallowHardenedSandWall,
9498 "CorruptSandstoneWall" => Self::CorruptSandstoneWall,
9499 "CrimsonSandstoneWall" => Self::CrimsonSandstoneWall,
9500 "HallowSandstoneWall" => Self::HallowSandstoneWall,
9501 "DesertFossil" => Self::DesertFossil,
9502 "DesertFossilWall" => Self::DesertFossilWall,
9503 "DyeTradersScimitar" => Self::DyeTradersScimitar,
9504 "PainterPaintballGun" => Self::PainterPaintballGun,
9505 "TaxCollectorsStickOfDoom" => Self::TaxCollectorsStickOfDoom,
9506 "StylistKilLaKillScissorsIWish" => Self::StylistKilLaKillScissorsIWish,
9507 "MinecartMech" => Self::MinecartMech,
9508 "MechanicalWheelPiece" => Self::MechanicalWheelPiece,
9509 "MechanicalWagonPiece" => Self::MechanicalWagonPiece,
9510 "MechanicalBatteryPiece" => Self::MechanicalBatteryPiece,
9511 "AncientCultistTrophy" => Self::AncientCultistTrophy,
9512 "MartianSaucerTrophy" => Self::MartianSaucerTrophy,
9513 "FlyingDutchmanTrophy" => Self::FlyingDutchmanTrophy,
9514 "LivingMahoganyWand" => Self::LivingMahoganyWand,
9515 "LivingMahoganyLeafWand" => Self::LivingMahoganyLeafWand,
9516 "FallenTuxedoShirt" => Self::FallenTuxedoShirt,
9517 "FallenTuxedoPants" => Self::FallenTuxedoPants,
9518 "Fireplace" => Self::Fireplace,
9519 "Chimney" => Self::Chimney,
9520 "YoyoBag" => Self::YoyoBag,
9521 "ShrimpyTruffle" => Self::ShrimpyTruffle,
9522 "Arkhalis" => Self::Arkhalis,
9523 "ConfettiCannon" => Self::ConfettiCannon,
9524 "MusicBoxTowers" => Self::MusicBoxTowers,
9525 "MusicBoxGoblins" => Self::MusicBoxGoblins,
9526 "BossMaskCultist" => Self::BossMaskCultist,
9527 "BossMaskMoonlord" => Self::BossMaskMoonlord,
9528 "FossilHelm" => Self::FossilHelm,
9529 "FossilShirt" => Self::FossilShirt,
9530 "FossilPants" => Self::FossilPants,
9531 "AmberStaff" => Self::AmberStaff,
9532 "BoneJavelin" => Self::BoneJavelin,
9533 "BoneDagger" => Self::BoneDagger,
9534 "FossilOre" => Self::FossilOre,
9535 "StardustHelmet" => Self::StardustHelmet,
9536 "StardustBreastplate" => Self::StardustBreastplate,
9537 "StardustLeggings" => Self::StardustLeggings,
9538 "PortalGun" => Self::PortalGun,
9539 "StrangePlant1" => Self::StrangePlant1,
9540 "StrangePlant2" => Self::StrangePlant2,
9541 "StrangePlant3" => Self::StrangePlant3,
9542 "StrangePlant4" => Self::StrangePlant4,
9543 "Terrarian" => Self::Terrarian,
9544 "GoblinSummonerBanner" => Self::GoblinSummonerBanner,
9545 "SalamanderBanner" => Self::SalamanderBanner,
9546 "GiantShellyBanner" => Self::GiantShellyBanner,
9547 "CrawdadBanner" => Self::CrawdadBanner,
9548 "FritzBanner" => Self::FritzBanner,
9549 "CreatureFromTheDeepBanner" => Self::CreatureFromTheDeepBanner,
9550 "DrManFlyBanner" => Self::DrManFlyBanner,
9551 "MothronBanner" => Self::MothronBanner,
9552 "SeveredHandBanner" => Self::SeveredHandBanner,
9553 "ThePossessedBanner" => Self::ThePossessedBanner,
9554 "ButcherBanner" => Self::ButcherBanner,
9555 "PsychoBanner" => Self::PsychoBanner,
9556 "DeadlySphereBanner" => Self::DeadlySphereBanner,
9557 "NailheadBanner" => Self::NailheadBanner,
9558 "PoisonousSporeBanner" => Self::PoisonousSporeBanner,
9559 "MedusaBanner" => Self::MedusaBanner,
9560 "GreekSkeletonBanner" => Self::GreekSkeletonBanner,
9561 "GraniteFlyerBanner" => Self::GraniteFlyerBanner,
9562 "GraniteGolemBanner" => Self::GraniteGolemBanner,
9563 "BloodZombieBanner" => Self::BloodZombieBanner,
9564 "DripplerBanner" => Self::DripplerBanner,
9565 "TombCrawlerBanner" => Self::TombCrawlerBanner,
9566 "DuneSplicerBanner" => Self::DuneSplicerBanner,
9567 "FlyingAntlionBanner" => Self::FlyingAntlionBanner,
9568 "WalkingAntlionBanner" => Self::WalkingAntlionBanner,
9569 "DesertGhoulBanner" => Self::DesertGhoulBanner,
9570 "DesertLamiaBanner" => Self::DesertLamiaBanner,
9571 "DesertDjinnBanner" => Self::DesertDjinnBanner,
9572 "DesertBasiliskBanner" => Self::DesertBasiliskBanner,
9573 "RavagerScorpionBanner" => Self::RavagerScorpionBanner,
9574 "StardustSoldierBanner" => Self::StardustSoldierBanner,
9575 "StardustWormBanner" => Self::StardustWormBanner,
9576 "StardustJellyfishBanner" => Self::StardustJellyfishBanner,
9577 "StardustSpiderBanner" => Self::StardustSpiderBanner,
9578 "StardustSmallCellBanner" => Self::StardustSmallCellBanner,
9579 "StardustLargeCellBanner" => Self::StardustLargeCellBanner,
9580 "SolarCoriteBanner" => Self::SolarCoriteBanner,
9581 "SolarSrollerBanner" => Self::SolarSrollerBanner,
9582 "SolarCrawltipedeBanner" => Self::SolarCrawltipedeBanner,
9583 "SolarDrakomireRiderBanner" => Self::SolarDrakomireRiderBanner,
9584 "SolarDrakomireBanner" => Self::SolarDrakomireBanner,
9585 "SolarSolenianBanner" => Self::SolarSelenianBanner,
9586 "NebulaSoldierBanner" => Self::NebulaSoldierBanner,
9587 "NebulaHeadcrabBanner" => Self::NebulaHeadcrabBanner,
9588 "NebulaBrainBanner" => Self::NebulaBrainBanner,
9589 "NebulaBeastBanner" => Self::NebulaBeastBanner,
9590 "VortexLarvaBanner" => Self::VortexLarvaBanner,
9591 "VortexHornetQueenBanner" => Self::VortexHornetQueenBanner,
9592 "VortexHornetBanner" => Self::VortexHornetBanner,
9593 "VortexSoldierBanner" => Self::VortexSoldierBanner,
9594 "VortexRiflemanBanner" => Self::VortexRiflemanBanner,
9595 "PirateCaptainBanner" => Self::PirateCaptainBanner,
9596 "PirateDeadeyeBanner" => Self::PirateDeadeyeBanner,
9597 "PirateCorsairBanner" => Self::PirateCorsairBanner,
9598 "PirateCrossbowerBanner" => Self::PirateCrossbowerBanner,
9599 "MartianWalkerBanner" => Self::MartianWalkerBanner,
9600 "RedDevilBanner" => Self::RedDevilBanner,
9601 "PinkJellyfishBanner" => Self::PinkJellyfishBanner,
9602 "GreenJellyfishBanner" => Self::GreenJellyfishBanner,
9603 "DarkMummyBanner" => Self::DarkMummyBanner,
9604 "LightMummyBanner" => Self::LightMummyBanner,
9605 "AngryBonesBanner" => Self::AngryBonesBanner,
9606 "IceTortoiseBanner" => Self::IceTortoiseBanner,
9607 "NebulaPickup1" => Self::NebulaPickup1,
9608 "NebulaPickup2" => Self::NebulaPickup2,
9609 "NebulaPickup3" => Self::NebulaPickup3,
9610 "FragmentVortex" => Self::FragmentVortex,
9611 "FragmentNebula" => Self::FragmentNebula,
9612 "FragmentSolar" => Self::FragmentSolar,
9613 "FragmentStardust" => Self::FragmentStardust,
9614 "LunarOre" => Self::LunarOre,
9615 "LunarBrick" => Self::LunarBrick,
9616 "StardustAxe" => Self::StardustAxe,
9617 "StardustChainsaw" => Self::StardustChainsaw,
9618 "StardustDrill" => Self::StardustDrill,
9619 "StardustHammer" => Self::StardustHammer,
9620 "StardustPickaxe" => Self::StardustPickaxe,
9621 "LunarBar" => Self::LunarBar,
9622 "WingsSolar" => Self::WingsSolar,
9623 "WingsVortex" => Self::WingsVortex,
9624 "WingsNebula" => Self::WingsNebula,
9625 "WingsStardust" => Self::WingsStardust,
9626 "LunarBrickWall" => Self::LunarBrickWall,
9627 "SolarEruption" => Self::SolarEruption,
9628 "StardustCellStaff" => Self::StardustCellStaff,
9629 "VortexBeater" => Self::VortexBeater,
9630 "NebulaArcanum" => Self::NebulaArcanum,
9631 "BloodWater" => Self::BloodWater,
9632 "TheBrideHat" => Self::TheBrideHat,
9633 "TheBrideDress" => Self::TheBrideDress,
9634 "PlatinumBow" => Self::PlatinumBow,
9635 "PlatinumHammer" => Self::PlatinumHammer,
9636 "PlatinumAxe" => Self::PlatinumAxe,
9637 "PlatinumShortsword" => Self::PlatinumShortsword,
9638 "PlatinumBroadsword" => Self::PlatinumBroadsword,
9639 "PlatinumPickaxe" => Self::PlatinumPickaxe,
9640 "TungstenBow" => Self::TungstenBow,
9641 "TungstenHammer" => Self::TungstenHammer,
9642 "TungstenAxe" => Self::TungstenAxe,
9643 "TungstenShortsword" => Self::TungstenShortsword,
9644 "TungstenBroadsword" => Self::TungstenBroadsword,
9645 "TungstenPickaxe" => Self::TungstenPickaxe,
9646 "LeadBow" => Self::LeadBow,
9647 "LeadHammer" => Self::LeadHammer,
9648 "LeadAxe" => Self::LeadAxe,
9649 "LeadShortsword" => Self::LeadShortsword,
9650 "LeadBroadsword" => Self::LeadBroadsword,
9651 "LeadPickaxe" => Self::LeadPickaxe,
9652 "TinBow" => Self::TinBow,
9653 "TinHammer" => Self::TinHammer,
9654 "TinAxe" => Self::TinAxe,
9655 "TinShortsword" => Self::TinShortsword,
9656 "TinBroadsword" => Self::TinBroadsword,
9657 "TinPickaxe" => Self::TinPickaxe,
9658 "CopperBow" => Self::CopperBow,
9659 "CopperHammer" => Self::CopperHammer,
9660 "CopperAxe" => Self::CopperAxe,
9661 "CopperShortsword" => Self::CopperShortsword,
9662 "CopperBroadsword" => Self::CopperBroadsword,
9663 "CopperPickaxe" => Self::CopperPickaxe,
9664 "SilverBow" => Self::SilverBow,
9665 "SilverHammer" => Self::SilverHammer,
9666 "SilverAxe" => Self::SilverAxe,
9667 "SilverShortsword" => Self::SilverShortsword,
9668 "SilverBroadsword" => Self::SilverBroadsword,
9669 "SilverPickaxe" => Self::SilverPickaxe,
9670 "GoldBow" => Self::GoldBow,
9671 "GoldHammer" => Self::GoldHammer,
9672 "GoldAxe" => Self::GoldAxe,
9673 "GoldShortsword" => Self::GoldShortsword,
9674 "GoldBroadsword" => Self::GoldBroadsword,
9675 "GoldPickaxe" => Self::GoldPickaxe,
9676 "LunarHamaxeSolar" => Self::LunarHamaxeSolar,
9677 "LunarHamaxeVortex" => Self::LunarHamaxeVortex,
9678 "LunarHamaxeNebula" => Self::LunarHamaxeNebula,
9679 "LunarHamaxeStardust" => Self::LunarHamaxeStardust,
9680 "SolarDye" => Self::SolarDye,
9681 "NebulaDye" => Self::NebulaDye,
9682 "VortexDye" => Self::VortexDye,
9683 "StardustDye" => Self::StardustDye,
9684 "VoidDye" => Self::VoidDye,
9685 "StardustDragonStaff" => Self::StardustDragonStaff,
9686 "Bacon" => Self::Bacon,
9687 "ShiftingSandsDye" => Self::ShiftingSandsDye,
9688 "MirageDye" => Self::MirageDye,
9689 "ShiftingPearlSandsDye" => Self::ShiftingPearlSandsDye,
9690 "VortexMonolith" => Self::VortexMonolith,
9691 "NebulaMonolith" => Self::NebulaMonolith,
9692 "StardustMonolith" => Self::StardustMonolith,
9693 "SolarMonolith" => Self::SolarMonolith,
9694 "Phantasm" => Self::Phantasm,
9695 "LastPrism" => Self::LastPrism,
9696 "NebulaBlaze" => Self::NebulaBlaze,
9697 "DayBreak" => Self::DayBreak,
9698 "SuperHealingPotion" => Self::SuperHealingPotion,
9699 "Detonator" => Self::Detonator,
9700 "FireworksLauncher" => Self::FireworksLauncher,
9701 "BouncyDynamite" => Self::BouncyDynamite,
9702 "PartyGirlGrenade" => Self::PartyGirlGrenade,
9703 "LunarCraftingStation" => Self::LunarCraftingStation,
9704 "FlameAndSilverDye" => Self::FlameAndSilverDye,
9705 "GreenFlameAndSilverDye" => Self::GreenFlameAndSilverDye,
9706 "BlueFlameAndSilverDye" => Self::BlueFlameAndSilverDye,
9707 "ReflectiveCopperDye" => Self::ReflectiveCopperDye,
9708 "ReflectiveObsidianDye" => Self::ReflectiveObsidianDye,
9709 "ReflectiveMetalDye" => Self::ReflectiveMetalDye,
9710 "MidnightRainbowDye" => Self::MidnightRainbowDye,
9711 "BlackAndWhiteDye" => Self::BlackAndWhiteDye,
9712 "BrightSilverDye" => Self::BrightSilverDye,
9713 "SilverAndBlackDye" => Self::SilverAndBlackDye,
9714 "RedAcidDye" => Self::RedAcidDye,
9715 "GelDye" => Self::GelDye,
9716 "PinkGelDye" => Self::PinkGelDye,
9717 "SquirrelRed" => Self::SquirrelRed,
9718 "SquirrelGold" => Self::SquirrelGold,
9719 "SquirrelOrangeCage" => Self::SquirrelOrangeCage,
9720 "SquirrelGoldCage" => Self::SquirrelGoldCage,
9721 "MoonlordBullet" => Self::MoonlordBullet,
9722 "MoonlordArrow" => Self::MoonlordArrow,
9723 "MoonlordTurretStaff" => Self::MoonlordTurretStaff,
9724 "LunarFlareBook" => Self::LunarFlareBook,
9725 "RainbowCrystalStaff" => Self::RainbowCrystalStaff,
9726 "LunarHook" => Self::LunarHook,
9727 "LunarBlockSolar" => Self::LunarBlockSolar,
9728 "LunarBlockVortex" => Self::LunarBlockVortex,
9729 "LunarBlockNebula" => Self::LunarBlockNebula,
9730 "LunarBlockStardust" => Self::LunarBlockStardust,
9731 "SuspiciousLookingTentacle" => Self::SuspiciousLookingTentacle,
9732 "Yoraiz0rShirt" => Self::Yoraiz0rShirt,
9733 "Yoraiz0rPants" => Self::Yoraiz0rPants,
9734 "Yoraiz0rWings" => Self::Yoraiz0rWings,
9735 "Yoraiz0rDarkness" => Self::Yoraiz0rDarkness,
9736 "JimsWings" => Self::JimsWings,
9737 "Yoraiz0rHead" => Self::Yoraiz0rHead,
9738 "LivingLeafWall" => Self::LivingLeafWall,
9739 "SkiphsHelm" => Self::SkiphsHelm,
9740 "SkiphsShirt" => Self::SkiphsShirt,
9741 "SkiphsPants" => Self::SkiphsPants,
9742 "SkiphsWings" => Self::SkiphsWings,
9743 "LokisHelm" => Self::LokisHelm,
9744 "LokisShirt" => Self::LokisShirt,
9745 "LokisPants" => Self::LokisPants,
9746 "LokisWings" => Self::LokisWings,
9747 "SandSlimeBanner" => Self::SandSlimeBanner,
9748 "SeaSnailBanner" => Self::SeaSnailBanner,
9749 "MoonLordTrophy" => Self::MoonLordTrophy,
9750 "MoonLordPainting" => Self::MoonLordPainting,
9751 "BurningHadesDye" => Self::BurningHadesDye,
9752 "GrimDye" => Self::GrimDye,
9753 "LokisDye" => Self::LokisDye,
9754 "ShadowflameHadesDye" => Self::ShadowflameHadesDye,
9755 "CelestialSigil" => Self::CelestialSigil,
9756 "LogicGateLamp_Off" => Self::LogicGateLampOff,
9757 "LogicGate_AND" => Self::LogicGateAnd,
9758 "LogicGate_OR" => Self::LogicGateOr,
9759 "LogicGate_NAND" => Self::LogicGateNand,
9760 "LogicGate_NOR" => Self::LogicGateNor,
9761 "LogicGate_XOR" => Self::LogicGateXor,
9762 "LogicGate_NXOR" => Self::LogicGateNxor,
9763 "ConveyorBeltLeft" => Self::ConveyorBeltLeft,
9764 "ConveyorBeltRight" => Self::ConveyorBeltRight,
9765 "WireKite" => Self::WireKite,
9766 "YellowWrench" => Self::YellowWrench,
9767 "LogicSensor_Sun" => Self::LogicSensorSun,
9768 "LogicSensor_Moon" => Self::LogicSensorMoon,
9769 "LogicSensor_Above" => Self::LogicSensorAbove,
9770 "WirePipe" => Self::WirePipe,
9771 "AnnouncementBox" => Self::AnnouncementBox,
9772 "LogicGateLamp_On" => Self::LogicGateLampOn,
9773 "MechanicalLens" => Self::MechanicalLens,
9774 "ActuationRod" => Self::ActuationRod,
9775 "TeamBlockRed" => Self::TeamBlockRed,
9776 "TeamBlockRedPlatform" => Self::TeamBlockRedPlatform,
9777 "StaticHook" => Self::StaticHook,
9778 "ActuationAccessory" => Self::ActuationAccessory,
9779 "MulticolorWrench" => Self::MulticolorWrench,
9780 "WeightedPressurePlatePink" => Self::WeightedPressurePlatePink,
9781 "EngineeringHelmet" => Self::EngineeringHelmet,
9782 "CompanionCube" => Self::CompanionCube,
9783 "WireBulb" => Self::WireBulb,
9784 "WeightedPressurePlateOrange" => Self::WeightedPressurePlateOrange,
9785 "WeightedPressurePlatePurple" => Self::WeightedPressurePlatePurple,
9786 "WeightedPressurePlateCyan" => Self::WeightedPressurePlateCyan,
9787 "TeamBlockGreen" => Self::TeamBlockGreen,
9788 "TeamBlockBlue" => Self::TeamBlockBlue,
9789 "TeamBlockYellow" => Self::TeamBlockYellow,
9790 "TeamBlockPink" => Self::TeamBlockPink,
9791 "TeamBlockWhite" => Self::TeamBlockWhite,
9792 "TeamBlockGreenPlatform" => Self::TeamBlockGreenPlatform,
9793 "TeamBlockBluePlatform" => Self::TeamBlockBluePlatform,
9794 "TeamBlockYellowPlatform" => Self::TeamBlockYellowPlatform,
9795 "TeamBlockPinkPlatform" => Self::TeamBlockPinkPlatform,
9796 "TeamBlockWhitePlatform" => Self::TeamBlockWhitePlatform,
9797 "LargeAmber" => Self::LargeAmber,
9798 "GemLockRuby" => Self::GemLockRuby,
9799 "GemLockSapphire" => Self::GemLockSapphire,
9800 "GemLockEmerald" => Self::GemLockEmerald,
9801 "GemLockTopaz" => Self::GemLockTopaz,
9802 "GemLockAmethyst" => Self::GemLockAmethyst,
9803 "GemLockDiamond" => Self::GemLockDiamond,
9804 "GemLockAmber" => Self::GemLockAmber,
9805 "SquirrelStatue" => Self::SquirrelStatue,
9806 "ButterflyStatue" => Self::ButterflyStatue,
9807 "WormStatue" => Self::WormStatue,
9808 "FireflyStatue" => Self::FireflyStatue,
9809 "ScorpionStatue" => Self::ScorpionStatue,
9810 "SnailStatue" => Self::SnailStatue,
9811 "GrasshopperStatue" => Self::GrasshopperStatue,
9812 "MouseStatue" => Self::MouseStatue,
9813 "DuckStatue" => Self::DuckStatue,
9814 "PenguinStatue" => Self::PenguinStatue,
9815 "FrogStatue" => Self::FrogStatue,
9816 "BuggyStatue" => Self::BuggyStatue,
9817 "LogicGateLamp_Faulty" => Self::LogicGateLampFaulty,
9818 "PortalGunStation" => Self::PortalGunStation,
9819 "Fake_Chest" => Self::FakeChest,
9820 "Fake_GoldChest" => Self::FakeGoldChest,
9821 "Fake_ShadowChest" => Self::FakeShadowChest,
9822 "Fake_EbonwoodChest" => Self::FakeEbonwoodChest,
9823 "Fake_RichMahoganyChest" => Self::FakeRichMahoganyChest,
9824 "Fake_PearlwoodChest" => Self::FakePearlwoodChest,
9825 "Fake_IvyChest" => Self::FakeIvyChest,
9826 "Fake_IceChest" => Self::FakeIceChest,
9827 "Fake_LivingWoodChest" => Self::FakeLivingWoodChest,
9828 "Fake_SkywareChest" => Self::FakeSkywareChest,
9829 "Fake_ShadewoodChest" => Self::FakeShadewoodChest,
9830 "Fake_WebCoveredChest" => Self::FakeWebCoveredChest,
9831 "Fake_LihzahrdChest" => Self::FakeLihzahrdChest,
9832 "Fake_WaterChest" => Self::FakeWaterChest,
9833 "Fake_JungleChest" => Self::FakeJungleChest,
9834 "Fake_CorruptionChest" => Self::FakeCorruptionChest,
9835 "Fake_CrimsonChest" => Self::FakeCrimsonChest,
9836 "Fake_HallowedChest" => Self::FakeHallowedChest,
9837 "Fake_FrozenChest" => Self::FakeFrozenChest,
9838 "Fake_DynastyChest" => Self::FakeDynastyChest,
9839 "Fake_HoneyChest" => Self::FakeHoneyChest,
9840 "Fake_SteampunkChest" => Self::FakeSteampunkChest,
9841 "Fake_PalmWoodChest" => Self::FakePalmWoodChest,
9842 "Fake_MushroomChest" => Self::FakeMushroomChest,
9843 "Fake_BorealWoodChest" => Self::FakeBorealWoodChest,
9844 "Fake_SlimeChest" => Self::FakeSlimeChest,
9845 "Fake_GreenDungeonChest" => Self::FakeGreenDungeonChest,
9846 "Fake_PinkDungeonChest" => Self::FakePinkDungeonChest,
9847 "Fake_BlueDungeonChest" => Self::FakeBlueDungeonChest,
9848 "Fake_BoneChest" => Self::FakeBoneChest,
9849 "Fake_CactusChest" => Self::FakeCactusChest,
9850 "Fake_FleshChest" => Self::FakeFleshChest,
9851 "Fake_ObsidianChest" => Self::FakeObsidianChest,
9852 "Fake_PumpkinChest" => Self::FakePumpkinChest,
9853 "Fake_SpookyChest" => Self::FakeSpookyChest,
9854 "Fake_GlassChest" => Self::FakeGlassChest,
9855 "Fake_MartianChest" => Self::FakeMartianChest,
9856 "Fake_MeteoriteChest" => Self::FakeMeteoriteChest,
9857 "Fake_GraniteChest" => Self::FakeGraniteChest,
9858 "Fake_MarbleChest" => Self::FakeMarbleChest,
9859 "Fake_newchest1" => Self::FakeNewChest1,
9860 "Fake_newchest2" => Self::FakeNewChest2,
9861 "ProjectilePressurePad" => Self::ProjectilePressurePad,
9862 "WallCreeperStatue" => Self::WallCreeperStatue,
9863 "UnicornStatue" => Self::UnicornStatue,
9864 "DripplerStatue" => Self::DripplerStatue,
9865 "WraithStatue" => Self::WraithStatue,
9866 "BoneSkeletonStatue" => Self::BoneSkeletonStatue,
9867 "UndeadVikingStatue" => Self::UndeadVikingStatue,
9868 "MedusaStatue" => Self::MedusaStatue,
9869 "HarpyStatue" => Self::HarpyStatue,
9870 "PigronStatue" => Self::PigronStatue,
9871 "HopliteStatue" => Self::HopliteStatue,
9872 "GraniteGolemStatue" => Self::GraniteGolemStatue,
9873 "ZombieArmStatue" => Self::ZombieArmStatue,
9874 "BloodZombieStatue" => Self::BloodZombieStatue,
9875 "AnglerTackleBag" => Self::AnglerTackleBag,
9876 "GeyserTrap" => Self::GeyserTrap,
9877 "UltraBrightCampfire" => Self::UltraBrightCampfire,
9878 "BoneCampfire" => Self::BoneCampfire,
9879 "PixelBox" => Self::PixelBox,
9880 "LogicSensor_Water" => Self::LogicSensorWater,
9881 "LogicSensor_Lava" => Self::LogicSensorLava,
9882 "LogicSensor_Honey" => Self::LogicSensorHoney,
9883 "LogicSensor_Liquid" => Self::LogicSensorLiquid,
9884 "PartyBundleOfBalloonsAccessory" => Self::PartyBundleOfBalloonsAccessory,
9885 "PartyBalloonAnimal" => Self::PartyBalloonAnimal,
9886 "PartyHat" => Self::PartyHat,
9887 "FlowerBoyHat" => Self::FlowerBoyHat,
9888 "FlowerBoyShirt" => Self::FlowerBoyShirt,
9889 "FlowerBoyPants" => Self::FlowerBoyPants,
9890 "SillyBalloonPink" => Self::SillyBalloonPink,
9891 "SillyBalloonPurple" => Self::SillyBalloonPurple,
9892 "SillyBalloonGreen" => Self::SillyBalloonGreen,
9893 "SillyStreamerBlue" => Self::SillyStreamerBlue,
9894 "SillyStreamerGreen" => Self::SillyStreamerGreen,
9895 "SillyStreamerPink" => Self::SillyStreamerPink,
9896 "SillyBalloonMachine" => Self::SillyBalloonMachine,
9897 "SillyBalloonTiedPink" => Self::SillyBalloonTiedPink,
9898 "SillyBalloonTiedPurple" => Self::SillyBalloonTiedPurple,
9899 "SillyBalloonTiedGreen" => Self::SillyBalloonTiedGreen,
9900 "Pigronata" => Self::Pigronata,
9901 "PartyMonolith" => Self::PartyMonolith,
9902 "PartyBundleOfBalloonTile" => Self::PartyBundleOfBalloonTile,
9903 "PartyPresent" => Self::PartyPresent,
9904 "SliceOfCake" => Self::SliceOfCake,
9905 "CogWall" => Self::CogWall,
9906 "SandFallWall" => Self::SandFallWall,
9907 "SnowFallWall" => Self::SnowFallWall,
9908 "SandFallBlock" => Self::SandFallBlock,
9909 "SnowFallBlock" => Self::SnowFallBlock,
9910 "SnowCloudBlock" => Self::SnowCloudBlock,
9911 "PedguinHat" => Self::PedguinHat,
9912 "PedguinShirt" => Self::PedguinShirt,
9913 "PedguinPants" => Self::PedguinPants,
9914 "SillyBalloonPinkWall" => Self::SillyBalloonPinkWall,
9915 "SillyBalloonPurpleWall" => Self::SillyBalloonPurpleWall,
9916 "SillyBalloonGreenWall" => Self::SillyBalloonGreenWall,
9917 "AviatorSunglasses" => Self::AviatorSunglasses,
9918 "BluePhasesaber" => Self::BluePhasesaber,
9919 "RedPhasesaber" => Self::RedPhasesaber,
9920 "GreenPhasesaber" => Self::GreenPhasesaber,
9921 "PurplePhasesaber" => Self::PurplePhasesaber,
9922 "WhitePhasesaber" => Self::WhitePhasesaber,
9923 "YellowPhasesaber" => Self::YellowPhasesaber,
9924 "DjinnsCurse" => Self::DjinnsCurse,
9925 "AncientHorn" => Self::AncientHorn,
9926 "AntlionClaw" => Self::AntlionClaw,
9927 "AncientArmorHat" => Self::AncientArmorHat,
9928 "AncientArmorShirt" => Self::AncientArmorShirt,
9929 "AncientArmorPants" => Self::AncientArmorPants,
9930 "AncientBattleArmorHat" => Self::AncientBattleArmorHat,
9931 "AncientBattleArmorShirt" => Self::AncientBattleArmorShirt,
9932 "AncientBattleArmorPants" => Self::AncientBattleArmorPants,
9933 "SpiritFlame" => Self::SpiritFlame,
9934 "SandElementalBanner" => Self::SandElementalBanner,
9935 "PocketMirror" => Self::PocketMirror,
9936 "MagicSandDropper" => Self::MagicSandDropper,
9937 "AncientBattleArmorMaterial" => Self::AncientBattleArmorMaterial,
9938 "LamiaPants" => Self::LamiaPants,
9939 "LamiaShirt" => Self::LamiaShirt,
9940 "LamiaHat" => Self::LamiaHat,
9941 "SkyFracture" => Self::SkyFracture,
9942 "OnyxBlaster" => Self::OnyxBlaster,
9943 "SandsharkBanner" => Self::SandsharkBanner,
9944 "SandsharkCorruptBanner" => Self::SandsharkCorruptBanner,
9945 "SandsharkCrimsonBanner" => Self::SandsharkCrimsonBanner,
9946 "SandsharkHallowedBanner" => Self::SandsharkHallowedBanner,
9947 "TumbleweedBanner" => Self::TumbleweedBanner,
9948 "AncientCloth" => Self::AncientCloth,
9949 "DjinnLamp" => Self::DjinnLamp,
9950 "MusicBoxSandstorm" => Self::MusicBoxSandstorm,
9951 "ApprenticeHat" => Self::ApprenticeHat,
9952 "ApprenticeRobe" => Self::ApprenticeRobe,
9953 "ApprenticeTrousers" => Self::ApprenticeTrousers,
9954 "SquireGreatHelm" => Self::SquireGreatHelm,
9955 "SquirePlating" => Self::SquirePlating,
9956 "SquireGreaves" => Self::SquireGreaves,
9957 "HuntressWig" => Self::HuntressWig,
9958 "HuntressJerkin" => Self::HuntressJerkin,
9959 "HuntressPants" => Self::HuntressPants,
9960 "MonkBrows" => Self::MonkBrows,
9961 "MonkShirt" => Self::MonkShirt,
9962 "MonkPants" => Self::MonkPants,
9963 "ApprenticeScarf" => Self::ApprenticeScarf,
9964 "SquireShield" => Self::SquireShield,
9965 "HuntressBuckler" => Self::HuntressBuckler,
9966 "MonkBelt" => Self::MonkBelt,
9967 "DefendersForge" => Self::DefendersForge,
9968 "WarTable" => Self::WarTable,
9969 "WarTableBanner" => Self::WarTableBanner,
9970 "DD2ElderCrystalStand" => Self::DD2ElderCrystalStand,
9971 "DefenderMedal" => Self::DefenderMedal,
9972 "DD2FlameburstTowerT1Popper" => Self::DD2FlameburstTowerT1Popper,
9973 "DD2FlameburstTowerT2Popper" => Self::DD2FlameburstTowerT2Popper,
9974 "DD2FlameburstTowerT3Popper" => Self::DD2FlameburstTowerT3Popper,
9975 "AleThrowingGlove" => Self::AleThrowingGlove,
9976 "DD2EnergyCrystal" => Self::DD2EnergyCrystal,
9977 "DD2SquireDemonSword" => Self::DD2SquireDemonSword,
9978 "DD2BallistraTowerT1Popper" => Self::DD2BallistraTowerT1Popper,
9979 "DD2BallistraTowerT2Popper" => Self::DD2BallistraTowerT2Popper,
9980 "DD2BallistraTowerT3Popper" => Self::DD2BallistraTowerT3Popper,
9981 "DD2SquireBetsySword" => Self::DD2SquireBetsySword,
9982 "DD2ElderCrystal" => Self::DD2ElderCrystal,
9983 "DD2LightningAuraT1Popper" => Self::DD2LightningAuraT1Popper,
9984 "DD2LightningAuraT2Popper" => Self::DD2LightningAuraT2Popper,
9985 "DD2LightningAuraT3Popper" => Self::DD2LightningAuraT3Popper,
9986 "DD2ExplosiveTrapT1Popper" => Self::DD2ExplosiveTrapT1Popper,
9987 "DD2ExplosiveTrapT2Popper" => Self::DD2ExplosiveTrapT2Popper,
9988 "DD2ExplosiveTrapT3Popper" => Self::DD2ExplosiveTrapT3Popper,
9989 "MonkStaffT1" => Self::MonkStaffT1,
9990 "MonkStaffT2" => Self::MonkStaffT2,
9991 "DD2GoblinBomberBanner" => Self::DD2GoblinBomberBanner,
9992 "DD2GoblinBanner" => Self::DD2GoblinBanner,
9993 "DD2SkeletonBanner" => Self::DD2SkeletonBanner,
9994 "DD2DrakinBanner" => Self::DD2DrakinBanner,
9995 "DD2KoboldFlyerBanner" => Self::DD2KoboldFlyerBanner,
9996 "DD2KoboldBanner" => Self::DD2KoboldBanner,
9997 "DD2WitherBeastBanner" => Self::DD2WitherBeastBanner,
9998 "DD2WyvernBanner" => Self::DD2WyvernBanner,
9999 "DD2JavelinThrowerBanner" => Self::DD2JavelinThrowerBanner,
10000 "DD2LightningBugBanner" => Self::DD2LightningBugBanner,
10001 "OgreMask" => Self::OgreMask,
10002 "GoblinMask" => Self::GoblinMask,
10003 "GoblinBomberCap" => Self::GoblinBomberCap,
10004 "EtherianJavelin" => Self::EtherianJavelin,
10005 "KoboldDynamiteBackpack" => Self::KoboldDynamiteBackpack,
10006 "BookStaff" => Self::BookStaff,
10007 "BoringBow" => Self::BoringBow,
10008 "DD2PhoenixBow" => Self::DD2PhoenixBow,
10009 "DD2PetGato" => Self::DD2PetGato,
10010 "DD2PetGhost" => Self::DD2PetGhost,
10011 "DD2PetDragon" => Self::DD2PetDragon,
10012 "MonkStaffT3" => Self::MonkStaffT3,
10013 "DD2BetsyBow" => Self::DD2BetsyBow,
10014 "BossBagBetsy" => Self::BossBagBetsy,
10015 "BossBagOgre" => Self::BossBagOgre,
10016 "BossBagDarkMage" => Self::BossBagDarkMage,
10017 "BossMaskBetsy" => Self::BossMaskBetsy,
10018 "BossMaskDarkMage" => Self::BossMaskDarkMage,
10019 "BossMaskOgre" => Self::BossMaskOgre,
10020 "BossTrophyBetsy" => Self::BossTrophyBetsy,
10021 "BossTrophyDarkmage" => Self::BossTrophyDarkmage,
10022 "BossTrophyOgre" => Self::BossTrophyOgre,
10023 "MusicBoxDD2" => Self::MusicBoxDD2,
10024 "ApprenticeStaffT3" => Self::ApprenticeStaffT3,
10025 "SquireAltHead" => Self::SquireAltHead,
10026 "SquireAltShirt" => Self::SquireAltShirt,
10027 "SquireAltPants" => Self::SquireAltPants,
10028 "ApprenticeAltHead" => Self::ApprenticeAltHead,
10029 "ApprenticeAltShirt" => Self::ApprenticeAltShirt,
10030 "ApprenticeAltPants" => Self::ApprenticeAltPants,
10031 "HuntressAltHead" => Self::HuntressAltHead,
10032 "HuntressAltShirt" => Self::HuntressAltShirt,
10033 "HuntressAltPants" => Self::HuntressAltPants,
10034 "MonkAltHead" => Self::MonkAltHead,
10035 "MonkAltShirt" => Self::MonkAltShirt,
10036 "MonkAltPants" => Self::MonkAltPants,
10037 "BetsyWings" => Self::BetsyWings,
10038 "CrystalChest" => Self::CrystalChest,
10039 "GoldenChest" => Self::GoldenChest,
10040 "Fake_CrystalChest" => Self::FakeCrystalChest,
10041 "Fake_GoldenChest" => Self::FakeGoldenChest,
10042 "CrystalDoor" => Self::CrystalDoor,
10043 "CrystalChair" => Self::CrystalChair,
10044 "CrystalCandle" => Self::CrystalCandle,
10045 "CrystalLantern" => Self::CrystalLantern,
10046 "CrystalLamp" => Self::CrystalLamp,
10047 "CrystalCandelabra" => Self::CrystalCandelabra,
10048 "CrystalChandelier" => Self::CrystalChandelier,
10049 "CrystalBathtub" => Self::CrystalBathtub,
10050 "CrystalSink" => Self::CrystalSink,
10051 "CrystalBed" => Self::CrystalBed,
10052 "CrystalClock" => Self::CrystalClock,
10053 "SkywareClock2" => Self::SkywareClock2,
10054 "DungeonClockBlue" => Self::DungeonClockBlue,
10055 "DungeonClockGreen" => Self::DungeonClockGreen,
10056 "DungeonClockPink" => Self::DungeonClockPink,
10057 "CrystalPlatform" => Self::CrystalPlatform,
10058 "GoldenPlatform" => Self::GoldenPlatform,
10059 "DynastyPlatform" => Self::DynastyPlatform,
10060 "LihzahrdPlatform" => Self::LihzahrdPlatform,
10061 "FleshPlatform" => Self::FleshPlatform,
10062 "FrozenPlatform" => Self::FrozenPlatform,
10063 "CrystalWorkbench" => Self::CrystalWorkbench,
10064 "GoldenWorkbench" => Self::GoldenWorkbench,
10065 "CrystalDresser" => Self::CrystalDresser,
10066 "DynastyDresser" => Self::DynastyDresser,
10067 "FrozenDresser" => Self::FrozenDresser,
10068 "LivingWoodDresser" => Self::LivingWoodDresser,
10069 "CrystalPiano" => Self::CrystalPiano,
10070 "DynastyPiano" => Self::DynastyPiano,
10071 "CrystalBookCase" => Self::CrystalBookCase,
10072 "CrystalSofaHowDoesThatEvenWork" => Self::CrystalSofaHowDoesThatEvenWork,
10073 "DynastySofa" => Self::DynastySofa,
10074 "CrystalTable" => Self::CrystalTable,
10075 "ArkhalisHat" => Self::ArkhalisHat,
10076 "ArkhalisShirt" => Self::ArkhalisShirt,
10077 "ArkhalisPants" => Self::ArkhalisPants,
10078 "ArkhalisWings" => Self::ArkhalisWings,
10079 "LeinforsHat" => Self::LeinforsHat,
10080 "LeinforsShirt" => Self::LeinforsShirt,
10081 "LeinforsPants" => Self::LeinforsPants,
10082 "LeinforsWings" => Self::LeinforsWings,
10083 "LeinforsAccessory" => Self::LeinforsAccessory,
10084 "Celeb2" => Self::Celeb2,
10085 "SpiderBathtub" => Self::SpiderBathtub,
10086 "SpiderBed" => Self::SpiderBed,
10087 "SpiderBookcase" => Self::SpiderBookcase,
10088 "SpiderDresser" => Self::SpiderDresser,
10089 "SpiderCandelabra" => Self::SpiderCandelabra,
10090 "SpiderCandle" => Self::SpiderCandle,
10091 "SpiderChair" => Self::SpiderChair,
10092 "SpiderChandelier" => Self::SpiderChandelier,
10093 "SpiderChest" => Self::SpiderChest,
10094 "SpiderClock" => Self::SpiderClock,
10095 "SpiderDoor" => Self::SpiderDoor,
10096 "SpiderLamp" => Self::SpiderLamp,
10097 "SpiderLantern" => Self::SpiderLantern,
10098 "SpiderPiano" => Self::SpiderPiano,
10099 "SpiderPlatform" => Self::SpiderPlatform,
10100 "SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes" => {
10101 Self::SpiderSinkSpiderSinkDoesWhateverASpiderSinkDoes
10102 }
10103 "SpiderSofa" => Self::SpiderSofa,
10104 "SpiderTable" => Self::SpiderTable,
10105 "SpiderWorkbench" => Self::SpiderWorkbench,
10106 "Fake_SpiderChest" => Self::FakeSpiderChest,
10107 "IronBrick" => Self::IronBrick,
10108 "IronBrickWall" => Self::IronBrickWall,
10109 "LeadBrick" => Self::LeadBrick,
10110 "LeadBrickWall" => Self::LeadBrickWall,
10111 "LesionBlock" => Self::LesionBlock,
10112 "LesionBlockWall" => Self::LesionBlockWall,
10113 "LesionPlatform" => Self::LesionPlatform,
10114 "LesionBathtub" => Self::LesionBathtub,
10115 "LesionBed" => Self::LesionBed,
10116 "LesionBookcase" => Self::LesionBookcase,
10117 "LesionCandelabra" => Self::LesionCandelabra,
10118 "LesionCandle" => Self::LesionCandle,
10119 "LesionChair" => Self::LesionChair,
10120 "LesionChandelier" => Self::LesionChandelier,
10121 "LesionChest" => Self::LesionChest,
10122 "LesionClock" => Self::LesionClock,
10123 "LesionDoor" => Self::LesionDoor,
10124 "LesionDresser" => Self::LesionDresser,
10125 "LesionLamp" => Self::LesionLamp,
10126 "LesionLantern" => Self::LesionLantern,
10127 "LesionPiano" => Self::LesionPiano,
10128 "LesionSink" => Self::LesionSink,
10129 "LesionSofa" => Self::LesionSofa,
10130 "LesionTable" => Self::LesionTable,
10131 "LesionWorkbench" => Self::LesionWorkbench,
10132 "Fake_LesionChest" => Self::FakeLesionChest,
10133 "HatRack" => Self::HatRack,
10134 "ColorOnlyDye" => Self::ColorOnlyDye,
10135 "WoodenCrateHard" => Self::WoodenCrateHard,
10136 "IronCrateHard" => Self::IronCrateHard,
10137 "GoldenCrateHard" => Self::GoldenCrateHard,
10138 "CorruptFishingCrateHard" => Self::CorruptFishingCrateHard,
10139 "CrimsonFishingCrateHard" => Self::CrimsonFishingCrateHard,
10140 "DungeonFishingCrateHard" => Self::DungeonFishingCrateHard,
10141 "FloatingIslandFishingCrateHard" => Self::FloatingIslandFishingCrateHard,
10142 "HallowedFishingCrateHard" => Self::HallowedFishingCrateHard,
10143 "JungleFishingCrateHard" => Self::JungleFishingCrateHard,
10144 "DeadMansChest" => Self::DeadMansChest,
10145 "GolfBall" => Self::GolfBall,
10146 "AmphibianBoots" => Self::AmphibianBoots,
10147 "ArcaneFlower" => Self::ArcaneFlower,
10148 "BerserkerGlove" => Self::BerserkerGlove,
10149 "FairyBoots" => Self::FairyBoots,
10150 "FrogFlipper" => Self::FrogFlipper,
10151 "FrogGear" => Self::FrogGear,
10152 "FrogWebbing" => Self::FrogWebbing,
10153 "FrozenShield" => Self::FrozenShield,
10154 "HeroShield" => Self::HeroShield,
10155 "LavaSkull" => Self::LavaSkull,
10156 "MagnetFlower" => Self::MagnetFlower,
10157 "ManaCloak" => Self::ManaCloak,
10158 "MoltenQuiver" => Self::MoltenQuiver,
10159 "MoltenSkullRose" => Self::MoltenSkullRose,
10160 "ObsidianSkullRose" => Self::ObsidianSkullRose,
10161 "ReconScope" => Self::ReconScope,
10162 "StalkersQuiver" => Self::StalkersQuiver,
10163 "StingerNecklace" => Self::StingerNecklace,
10164 "UltrabrightHelmet" => Self::UltrabrightHelmet,
10165 "Apple" => Self::Apple,
10166 "ApplePieSlice" => Self::ApplePieSlice,
10167 "ApplePie" => Self::ApplePie,
10168 "BananaSplit" => Self::BananaSplit,
10169 "BBQRibs" => Self::BBQRibs,
10170 "BunnyStew" => Self::BunnyStew,
10171 "Burger" => Self::Burger,
10172 "ChickenNugget" => Self::ChickenNugget,
10173 "ChocolateChipCookie" => Self::ChocolateChipCookie,
10174 "CreamSoda" => Self::CreamSoda,
10175 "Escargot" => Self::Escargot,
10176 "FriedEgg" => Self::FriedEgg,
10177 "Fries" => Self::Fries,
10178 "GoldenDelight" => Self::GoldenDelight,
10179 "Grapes" => Self::Grapes,
10180 "GrilledSquirrel" => Self::GrilledSquirrel,
10181 "Hotdog" => Self::Hotdog,
10182 "IceCream" => Self::IceCream,
10183 "Milkshake" => Self::Milkshake,
10184 "Nachos" => Self::Nachos,
10185 "Pizza" => Self::Pizza,
10186 "PotatoChips" => Self::PotatoChips,
10187 "RoastedBird" => Self::RoastedBird,
10188 "RoastedDuck" => Self::RoastedDuck,
10189 "SauteedFrogLegs" => Self::SauteedFrogLegs,
10190 "SeafoodDinner" => Self::SeafoodDinner,
10191 "ShrimpPoBoy" => Self::ShrimpPoBoy,
10192 "Spaghetti" => Self::Spaghetti,
10193 "Steak" => Self::Steak,
10194 "MoltenCharm" => Self::MoltenCharm,
10195 "GolfClubIron" => Self::GolfClubIron,
10196 "GolfCup" => Self::GolfCup,
10197 "FlowerPacketBlue" => Self::FlowerPacketBlue,
10198 "FlowerPacketMagenta" => Self::FlowerPacketMagenta,
10199 "FlowerPacketPink" => Self::FlowerPacketPink,
10200 "FlowerPacketRed" => Self::FlowerPacketRed,
10201 "FlowerPacketYellow" => Self::FlowerPacketYellow,
10202 "FlowerPacketViolet" => Self::FlowerPacketViolet,
10203 "FlowerPacketWhite" => Self::FlowerPacketWhite,
10204 "FlowerPacketTallGrass" => Self::FlowerPacketTallGrass,
10205 "LawnMower" => Self::LawnMower,
10206 "CrimstoneBrick" => Self::CrimstoneBrick,
10207 "SmoothSandstone" => Self::SmoothSandstone,
10208 "CrimstoneBrickWall" => Self::CrimstoneBrickWall,
10209 "SmoothSandstoneWall" => Self::SmoothSandstoneWall,
10210 "BloodMoonMonolith" => Self::BloodMoonMonolith,
10211 "SandBoots" => Self::SandBoots,
10212 "AncientChisel" => Self::AncientChisel,
10213 "CarbonGuitar" => Self::CarbonGuitar,
10214 "SkeletonBow" => Self::SkeletonBow,
10215 "FossilPickaxe" => Self::FossilPickaxe,
10216 "SuperStarCannon" => Self::SuperStarCannon,
10217 "ThunderSpear" => Self::ThunderSpear,
10218 "ThunderStaff" => Self::ThunderStaff,
10219 "DrumSet" => Self::DrumSet,
10220 "PicnicTable" => Self::PicnicTable,
10221 "PicnicTableWithCloth" => Self::PicnicTableWithCloth,
10222 "DesertMinecart" => Self::DesertMinecart,
10223 "FishMinecart" => Self::FishMinecart,
10224 "FairyCritterPink" => Self::FairyCritterPink,
10225 "FairyCritterGreen" => Self::FairyCritterGreen,
10226 "FairyCritterBlue" => Self::FairyCritterBlue,
10227 "JunoniaShell" => Self::JunoniaShell,
10228 "LightningWhelkShell" => Self::LightningWhelkShell,
10229 "TulipShell" => Self::TulipShell,
10230 "PinWheel" => Self::PinWheel,
10231 "WeatherVane" => Self::WeatherVane,
10232 "VoidVault" => Self::VoidVault,
10233 "MusicBoxOceanAlt" => Self::MusicBoxOceanAlt,
10234 "MusicBoxSlimeRain" => Self::MusicBoxSlimeRain,
10235 "MusicBoxSpaceAlt" => Self::MusicBoxSpaceAlt,
10236 "MusicBoxTownDay" => Self::MusicBoxTownDay,
10237 "MusicBoxTownNight" => Self::MusicBoxTownNight,
10238 "MusicBoxWindyDay" => Self::MusicBoxWindyDay,
10239 "GolfCupFlagWhite" => Self::GolfCupFlagWhite,
10240 "GolfCupFlagRed" => Self::GolfCupFlagRed,
10241 "GolfCupFlagGreen" => Self::GolfCupFlagGreen,
10242 "GolfCupFlagBlue" => Self::GolfCupFlagBlue,
10243 "GolfCupFlagYellow" => Self::GolfCupFlagYellow,
10244 "GolfCupFlagPurple" => Self::GolfCupFlagPurple,
10245 "GolfTee" => Self::GolfTee,
10246 "ShellPileBlock" => Self::ShellPileBlock,
10247 "AntiPortalBlock" => Self::AntiPortalBlock,
10248 "GolfClubPutter" => Self::GolfClubPutter,
10249 "GolfClubWedge" => Self::GolfClubWedge,
10250 "GolfClubDriver" => Self::GolfClubDriver,
10251 "GolfWhistle" => Self::GolfWhistle,
10252 "ToiletEbonyWood" => Self::ToiletEbonyWood,
10253 "ToiletRichMahogany" => Self::ToiletRichMahogany,
10254 "ToiletPearlwood" => Self::ToiletPearlwood,
10255 "ToiletLivingWood" => Self::ToiletLivingWood,
10256 "ToiletCactus" => Self::ToiletCactus,
10257 "ToiletBone" => Self::ToiletBone,
10258 "ToiletFlesh" => Self::ToiletFlesh,
10259 "ToiletMushroom" => Self::ToiletMushroom,
10260 "ToiletSunplate" => Self::ToiletSunplate,
10261 "ToiletShadewood" => Self::ToiletShadewood,
10262 "ToiletLihzhard" => Self::ToiletLihzhard,
10263 "ToiletDungeonBlue" => Self::ToiletDungeonBlue,
10264 "ToiletDungeonGreen" => Self::ToiletDungeonGreen,
10265 "ToiletDungeonPink" => Self::ToiletDungeonPink,
10266 "ToiletObsidian" => Self::ToiletObsidian,
10267 "ToiletFrozen" => Self::ToiletFrozen,
10268 "ToiletGlass" => Self::ToiletGlass,
10269 "ToiletHoney" => Self::ToiletHoney,
10270 "ToiletSteampunk" => Self::ToiletSteampunk,
10271 "ToiletPumpkin" => Self::ToiletPumpkin,
10272 "ToiletSpooky" => Self::ToiletSpooky,
10273 "ToiletDynasty" => Self::ToiletDynasty,
10274 "ToiletPalm" => Self::ToiletPalm,
10275 "ToiletBoreal" => Self::ToiletBoreal,
10276 "ToiletSlime" => Self::ToiletSlime,
10277 "ToiletMartian" => Self::ToiletMartian,
10278 "ToiletGranite" => Self::ToiletGranite,
10279 "ToiletMarble" => Self::ToiletMarble,
10280 "ToiletCrystal" => Self::ToiletCrystal,
10281 "ToiletSpider" => Self::ToiletSpider,
10282 "ToiletLesion" => Self::ToiletLesion,
10283 "ToiletDiamond" => Self::ToiletDiamond,
10284 "MaidHead" => Self::MaidHead,
10285 "MaidShirt" => Self::MaidShirt,
10286 "MaidPants" => Self::MaidPants,
10287 "VoidLens" => Self::VoidLens,
10288 "MaidHead2" => Self::MaidHead2,
10289 "MaidShirt2" => Self::MaidShirt2,
10290 "MaidPants2" => Self::MaidPants2,
10291 "GolfHat" => Self::GolfHat,
10292 "GolfShirt" => Self::GolfShirt,
10293 "GolfPants" => Self::GolfPants,
10294 "GolfVisor" => Self::GolfVisor,
10295 "SpiderBlock" => Self::SpiderBlock,
10296 "SpiderWall" => Self::SpiderWall,
10297 "ToiletMeteor" => Self::ToiletMeteor,
10298 "LesionStation" => Self::LesionStation,
10299 "ManaCloakStar" => Self::ManaCloakStar,
10300 "Terragrim" => Self::Terragrim,
10301 "SolarBathtub" => Self::SolarBathtub,
10302 "SolarBed" => Self::SolarBed,
10303 "SolarBookcase" => Self::SolarBookcase,
10304 "SolarDresser" => Self::SolarDresser,
10305 "SolarCandelabra" => Self::SolarCandelabra,
10306 "SolarCandle" => Self::SolarCandle,
10307 "SolarChair" => Self::SolarChair,
10308 "SolarChandelier" => Self::SolarChandelier,
10309 "SolarChest" => Self::SolarChest,
10310 "SolarClock" => Self::SolarClock,
10311 "SolarDoor" => Self::SolarDoor,
10312 "SolarLamp" => Self::SolarLamp,
10313 "SolarLantern" => Self::SolarLantern,
10314 "SolarPiano" => Self::SolarPiano,
10315 "SolarPlatform" => Self::SolarPlatform,
10316 "SolarSink" => Self::SolarSink,
10317 "SolarSofa" => Self::SolarSofa,
10318 "SolarTable" => Self::SolarTable,
10319 "SolarWorkbench" => Self::SolarWorkbench,
10320 "Fake_SolarChest" => Self::FakeSolarChest,
10321 "SolarToilet" => Self::SolarToilet,
10322 "VortexBathtub" => Self::VortexBathtub,
10323 "VortexBed" => Self::VortexBed,
10324 "VortexBookcase" => Self::VortexBookcase,
10325 "VortexDresser" => Self::VortexDresser,
10326 "VortexCandelabra" => Self::VortexCandelabra,
10327 "VortexCandle" => Self::VortexCandle,
10328 "VortexChair" => Self::VortexChair,
10329 "VortexChandelier" => Self::VortexChandelier,
10330 "VortexChest" => Self::VortexChest,
10331 "VortexClock" => Self::VortexClock,
10332 "VortexDoor" => Self::VortexDoor,
10333 "VortexLamp" => Self::VortexLamp,
10334 "VortexLantern" => Self::VortexLantern,
10335 "VortexPiano" => Self::VortexPiano,
10336 "VortexPlatform" => Self::VortexPlatform,
10337 "VortexSink" => Self::VortexSink,
10338 "VortexSofa" => Self::VortexSofa,
10339 "VortexTable" => Self::VortexTable,
10340 "VortexWorkbench" => Self::VortexWorkbench,
10341 "Fake_VortexChest" => Self::FakeVortexChest,
10342 "VortexToilet" => Self::VortexToilet,
10343 "NebulaBathtub" => Self::NebulaBathtub,
10344 "NebulaBed" => Self::NebulaBed,
10345 "NebulaBookcase" => Self::NebulaBookcase,
10346 "NebulaDresser" => Self::NebulaDresser,
10347 "NebulaCandelabra" => Self::NebulaCandelabra,
10348 "NebulaCandle" => Self::NebulaCandle,
10349 "NebulaChair" => Self::NebulaChair,
10350 "NebulaChandelier" => Self::NebulaChandelier,
10351 "NebulaChest" => Self::NebulaChest,
10352 "NebulaClock" => Self::NebulaClock,
10353 "NebulaDoor" => Self::NebulaDoor,
10354 "NebulaLamp" => Self::NebulaLamp,
10355 "NebulaLantern" => Self::NebulaLantern,
10356 "NebulaPiano" => Self::NebulaPiano,
10357 "NebulaPlatform" => Self::NebulaPlatform,
10358 "NebulaSink" => Self::NebulaSink,
10359 "NebulaSofa" => Self::NebulaSofa,
10360 "NebulaTable" => Self::NebulaTable,
10361 "NebulaWorkbench" => Self::NebulaWorkbench,
10362 "Fake_NebulaChest" => Self::FakeNebulaChest,
10363 "NebulaToilet" => Self::NebulaToilet,
10364 "StardustBathtub" => Self::StardustBathtub,
10365 "StardustBed" => Self::StardustBed,
10366 "StardustBookcase" => Self::StardustBookcase,
10367 "StardustDresser" => Self::StardustDresser,
10368 "StardustCandelabra" => Self::StardustCandelabra,
10369 "StardustCandle" => Self::StardustCandle,
10370 "StardustChair" => Self::StardustChair,
10371 "StardustChandelier" => Self::StardustChandelier,
10372 "StardustChest" => Self::StardustChest,
10373 "StardustClock" => Self::StardustClock,
10374 "StardustDoor" => Self::StardustDoor,
10375 "StardustLamp" => Self::StardustLamp,
10376 "StardustLantern" => Self::StardustLantern,
10377 "StardustPiano" => Self::StardustPiano,
10378 "StardustPlatform" => Self::StardustPlatform,
10379 "StardustSink" => Self::StardustSink,
10380 "StardustSofa" => Self::StardustSofa,
10381 "StardustTable" => Self::StardustTable,
10382 "StardustWorkbench" => Self::StardustWorkbench,
10383 "Fake_StardustChest" => Self::FakeStardustChest,
10384 "StardustToilet" => Self::StardustToilet,
10385 "SolarBrick" => Self::SolarBrick,
10386 "VortexBrick" => Self::VortexBrick,
10387 "NebulaBrick" => Self::NebulaBrick,
10388 "StardustBrick" => Self::StardustBrick,
10389 "SolarBrickWall" => Self::SolarBrickWall,
10390 "VortexBrickWall" => Self::VortexBrickWall,
10391 "NebulaBrickWall" => Self::NebulaBrickWall,
10392 "StardustBrickWall" => Self::StardustBrickWall,
10393 "MusicBoxDayRemix" => Self::MusicBoxDayRemix,
10394 "CrackedBlueBrick" => Self::CrackedBlueBrick,
10395 "CrackedGreenBrick" => Self::CrackedGreenBrick,
10396 "CrackedPinkBrick" => Self::CrackedPinkBrick,
10397 "FlowerPacketWild" => Self::FlowerPacketWild,
10398 "GolfBallDyedBlack" => Self::GolfBallDyedBlack,
10399 "GolfBallDyedBlue" => Self::GolfBallDyedBlue,
10400 "GolfBallDyedBrown" => Self::GolfBallDyedBrown,
10401 "GolfBallDyedCyan" => Self::GolfBallDyedCyan,
10402 "GolfBallDyedGreen" => Self::GolfBallDyedGreen,
10403 "GolfBallDyedLimeGreen" => Self::GolfBallDyedLimeGreen,
10404 "GolfBallDyedOrange" => Self::GolfBallDyedOrange,
10405 "GolfBallDyedPink" => Self::GolfBallDyedPink,
10406 "GolfBallDyedPurple" => Self::GolfBallDyedPurple,
10407 "GolfBallDyedRed" => Self::GolfBallDyedRed,
10408 "GolfBallDyedSkyBlue" => Self::GolfBallDyedSkyBlue,
10409 "GolfBallDyedTeal" => Self::GolfBallDyedTeal,
10410 "GolfBallDyedViolet" => Self::GolfBallDyedViolet,
10411 "GolfBallDyedYellow" => Self::GolfBallDyedYellow,
10412 "AmberRobe" => Self::AmberRobe,
10413 "AmberHook" => Self::AmberHook,
10414 "OrangePhaseblade" => Self::OrangePhaseblade,
10415 "OrangePhasesaber" => Self::OrangePhasesaber,
10416 "OrangeStainedGlass" => Self::OrangeStainedGlass,
10417 "OrangePressurePlate" => Self::OrangePressurePlate,
10418 "MysticCoilSnake" => Self::MysticCoilSnake,
10419 "MagicConch" => Self::MagicConch,
10420 "GolfCart" => Self::GolfCart,
10421 "GolfChest" => Self::GolfChest,
10422 "Fake_GolfChest" => Self::FakeGolfChest,
10423 "DesertChest" => Self::DesertChest,
10424 "Fake_DesertChest" => Self::FakeDesertChest,
10425 "SanguineStaff" => Self::SanguineStaff,
10426 "SharpTears" => Self::SharpTears,
10427 "BloodMoonStarter" => Self::BloodMoonStarter,
10428 "DripplerFlail" => Self::DripplerFlail,
10429 "VampireFrogStaff" => Self::VampireFrogStaff,
10430 "GoldGoldfish" => Self::GoldGoldfish,
10431 "GoldGoldfishBowl" => Self::GoldGoldfishBowl,
10432 "CatBast" => Self::CatBast,
10433 "GoldStarryGlassBlock" => Self::GoldStarryGlassBlock,
10434 "BlueStarryGlassBlock" => Self::BlueStarryGlassBlock,
10435 "GoldStarryGlassWall" => Self::GoldStarryGlassWall,
10436 "BlueStarryGlassWall" => Self::BlueStarryGlassWall,
10437 "BabyBirdStaff" => Self::BabyBirdStaff,
10438 "Apricot" => Self::Apricot,
10439 "Banana" => Self::Banana,
10440 "BlackCurrant" => Self::BlackCurrant,
10441 "BloodOrange" => Self::BloodOrange,
10442 "Cherry" => Self::Cherry,
10443 "Coconut" => Self::Coconut,
10444 "Dragonfruit" => Self::DragonFruit,
10445 "Elderberry" => Self::Elderberry,
10446 "Grapefruit" => Self::Grapefruit,
10447 "Lemon" => Self::Lemon,
10448 "Mango" => Self::Mango,
10449 "Peach" => Self::Peach,
10450 "Pineapple" => Self::Pineapple,
10451 "Plum" => Self::Plum,
10452 "Rambutan" => Self::Rambutan,
10453 "Starfruit" => Self::Starfruit,
10454 "SandstoneBathtub" => Self::SandstoneBathtub,
10455 "SandstoneBed" => Self::SandstoneBed,
10456 "SandstoneBookcase" => Self::SandstoneBookcase,
10457 "SandstoneDresser" => Self::SandstoneDresser,
10458 "SandstoneCandelabra" => Self::SandstoneCandelabra,
10459 "SandstoneCandle" => Self::SandstoneCandle,
10460 "SandstoneChair" => Self::SandstoneChair,
10461 "SandstoneChandelier" => Self::SandstoneChandelier,
10462 "SandstoneClock" => Self::SandstoneClock,
10463 "SandstoneDoor" => Self::SandstoneDoor,
10464 "SandstoneLamp" => Self::SandstoneLamp,
10465 "SandstoneLantern" => Self::SandstoneLantern,
10466 "SandstonePiano" => Self::SandstonePiano,
10467 "SandstonePlatform" => Self::SandstonePlatform,
10468 "SandstoneSink" => Self::SandstoneSink,
10469 "SandstoneSofa" => Self::SandstoneSofa,
10470 "SandstoneTable" => Self::SandstoneTable,
10471 "SandstoneWorkbench" => Self::SandstoneWorkbench,
10472 "SandstoneToilet" => Self::SandstoneToilet,
10473 "BloodHamaxe" => Self::BloodHamaxe,
10474 "VoidMonolith" => Self::VoidMonolith,
10475 "ArrowSign" => Self::ArrowSign,
10476 "PaintedArrowSign" => Self::PaintedArrowSign,
10477 "GameMasterShirt" => Self::GameMasterShirt,
10478 "GameMasterPants" => Self::GameMasterPants,
10479 "StarPrincessCrown" => Self::StarPrincessCrown,
10480 "StarPrincessDress" => Self::StarPrincessDress,
10481 "BloodFishingRod" => Self::BloodFishingRod,
10482 "FoodPlatter" => Self::FoodPlatter,
10483 "BlackDragonflyJar" => Self::BlackDragonflyJar,
10484 "BlueDragonflyJar" => Self::BlueDragonflyJar,
10485 "GreenDragonflyJar" => Self::GreenDragonflyJar,
10486 "OrangeDragonflyJar" => Self::OrangeDragonflyJar,
10487 "RedDragonflyJar" => Self::RedDragonflyJar,
10488 "YellowDragonflyJar" => Self::YellowDragonflyJar,
10489 "GoldDragonflyJar" => Self::GoldDragonflyJar,
10490 "BlackDragonfly" => Self::BlackDragonfly,
10491 "BlueDragonfly" => Self::BlueDragonfly,
10492 "GreenDragonfly" => Self::GreenDragonfly,
10493 "OrangeDragonfly" => Self::OrangeDragonfly,
10494 "RedDragonfly" => Self::RedDragonfly,
10495 "YellowDragonfly" => Self::YellowDragonfly,
10496 "GoldDragonfly" => Self::GoldDragonfly,
10497 "PortableStool" => Self::PortableStool,
10498 "DragonflyStatue" => Self::DragonflyStatue,
10499 "PaperAirplaneA" => Self::PaperAirplaneA,
10500 "PaperAirplaneB" => Self::PaperAirplaneB,
10501 "CanOfWorms" => Self::CanOfWorms,
10502 "EncumberingStone" => Self::EncumberingStone,
10503 "ZapinatorGray" => Self::ZapinatorGray,
10504 "ZapinatorOrange" => Self::ZapinatorOrange,
10505 "GreenMoss" => Self::GreenMoss,
10506 "BrownMoss" => Self::BrownMoss,
10507 "RedMoss" => Self::RedMoss,
10508 "BlueMoss" => Self::BlueMoss,
10509 "PurpleMoss" => Self::PurpleMoss,
10510 "LavaMoss" => Self::LavaMoss,
10511 "BoulderStatue" => Self::BoulderStatue,
10512 "MusicBoxTitleAlt" => Self::MusicBoxTitleAlt,
10513 "MusicBoxStorm" => Self::MusicBoxStorm,
10514 "MusicBoxGraveyard" => Self::MusicBoxGraveyard,
10515 "Seagull" => Self::Seagull,
10516 "SeagullStatue" => Self::SeagullStatue,
10517 "LadyBug" => Self::LadyBug,
10518 "GoldLadyBug" => Self::GoldLadyBug,
10519 "Maggot" => Self::Maggot,
10520 "MaggotCage" => Self::MaggotCage,
10521 "CelestialWand" => Self::CelestialWand,
10522 "EucaluptusSap" => Self::EucaluptusSap,
10523 "KiteBlue" => Self::KiteBlue,
10524 "KiteBlueAndYellow" => Self::KiteBlueAndYellow,
10525 "KiteRed" => Self::KiteRed,
10526 "KiteRedAndYellow" => Self::KiteRedAndYellow,
10527 "KiteYellow" => Self::KiteYellow,
10528 "IvyGuitar" => Self::IvyGuitar,
10529 "Pupfish" => Self::Pupfish,
10530 "Grebe" => Self::Grebe,
10531 "Rat" => Self::Rat,
10532 "RatCage" => Self::RatCage,
10533 "KryptonMoss" => Self::KryptonMoss,
10534 "XenonMoss" => Self::XenonMoss,
10535 "KiteWyvern" => Self::KiteWyvern,
10536 "LadybugCage" => Self::LadybugCage,
10537 "BloodRainBow" => Self::BloodRainBow,
10538 "CombatBook" => Self::CombatBook,
10539 "DesertTorch" => Self::DesertTorch,
10540 "CoralTorch" => Self::CoralTorch,
10541 "CorruptTorch" => Self::CorruptTorch,
10542 "CrimsonTorch" => Self::CrimsonTorch,
10543 "HallowedTorch" => Self::HallowedTorch,
10544 "JungleTorch" => Self::JungleTorch,
10545 "ArgonMoss" => Self::ArgonMoss,
10546 "RollingCactus" => Self::RollingCactus,
10547 "ThinIce" => Self::ThinIce,
10548 "EchoBlock" => Self::EchoBlock,
10549 "ScarabFish" => Self::ScarabFish,
10550 "ScorpioFish" => Self::ScorpioFish,
10551 "Owl" => Self::Owl,
10552 "OwlCage" => Self::OwlCage,
10553 "OwlStatue" => Self::OwlStatue,
10554 "PupfishBowl" => Self::PupfishBowl,
10555 "GoldLadybugCage" => Self::GoldLadybugCage,
10556 "Geode" => Self::Geode,
10557 "Flounder" => Self::Flounder,
10558 "RockLobster" => Self::RockLobster,
10559 "LobsterTail" => Self::LobsterTail,
10560 "FloatingTube" => Self::FloatingTube,
10561 "FrozenCrate" => Self::FrozenCrate,
10562 "FrozenCrateHard" => Self::FrozenCrateHard,
10563 "OasisCrate" => Self::OasisCrate,
10564 "OasisCrateHard" => Self::OasisCrateHard,
10565 "SpectreGoggles" => Self::SpectreGoggles,
10566 "Oyster" => Self::Oyster,
10567 "ShuckedOyster" => Self::ShuckedOyster,
10568 "WhitePearl" => Self::WhitePearl,
10569 "BlackPearl" => Self::BlackPearl,
10570 "PinkPearl" => Self::PinkPearl,
10571 "StoneDoor" => Self::StoneDoor,
10572 "StonePlatform" => Self::StonePlatform,
10573 "OasisFountain" => Self::OasisFountain,
10574 "WaterStrider" => Self::WaterStrider,
10575 "GoldWaterStrider" => Self::GoldWaterStrider,
10576 "LawnFlamingo" => Self::LawnFlamingo,
10577 "MusicBoxUndergroundJungle" => Self::MusicBoxUndergroundJungle,
10578 "Grate" => Self::Grate,
10579 "ScarabBomb" => Self::ScarabBomb,
10580 "WroughtIronFence" => Self::WroughtIronFence,
10581 "SharkBait" => Self::SharkBait,
10582 "BeeMinecart" => Self::BeeMinecart,
10583 "LadybugMinecart" => Self::LadybugMinecart,
10584 "PigronMinecart" => Self::PigronMinecart,
10585 "SunflowerMinecart" => Self::SunflowerMinecart,
10586 "PottedForestCedar" => Self::PottedForestCedar,
10587 "PottedJungleCedar" => Self::PottedJungleCedar,
10588 "PottedHallowCedar" => Self::PottedHallowCedar,
10589 "PottedForestTree" => Self::PottedForestTree,
10590 "PottedJungleTree" => Self::PottedJungleTree,
10591 "PottedHallowTree" => Self::PottedHallowTree,
10592 "PottedForestPalm" => Self::PottedForestPalm,
10593 "PottedJunglePalm" => Self::PottedJunglePalm,
10594 "PottedHallowPalm" => Self::PottedHallowPalm,
10595 "PottedForestBamboo" => Self::PottedForestBamboo,
10596 "PottedJungleBamboo" => Self::PottedJungleBamboo,
10597 "PottedHallowBamboo" => Self::PottedHallowBamboo,
10598 "ScarabFishingRod" => Self::ScarabFishingRod,
10599 "HellMinecart" => Self::HellMinecart,
10600 "WitchBroom" => Self::WitchBroom,
10601 "ClusterRocketI" => Self::ClusterRocketI,
10602 "ClusterRocketII" => Self::ClusterRocketII,
10603 "WetRocket" => Self::WetRocket,
10604 "LavaRocket" => Self::LavaRocket,
10605 "HoneyRocket" => Self::HoneyRocket,
10606 "ShroomMinecart" => Self::ShroomMinecart,
10607 "AmethystMinecart" => Self::AmethystMinecart,
10608 "TopazMinecart" => Self::TopazMinecart,
10609 "SapphireMinecart" => Self::SapphireMinecart,
10610 "EmeraldMinecart" => Self::EmeraldMinecart,
10611 "RubyMinecart" => Self::RubyMinecart,
10612 "DiamondMinecart" => Self::DiamondMinecart,
10613 "MiniNukeI" => Self::MiniNukeI,
10614 "MiniNukeII" => Self::MiniNukeII,
10615 "DryRocket" => Self::DryRocket,
10616 "SandcastleBucket" => Self::SandcastleBucket,
10617 "TurtleCage" => Self::TurtleCage,
10618 "TurtleJungleCage" => Self::TurtleJungleCage,
10619 "Gladius" => Self::Gladius,
10620 "Turtle" => Self::Turtle,
10621 "TurtleJungle" => Self::TurtleJungle,
10622 "TurtleStatue" => Self::TurtleStatue,
10623 "AmberMinecart" => Self::AmberMinecart,
10624 "BeetleMinecart" => Self::BeetleMinecart,
10625 "MeowmereMinecart" => Self::MeowmereMinecart,
10626 "PartyMinecart" => Self::PartyMinecart,
10627 "PirateMinecart" => Self::PirateMinecart,
10628 "SteampunkMinecart" => Self::SteampunkMinecart,
10629 "GrebeCage" => Self::GrebeCage,
10630 "SeagullCage" => Self::SeagullCage,
10631 "WaterStriderCage" => Self::WaterStriderCage,
10632 "GoldWaterStriderCage" => Self::GoldWaterStriderCage,
10633 "LuckPotionLesser" => Self::LuckPotionLesser,
10634 "LuckPotion" => Self::LuckPotion,
10635 "LuckPotionGreater" => Self::LuckPotionGreater,
10636 "Seahorse" => Self::Seahorse,
10637 "SeahorseCage" => Self::SeahorseCage,
10638 "GoldSeahorse" => Self::GoldSeahorse,
10639 "GoldSeahorseCage" => Self::GoldSeahorseCage,
10640 "TimerOneHalfSecond" => Self::TimerOneHalfSecond,
10641 "TimerOneFourthSecond" => Self::TimerOneFourthSecond,
10642 "EbonstoneEcho" => Self::EbonstoneEcho,
10643 "MudWallEcho" => Self::MudWallEcho,
10644 "PearlstoneEcho" => Self::PearlstoneEcho,
10645 "SnowWallEcho" => Self::SnowWallEcho,
10646 "AmethystEcho" => Self::AmethystEcho,
10647 "TopazEcho" => Self::TopazEcho,
10648 "SapphireEcho" => Self::SapphireEcho,
10649 "EmeraldEcho" => Self::EmeraldEcho,
10650 "RubyEcho" => Self::RubyEcho,
10651 "DiamondEcho" => Self::DiamondEcho,
10652 "Cave1Echo" => Self::Cave1Echo,
10653 "Cave2Echo" => Self::Cave2Echo,
10654 "Cave3Echo" => Self::Cave3Echo,
10655 "Cave4Echo" => Self::Cave4Echo,
10656 "Cave5Echo" => Self::Cave5Echo,
10657 "Cave6Echo" => Self::Cave6Echo,
10658 "Cave7Echo" => Self::Cave7Echo,
10659 "SpiderEcho" => Self::SpiderEcho,
10660 "CorruptGrassEcho" => Self::CorruptGrassEcho,
10661 "HallowedGrassEcho" => Self::HallowedGrassEcho,
10662 "IceEcho" => Self::IceEcho,
10663 "ObsidianBackEcho" => Self::ObsidianBackEcho,
10664 "CrimsonGrassEcho" => Self::CrimsonGrassEcho,
10665 "CrimstoneEcho" => Self::CrimstoneEcho,
10666 "CaveWall1Echo" => Self::CaveWall1Echo,
10667 "CaveWall2Echo" => Self::CaveWall2Echo,
10668 "Cave8Echo" => Self::Cave8Echo,
10669 "Corruption1Echo" => Self::Corruption1Echo,
10670 "Corruption2Echo" => Self::Corruption2Echo,
10671 "Corruption3Echo" => Self::Corruption3Echo,
10672 "Corruption4Echo" => Self::Corruption4Echo,
10673 "Crimson1Echo" => Self::Crimson1Echo,
10674 "Crimson2Echo" => Self::Crimson2Echo,
10675 "Crimson3Echo" => Self::Crimson3Echo,
10676 "Crimson4Echo" => Self::Crimson4Echo,
10677 "Dirt1Echo" => Self::Dirt1Echo,
10678 "Dirt2Echo" => Self::Dirt2Echo,
10679 "Dirt3Echo" => Self::Dirt3Echo,
10680 "Dirt4Echo" => Self::Dirt4Echo,
10681 "Hallow1Echo" => Self::Hallow1Echo,
10682 "Hallow2Echo" => Self::Hallow2Echo,
10683 "Hallow3Echo" => Self::Hallow3Echo,
10684 "Hallow4Echo" => Self::Hallow4Echo,
10685 "Jungle1Echo" => Self::Jungle1Echo,
10686 "Jungle2Echo" => Self::Jungle2Echo,
10687 "Jungle3Echo" => Self::Jungle3Echo,
10688 "Jungle4Echo" => Self::Jungle4Echo,
10689 "Lava1Echo" => Self::Lava1Echo,
10690 "Lava2Echo" => Self::Lava2Echo,
10691 "Lava3Echo" => Self::Lava3Echo,
10692 "Lava4Echo" => Self::Lava4Echo,
10693 "Rocks1Echo" => Self::Rocks1Echo,
10694 "Rocks2Echo" => Self::Rocks2Echo,
10695 "Rocks3Echo" => Self::Rocks3Echo,
10696 "Rocks4Echo" => Self::Rocks4Echo,
10697 "TheBrideBanner" => Self::TheBrideBanner,
10698 "ZombieMermanBanner" => Self::ZombieMermanBanner,
10699 "EyeballFlyingFishBanner" => Self::EyeballFlyingFishBanner,
10700 "BloodSquidBanner" => Self::BloodSquidBanner,
10701 "BloodEelBanner" => Self::BloodEelBanner,
10702 "GoblinSharkBanner" => Self::GoblinSharkBanner,
10703 "LargeBambooBlock" => Self::LargeBambooBlock,
10704 "LargeBambooBlockWall" => Self::LargeBambooBlockWall,
10705 "DemonHorns" => Self::DemonHorns,
10706 "BambooLeaf" => Self::BambooLeaf,
10707 "HellCake" => Self::HellCake,
10708 "FogMachine" => Self::FogMachine,
10709 "PlasmaLamp" => Self::PlasmaLamp,
10710 "MarbleColumn" => Self::MarbleColumn,
10711 "ChefHat" => Self::ChefHat,
10712 "ChefShirt" => Self::ChefShirt,
10713 "ChefPants" => Self::ChefPants,
10714 "StarHairpin" => Self::StarHairpin,
10715 "HeartHairpin" => Self::HeartHairpin,
10716 "BunnyEars" => Self::BunnyEars,
10717 "DevilHorns" => Self::DevilHorns,
10718 "Fedora" => Self::Fedora,
10719 "UnicornHornHat" => Self::UnicornHornHat,
10720 "BambooBlock" => Self::BambooBlock,
10721 "BambooBlockWall" => Self::BambooBlockWall,
10722 "BambooBathtub" => Self::BambooBathtub,
10723 "BambooBed" => Self::BambooBed,
10724 "BambooBookcase" => Self::BambooBookcase,
10725 "BambooDresser" => Self::BambooDresser,
10726 "BambooCandelabra" => Self::BambooCandelabra,
10727 "BambooCandle" => Self::BambooCandle,
10728 "BambooChair" => Self::BambooChair,
10729 "BambooChandelier" => Self::BambooChandelier,
10730 "BambooChest" => Self::BambooChest,
10731 "BambooClock" => Self::BambooClock,
10732 "BambooDoor" => Self::BambooDoor,
10733 "BambooLamp" => Self::BambooLamp,
10734 "BambooLantern" => Self::BambooLantern,
10735 "BambooPiano" => Self::BambooPiano,
10736 "BambooPlatform" => Self::BambooPlatform,
10737 "BambooSink" => Self::BambooSink,
10738 "BambooSofa" => Self::BambooSofa,
10739 "BambooTable" => Self::BambooTable,
10740 "BambooWorkbench" => Self::BambooWorkbench,
10741 "Fake_BambooChest" => Self::FakeBambooChest,
10742 "BambooToilet" => Self::BambooToilet,
10743 "GolfClubStoneIron" => Self::GolfClubStoneIron,
10744 "GolfClubRustyPutter" => Self::GolfClubRustyPutter,
10745 "GolfClubBronzeWedge" => Self::GolfClubBronzeWedge,
10746 "GolfClubWoodDriver" => Self::GolfClubWoodDriver,
10747 "GolfClubMythrilIron" => Self::GolfClubMythrilIron,
10748 "GolfClubLeadPutter" => Self::GolfClubLeadPutter,
10749 "GolfClubGoldWedge" => Self::GolfClubGoldWedge,
10750 "GolfClubPearlwoodDriver" => Self::GolfClubPearlwoodDriver,
10751 "GolfClubTitaniumIron" => Self::GolfClubTitaniumIron,
10752 "GolfClubShroomitePutter" => Self::GolfClubShroomitePutter,
10753 "GolfClubDiamondWedge" => Self::GolfClubDiamondWedge,
10754 "GolfClubChlorophyteDriver" => Self::GolfClubChlorophyteDriver,
10755 "GolfTrophyBronze" => Self::GolfTrophyBronze,
10756 "GolfTrophySilver" => Self::GolfTrophySilver,
10757 "GolfTrophyGold" => Self::GolfTrophyGold,
10758 "BloodNautilusBanner" => Self::BloodNautilusBanner,
10759 "BirdieRattle" => Self::BirdieRattle,
10760 "ExoticEasternChewToy" => Self::ExoticEasternChewToy,
10761 "BedazzledNectar" => Self::BedazzledNectar,
10762 "MusicBoxJungleNight" => Self::MusicBoxJungleNight,
10763 "StormTigerStaff" => Self::StormTigerStaff,
10764 "ChumBucket" => Self::ChumBucket,
10765 "GardenGnome" => Self::GardenGnome,
10766 "KiteBoneSerpent" => Self::KiteBoneSerpent,
10767 "KiteWorldFeeder" => Self::KiteWorldFeeder,
10768 "KiteBunny" => Self::KiteBunny,
10769 "KitePigron" => Self::KitePigron,
10770 "AppleJuice" => Self::AppleJuice,
10771 "GrapeJuice" => Self::GrapeJuice,
10772 "Lemonade" => Self::Lemonade,
10773 "BananaDaiquiri" => Self::BananaDaiquiri,
10774 "PeachSangria" => Self::PeachSangria,
10775 "PinaColada" => Self::PinaColada,
10776 "TropicalSmoothie" => Self::TropicalSmoothie,
10777 "BloodyMoscato" => Self::BloodyMoscato,
10778 "SmoothieofDarkness" => Self::SmoothieOfDarkness,
10779 "PrismaticPunch" => Self::PrismaticPunch,
10780 "FruitJuice" => Self::FruitJuice,
10781 "FruitSalad" => Self::FruitSalad,
10782 "AndrewSphinx" => Self::AndrewSphinx,
10783 "WatchfulAntlion" => Self::WatchfulAntlion,
10784 "BurningSpirit" => Self::BurningSpirit,
10785 "JawsOfDeath" => Self::JawsOfDeath,
10786 "TheSandsOfSlime" => Self::TheSandsOfSlime,
10787 "SnakesIHateSnakes" => Self::SnakesIHateSnakes,
10788 "LifeAboveTheSand" => Self::LifeAboveTheSand,
10789 "Oasis" => Self::Oasis,
10790 "PrehistoryPreserved" => Self::PrehistoryPreserved,
10791 "AncientTablet" => Self::AncientTablet,
10792 "Uluru" => Self::Uluru,
10793 "VisitingThePyramids" => Self::VisitingThePyramids,
10794 "BandageBoy" => Self::BandageBoy,
10795 "DivineEye" => Self::DivineEye,
10796 "AmethystStoneBlock" => Self::AmethystStoneBlock,
10797 "TopazStoneBlock" => Self::TopazStoneBlock,
10798 "SapphireStoneBlock" => Self::SapphireStoneBlock,
10799 "EmeraldStoneBlock" => Self::EmeraldStoneBlock,
10800 "RubyStoneBlock" => Self::RubyStoneBlock,
10801 "DiamondStoneBlock" => Self::DiamondStoneBlock,
10802 "AmberStoneBlock" => Self::AmberStoneBlock,
10803 "AmberStoneWallEcho" => Self::AmberStoneWallEcho,
10804 "KiteManEater" => Self::KiteManEater,
10805 "KiteJellyfishBlue" => Self::KiteJellyfishBlue,
10806 "KiteJellyfishPink" => Self::KiteJellyfishPink,
10807 "KiteShark" => Self::KiteShark,
10808 "SuperHeroMask" => Self::SuperHeroMask,
10809 "SuperHeroCostume" => Self::SuperHeroCostume,
10810 "SuperHeroTights" => Self::SuperHeroTights,
10811 "PinkFairyJar" => Self::PinkFairyJar,
10812 "GreenFairyJar" => Self::GreenFairyJar,
10813 "BlueFairyJar" => Self::BlueFairyJar,
10814 "GolfPainting1" => Self::GolfPainting1,
10815 "GolfPainting2" => Self::GolfPainting2,
10816 "GolfPainting3" => Self::GolfPainting3,
10817 "GolfPainting4" => Self::GolfPainting4,
10818 "FogboundDye" => Self::FogboundDye,
10819 "BloodbathDye" => Self::BloodbathDye,
10820 "PrettyPinkDressSkirt" => Self::PrettyPinkDressSkirt,
10821 "PrettyPinkDressPants" => Self::PrettyPinkDressPants,
10822 "PrettyPinkRibbon" => Self::PrettyPinkRibbon,
10823 "BambooFence" => Self::BambooFence,
10824 "GlowPaint" => Self::GlowPaint,
10825 "KiteSandShark" => Self::KiteSandShark,
10826 "KiteBunnyCorrupt" => Self::KiteBunnyCorrupt,
10827 "KiteBunnyCrimson" => Self::KiteBunnyCrimson,
10828 "BlandWhip" => Self::BlandWhip,
10829 "DrumStick" => Self::DrumStick,
10830 "KiteGoldfish" => Self::KiteGoldfish,
10831 "KiteAngryTrapper" => Self::KiteAngryTrapper,
10832 "KiteKoi" => Self::KiteKoi,
10833 "KiteCrawltipede" => Self::KiteCrawltipede,
10834 "SwordWhip" => Self::SwordWhip,
10835 "MaceWhip" => Self::MaceWhip,
10836 "ScytheWhip" => Self::ScytheWhip,
10837 "KiteSpectrum" => Self::KiteSpectrum,
10838 "ReleaseDoves" => Self::ReleaseDoves,
10839 "KiteWanderingEye" => Self::KiteWanderingEye,
10840 "KiteUnicorn" => Self::KiteUnicorn,
10841 "UndertakerHat" => Self::UndertakerHat,
10842 "UndertakerCoat" => Self::UndertakerCoat,
10843 "DandelionBanner" => Self::DandelionBanner,
10844 "GnomeBanner" => Self::GnomeBanner,
10845 "DesertCampfire" => Self::DesertCampfire,
10846 "CoralCampfire" => Self::CoralCampfire,
10847 "CorruptCampfire" => Self::CorruptCampfire,
10848 "CrimsonCampfire" => Self::CrimsonCampfire,
10849 "HallowedCampfire" => Self::HallowedCampfire,
10850 "JungleCampfire" => Self::JungleCampfire,
10851 "SoulBottleLight" => Self::SoulBottleLight,
10852 "SoulBottleNight" => Self::SoulBottleNight,
10853 "SoulBottleFlight" => Self::SoulBottleFlight,
10854 "SoulBottleSight" => Self::SoulBottleSight,
10855 "SoulBottleMight" => Self::SoulBottleMight,
10856 "SoulBottleFright" => Self::SoulBottleFright,
10857 "MudBud" => Self::MudBud,
10858 "ReleaseLantern" => Self::ReleaseLantern,
10859 "QuadBarrelShotgun" => Self::QuadBarrelShotgun,
10860 "FuneralHat" => Self::FuneralHat,
10861 "FuneralCoat" => Self::FuneralCoat,
10862 "FuneralPants" => Self::FuneralPants,
10863 "TragicUmbrella" => Self::TragicUmbrella,
10864 "VictorianGothHat" => Self::VictorianGothHat,
10865 "VictorianGothDress" => Self::VictorianGothDress,
10866 "TatteredWoodSign" => Self::TatteredWoodSign,
10867 "GravediggerShovel" => Self::GravediggerShovel,
10868 "DungeonDesertChest" => Self::DungeonDesertChest,
10869 "Fake_DungeonDesertChest" => Self::FakeDungeonDesertChest,
10870 "DungeonDesertKey" => Self::DungeonDesertKey,
10871 "SparkleGuitar" => Self::SparkleGuitar,
10872 "MolluskWhistle" => Self::MolluskWhistle,
10873 "BorealBeam" => Self::BorealBeam,
10874 "RichMahoganyBeam" => Self::RichMahoganyBeam,
10875 "GraniteColumn" => Self::GraniteColumn,
10876 "SandstoneColumn" => Self::SandstoneColumn,
10877 "MushroomBeam" => Self::MushroomBeam,
10878 "FirstFractal" => Self::FirstFractal,
10879 "Nevermore" => Self::Nevermore,
10880 "Reborn" => Self::Reborn,
10881 "Graveyard" => Self::Graveyard,
10882 "GhostManifestation" => Self::GhostManifestation,
10883 "WickedUndead" => Self::WickedUndead,
10884 "BloodyGoblet" => Self::BloodyGoblet,
10885 "StillLife" => Self::StillLife,
10886 "GhostarsWings" => Self::GhostarsWings,
10887 "TerraToilet" => Self::TerraToilet,
10888 "GhostarSkullPin" => Self::GhostarSkullPin,
10889 "GhostarShirt" => Self::GhostarShirt,
10890 "GhostarPants" => Self::GhostarPants,
10891 "BallOfFuseWire" => Self::BallOfFuseWire,
10892 "FullMoonSqueakyToy" => Self::FullMoonSqueakyToy,
10893 "OrnateShadowKey" => Self::OrnateShadowKey,
10894 "DrManFlyMask" => Self::DrManFlyMask,
10895 "DrManFlyLabCoat" => Self::DrManFlyLabCoat,
10896 "ButcherMask" => Self::ButcherMask,
10897 "ButcherApron" => Self::ButcherApron,
10898 "ButcherPants" => Self::ButcherPants,
10899 "Football" => Self::Football,
10900 "HunterCloak" => Self::HunterCloak,
10901 "CoffinMinecart" => Self::CoffinMinecart,
10902 "SafemanWings" => Self::SafemanWings,
10903 "SafemanSunHair" => Self::SafemanSunHair,
10904 "SafemanSunDress" => Self::SafemanSunDress,
10905 "SafemanDressLeggings" => Self::SafemanDressLeggings,
10906 "FoodBarbarianWings" => Self::FoodBarbarianWings,
10907 "FoodBarbarianHelm" => Self::FoodBarbarianHelm,
10908 "FoodBarbarianArmor" => Self::FoodBarbarianArmor,
10909 "FoodBarbarianGreaves" => Self::FoodBarbarianGreaves,
10910 "GroxTheGreatWings" => Self::GroxTheGreatWings,
10911 "GroxTheGreatHelm" => Self::GroxTheGreatHelm,
10912 "GroxTheGreatArmor" => Self::GroxTheGreatArmor,
10913 "GroxTheGreatGreaves" => Self::GroxTheGreatGreaves,
10914 "Smolstar" => Self::Smolstar,
10915 "SquirrelHook" => Self::SquirrelHook,
10916 "BouncingShield" => Self::BouncingShield,
10917 "RockGolemHead" => Self::RockGolemHead,
10918 "CritterShampoo" => Self::CritterShampoo,
10919 "DiggingMoleMinecart" => Self::DiggingMoleMinecart,
10920 "Shroomerang" => Self::Shroomerang,
10921 "TreeGlobe" => Self::TreeGlobe,
10922 "WorldGlobe" => Self::WorldGlobe,
10923 "DontHurtCrittersBook" => Self::DontHurtCrittersBook,
10924 "DogEars" => Self::DogEars,
10925 "DogTail" => Self::DogTail,
10926 "FoxEars" => Self::FoxEars,
10927 "FoxTail" => Self::FoxTail,
10928 "LizardEars" => Self::LizardEars,
10929 "LizardTail" => Self::LizardTail,
10930 "PandaEars" => Self::PandaEars,
10931 "BunnyTail" => Self::BunnyTail,
10932 "FairyGlowstick" => Self::FairyGlowstick,
10933 "LightningCarrot" => Self::LightningCarrot,
10934 "HallowBossDye" => Self::HallowBossDye,
10935 "MushroomHat" => Self::MushroomHat,
10936 "MushroomVest" => Self::MushroomVest,
10937 "MushroomPants" => Self::MushroomPants,
10938 "FairyQueenBossBag" => Self::FairyQueenBossBag,
10939 "FairyQueenTrophy" => Self::FairyQueenTrophy,
10940 "FairyQueenMask" => Self::FairyQueenMask,
10941 "PaintedHorseSaddle" => Self::PaintedHorseSaddle,
10942 "MajesticHorseSaddle" => Self::MajesticHorseSaddle,
10943 "DarkHorseSaddle" => Self::DarkHorseSaddle,
10944 "JoustingLance" => Self::JoustingLance,
10945 "ShadowJoustingLance" => Self::ShadowJoustingLance,
10946 "HallowJoustingLance" => Self::HallowJoustingLance,
10947 "PogoStick" => Self::PogoStick,
10948 "PirateShipMountItem" => Self::PirateShipMount,
10949 "SpookyWoodMountItem" => Self::SpookyWoodMount,
10950 "SantankMountItem" => Self::SantankMount,
10951 "WallOfFleshGoatMountItem" => Self::WallOfFleshGoatMount,
10952 "DarkMageBookMountItem" => Self::DarkMageBookMount,
10953 "KingSlimePetItem" => Self::KingSlimePet,
10954 "EyeOfCthulhuPetItem" => Self::EyeOfCthulhuPet,
10955 "EaterOfWorldsPetItem" => Self::EaterOfWorldsPet,
10956 "BrainOfCthulhuPetItem" => Self::BrainOfCthulhuPet,
10957 "SkeletronPetItem" => Self::SkeletronPet,
10958 "QueenBeePetItem" => Self::QueenBeePet,
10959 "DestroyerPetItem" => Self::DestroyerPet,
10960 "TwinsPetItem" => Self::TwinsPet,
10961 "SkeletronPrimePetItem" => Self::SkeletronPrimePet,
10962 "PlanteraPetItem" => Self::PlanteraPet,
10963 "GolemPetItem" => Self::GolemPet,
10964 "DukeFishronPetItem" => Self::DukeFishronPet,
10965 "LunaticCultistPetItem" => Self::LunaticCultistPet,
10966 "MoonLordPetItem" => Self::MoonLordPet,
10967 "FairyQueenPetItem" => Self::FairyQueenPet,
10968 "PumpkingPetItem" => Self::PumpkingPet,
10969 "EverscreamPetItem" => Self::EverscreamPet,
10970 "IceQueenPetItem" => Self::IceQueenPet,
10971 "MartianPetItem" => Self::MartianPet,
10972 "DD2OgrePetItem" => Self::DD2OgrePet,
10973 "DD2BetsyPetItem" => Self::DD2BetsyPet,
10974 "CombatWrench" => Self::CombatWrench,
10975 "DemonConch" => Self::DemonConch,
10976 "BottomlessLavaBucket" => Self::BottomlessLavaBucket,
10977 "FireproofBugNet" => Self::FireproofBugNet,
10978 "FlameWakerBoots" => Self::FlameWakerBoots,
10979 "RainbowWings" => Self::RainbowWings,
10980 "WetBomb" => Self::WetBomb,
10981 "LavaBomb" => Self::LavaBomb,
10982 "HoneyBomb" => Self::HoneyBomb,
10983 "DryBomb" => Self::DryBomb,
10984 "SuperheatedBlood" => Self::SuperheatedBlood,
10985 "LicenseCat" => Self::LicenseCat,
10986 "LicenseDog" => Self::LicenseDog,
10987 "GemSquirrelAmethyst" => Self::GemSquirrelAmethyst,
10988 "GemSquirrelTopaz" => Self::GemSquirrelTopaz,
10989 "GemSquirrelSapphire" => Self::GemSquirrelSapphire,
10990 "GemSquirrelEmerald" => Self::GemSquirrelEmerald,
10991 "GemSquirrelRuby" => Self::GemSquirrelRuby,
10992 "GemSquirrelDiamond" => Self::GemSquirrelDiamond,
10993 "GemSquirrelAmber" => Self::GemSquirrelAmber,
10994 "GemBunnyAmethyst" => Self::GemBunnyAmethyst,
10995 "GemBunnyTopaz" => Self::GemBunnyTopaz,
10996 "GemBunnySapphire" => Self::GemBunnySapphire,
10997 "GemBunnyEmerald" => Self::GemBunnyEmerald,
10998 "GemBunnyRuby" => Self::GemBunnyRuby,
10999 "GemBunnyDiamond" => Self::GemBunnyDiamond,
11000 "GemBunnyAmber" => Self::GemBunnyAmber,
11001 "HellButterfly" => Self::HellButterfly,
11002 "HellButterflyJar" => Self::HellButterflyJar,
11003 "Lavafly" => Self::Lavafly,
11004 "LavaflyinaBottle" => Self::LavaflyInABottle,
11005 "MagmaSnail" => Self::MagmaSnail,
11006 "MagmaSnailCage" => Self::MagmaSnailCage,
11007 "GemTreeTopazSeed" => Self::GemTreeTopazSeed,
11008 "GemTreeAmethystSeed" => Self::GemTreeAmethystSeed,
11009 "GemTreeSapphireSeed" => Self::GemTreeSapphireSeed,
11010 "GemTreeEmeraldSeed" => Self::GemTreeEmeraldSeed,
11011 "GemTreeRubySeed" => Self::GemTreeRubySeed,
11012 "GemTreeDiamondSeed" => Self::GemTreeDiamondSeed,
11013 "GemTreeAmberSeed" => Self::GemTreeAmberSeed,
11014 "PotSuspended" => Self::PotSuspended,
11015 "PotSuspendedDaybloom" => Self::PotSuspendedDaybloom,
11016 "PotSuspendedMoonglow" => Self::PotSuspendedMoonglow,
11017 "PotSuspendedWaterleaf" => Self::PotSuspendedWaterleaf,
11018 "PotSuspendedShiverthorn" => Self::PotSuspendedShiverthorn,
11019 "PotSuspendedBlinkroot" => Self::PotSuspendedBlinkroot,
11020 "PotSuspendedDeathweedCorrupt" => Self::PotSuspendedDeathweedCorrupt,
11021 "PotSuspendedDeathweedCrimson" => Self::PotSuspendedDeathweedCrimson,
11022 "PotSuspendedFireblossom" => Self::PotSuspendedFireblossom,
11023 "BrazierSuspended" => Self::BrazierSuspended,
11024 "VolcanoSmall" => Self::VolcanoSmall,
11025 "VolcanoLarge" => Self::VolcanoLarge,
11026 "PotionOfReturn" => Self::PotionOfReturn,
11027 "VanityTreeSakuraSeed" => Self::VanityTreeSakuraSeed,
11028 "LavaAbsorbantSponge" => Self::LavaAbsorbantSponge,
11029 "HallowedHood" => Self::HallowedHood,
11030 "HellfireTreads" => Self::HellfireTreads,
11031 "TeleportationPylonJungle" => Self::TeleportationPylonJungle,
11032 "TeleportationPylonPurity" => Self::TeleportationPylonPurity,
11033 "LavaCrate" => Self::LavaCrate,
11034 "LavaCrateHard" => Self::LavaCrateHard,
11035 "ObsidianLockbox" => Self::ObsidianLockbox,
11036 "LavaFishbowl" => Self::LavaFishbowl,
11037 "LavaFishingHook" => Self::LavaFishingHook,
11038 "AmethystBunnyCage" => Self::AmethystBunnyCage,
11039 "TopazBunnyCage" => Self::TopazBunnyCage,
11040 "SapphireBunnyCage" => Self::SapphireBunnyCage,
11041 "EmeraldBunnyCage" => Self::EmeraldBunnyCage,
11042 "RubyBunnyCage" => Self::RubyBunnyCage,
11043 "DiamondBunnyCage" => Self::DiamondBunnyCage,
11044 "AmberBunnyCage" => Self::AmberBunnyCage,
11045 "AmethystSquirrelCage" => Self::AmethystSquirrelCage,
11046 "TopazSquirrelCage" => Self::TopazSquirrelCage,
11047 "SapphireSquirrelCage" => Self::SapphireSquirrelCage,
11048 "EmeraldSquirrelCage" => Self::EmeraldSquirrelCage,
11049 "RubySquirrelCage" => Self::RubySquirrelCage,
11050 "DiamondSquirrelCage" => Self::DiamondSquirrelCage,
11051 "AmberSquirrelCage" => Self::AmberSquirrelCage,
11052 "AncientHallowedMask" => Self::AncientHallowedMask,
11053 "AncientHallowedHelmet" => Self::AncientHallowedHelmet,
11054 "AncientHallowedHeadgear" => Self::AncientHallowedHeadgear,
11055 "AncientHallowedHood" => Self::AncientHallowedHood,
11056 "AncientHallowedPlateMail" => Self::AncientHallowedPlateMail,
11057 "AncientHallowedGreaves" => Self::AncientHallowedGreaves,
11058 "PottedLavaPlantPalm" => Self::PottedLavaPlantPalm,
11059 "PottedLavaPlantBush" => Self::PottedLavaPlantBush,
11060 "PottedLavaPlantBramble" => Self::PottedLavaPlantBramble,
11061 "PottedLavaPlantBulb" => Self::PottedLavaPlantBulb,
11062 "PottedLavaPlantTendrils" => Self::PottedLavaPlantTendrils,
11063 "VanityTreeYellowWillowSeed" => Self::VanityTreeYellowWillowSeed,
11064 "DirtBomb" => Self::DirtBomb,
11065 "DirtStickyBomb" => Self::DirtStickyBomb,
11066 "LicenseBunny" => Self::LicenseBunny,
11067 "CoolWhip" => Self::CoolWhip,
11068 "FireWhip" => Self::FireWhip,
11069 "ThornWhip" => Self::ThornWhip,
11070 "RainbowWhip" => Self::RainbowWhip,
11071 "TungstenBullet" => Self::TungstenBullet,
11072 "TeleportationPylonHallow" => Self::TeleportationPylonHallow,
11073 "TeleportationPylonUnderground" => Self::TeleportationPylonUnderground,
11074 "TeleportationPylonOcean" => Self::TeleportationPylonOcean,
11075 "TeleportationPylonDesert" => Self::TeleportationPylonDesert,
11076 "TeleportationPylonSnow" => Self::TeleportationPylonSnow,
11077 "TeleportationPylonMushroom" => Self::TeleportationPylonMushroom,
11078 "CavernFountain" => Self::CavernFountain,
11079 "PiercingStarlight" => Self::PiercingStarlight,
11080 "EyeofCthulhuMasterTrophy" => Self::EyeOfCthulhuMasterTrophy,
11081 "EaterofWorldsMasterTrophy" => Self::EaterOfWorldsMasterTrophy,
11082 "BrainofCthulhuMasterTrophy" => Self::BrainOfCthulhuMasterTrophy,
11083 "SkeletronMasterTrophy" => Self::SkeletronMasterTrophy,
11084 "QueenBeeMasterTrophy" => Self::QueenBeeMasterTrophy,
11085 "KingSlimeMasterTrophy" => Self::KingSlimeMasterTrophy,
11086 "WallofFleshMasterTrophy" => Self::WallOfFleshMasterTrophy,
11087 "TwinsMasterTrophy" => Self::TwinsMasterTrophy,
11088 "DestroyerMasterTrophy" => Self::DestroyerMasterTrophy,
11089 "SkeletronPrimeMasterTrophy" => Self::SkeletronPrimeMasterTrophy,
11090 "PlanteraMasterTrophy" => Self::PlanteraMasterTrophy,
11091 "GolemMasterTrophy" => Self::GolemMasterTrophy,
11092 "DukeFishronMasterTrophy" => Self::DukeFishronMasterTrophy,
11093 "LunaticCultistMasterTrophy" => Self::LunaticCultistMasterTrophy,
11094 "MoonLordMasterTrophy" => Self::MoonLordMasterTrophy,
11095 "UFOMasterTrophy" => Self::UFOMasterTrophy,
11096 "FlyingDutchmanMasterTrophy" => Self::FlyingDutchmanMasterTrophy,
11097 "MourningWoodMasterTrophy" => Self::MourningWoodMasterTrophy,
11098 "PumpkingMasterTrophy" => Self::PumpkingMasterTrophy,
11099 "IceQueenMasterTrophy" => Self::IceQueenMasterTrophy,
11100 "EverscreamMasterTrophy" => Self::EverscreamMasterTrophy,
11101 "SantankMasterTrophy" => Self::SantankMasterTrophy,
11102 "DarkMageMasterTrophy" => Self::DarkMageMasterTrophy,
11103 "OgreMasterTrophy" => Self::OgreMasterTrophy,
11104 "BetsyMasterTrophy" => Self::BetsyMasterTrophy,
11105 "FairyQueenMasterTrophy" => Self::FairyQueenMasterTrophy,
11106 "QueenSlimeMasterTrophy" => Self::QueenSlimeMasterTrophy,
11107 "TeleportationPylonVictory" => Self::TeleportationPylonVictory,
11108 "FairyQueenMagicItem" => Self::FairyQueenMagic,
11109 "FairyQueenRangedItem" => Self::FairyQueenRanged,
11110 "LongRainbowTrailWings" => Self::LongRainbowTrailWings,
11111 "RabbitOrder" => Self::RabbitOrder,
11112 "Zenith" => Self::Zenith,
11113 "QueenSlimeBossBag" => Self::QueenSlimeBossBag,
11114 "QueenSlimeTrophy" => Self::QueenSlimeTrophy,
11115 "QueenSlimeMask" => Self::QueenSlimeMask,
11116 "QueenSlimePetItem" => Self::QueenSlimePet,
11117 "EmpressButterfly" => Self::EmpressButterfly,
11118 "AccentSlab" => Self::AccentSlab,
11119 "TruffleWormCage" => Self::TruffleWormCage,
11120 "EmpressButterflyJar" => Self::EmpressButterflyJar,
11121 "RockGolemBanner" => Self::RockGolemBanner,
11122 "BloodMummyBanner" => Self::BloodMummyBanner,
11123 "SporeSkeletonBanner" => Self::SporeSkeletonBanner,
11124 "SporeBatBanner" => Self::SporeBatBanner,
11125 "LarvaeAntlionBanner" => Self::LarvaeAntlionBanner,
11126 "CrimsonBunnyBanner" => Self::CrimsonBunnyBanner,
11127 "CrimsonGoldfishBanner" => Self::CrimsonGoldfishBanner,
11128 "CrimsonPenguinBanner" => Self::CrimsonPenguinBanner,
11129 "BigMimicCorruptionBanner" => Self::BigMimicCorruptionBanner,
11130 "BigMimicCrimsonBanner" => Self::BigMimicCrimsonBanner,
11131 "BigMimicHallowBanner" => Self::BigMimicHallowBanner,
11132 "MossHornetBanner" => Self::MossHornetBanner,
11133 "WanderingEyeBanner" => Self::WanderingEyeBanner,
11134 "CreativeWings" => Self::CreativeWings,
11135 "MusicBoxQueenSlime" => Self::MusicBoxQueenSlime,
11136 "QueenSlimeHook" => Self::QueenSlimeHook,
11137 "QueenSlimeMountSaddle" => Self::QueenSlimeMountSaddle,
11138 "CrystalNinjaHelmet" => Self::CrystalNinjaHelmet,
11139 "CrystalNinjaChestplate" => Self::CrystalNinjaChestplate,
11140 "CrystalNinjaLeggings" => Self::CrystalNinjaLeggings,
11141 "MusicBoxEmpressOfLight" => Self::MusicBoxEmpressOfLight,
11142 "GelBalloon" => Self::GelBalloon,
11143 "VolatileGelatin" => Self::VolatileGelatin,
11144 "QueenSlimeCrystal" => Self::QueenSlimeCrystal,
11145 "EmpressFlightBooster" => Self::EmpressFlightBooster,
11146 "MusicBoxDukeFishron" => Self::MusicBoxDukeFishron,
11147 "MusicBoxMorningRain" => Self::MusicBoxMorningRain,
11148 "MusicBoxConsoleTitle" => Self::MusicBoxConsoleTitle,
11149 "ChippysCouch" => Self::ChippysCouch,
11150 "GraduationCapBlue" => Self::GraduationCapBlue,
11151 "GraduationCapMaroon" => Self::GraduationCapMaroon,
11152 "GraduationCapBlack" => Self::GraduationCapBlack,
11153 "GraduationGownBlue" => Self::GraduationGownBlue,
11154 "GraduationGownMaroon" => Self::GraduationGownMaroon,
11155 "GraduationGownBlack" => Self::GraduationGownBlack,
11156 "TerrasparkBoots" => Self::TerrasparkBoots,
11157 "MoonLordLegs" => Self::MoonLordLegs,
11158 "OceanCrate" => Self::OceanCrate,
11159 "OceanCrateHard" => Self::OceanCrateHard,
11160 "BadgersHat" => Self::BadgersHat,
11161 "EmpressBlade" => Self::EmpressBlade,
11162 "MusicBoxUndergroundDesert" => Self::MusicBoxUndergroundDesert,
11163 "DeadMansSweater" => Self::DeadMansSweater,
11164 "TeaKettle" => Self::TeaKettle,
11165 "Teacup" => Self::Teacup,
11166 "TreasureMagnet" => Self::TreasureMagnet,
11167 "Mace" => Self::Mace,
11168 "FlamingMace" => Self::FlamingMace,
11169 "SleepingIcon" => Self::SleepingIcon,
11170 "MusicBoxOWRain" => Self::MusicBoxOWRain,
11171 "MusicBoxOWDay" => Self::MusicBoxOWDay,
11172 "MusicBoxOWNight" => Self::MusicBoxOWNight,
11173 "MusicBoxOWUnderground" => Self::MusicBoxOWUnderground,
11174 "MusicBoxOWDesert" => Self::MusicBoxOWDesert,
11175 "MusicBoxOWOcean" => Self::MusicBoxOWOcean,
11176 "MusicBoxOWMushroom" => Self::MusicBoxOWMushroom,
11177 "MusicBoxOWDungeon" => Self::MusicBoxOWDungeon,
11178 "MusicBoxOWSpace" => Self::MusicBoxOWSpace,
11179 "MusicBoxOWUnderworld" => Self::MusicBoxOWUnderworld,
11180 "MusicBoxOWSnow" => Self::MusicBoxOWSnow,
11181 "MusicBoxOWCorruption" => Self::MusicBoxOWCorruption,
11182 "MusicBoxOWUndergroundCorruption" => Self::MusicBoxOWUndergroundCorruption,
11183 "MusicBoxOWCrimson" => Self::MusicBoxOWCrimson,
11184 "MusicBoxOWUndergroundCrimson" => Self::MusicBoxOWUndergroundCrimson,
11185 "MusicBoxOWUndergroundSnow" => Self::MusicBoxOWUndergroundSnow,
11186 "MusicBoxOWUndergroundHallow" => Self::MusicBoxOWUndergroundHallow,
11187 "MusicBoxOWBloodMoon" => Self::MusicBoxOWBloodMoon,
11188 "MusicBoxOWBoss2" => Self::MusicBoxOWBoss2,
11189 "MusicBoxOWBoss1" => Self::MusicBoxOWBoss1,
11190 "MusicBoxOWInvasion" => Self::MusicBoxOWInvasion,
11191 "MusicBoxOWTowers" => Self::MusicBoxOWTowers,
11192 "MusicBoxOWMoonLord" => Self::MusicBoxOWMoonLord,
11193 "MusicBoxOWPlantera" => Self::MusicBoxOWPlantera,
11194 "MusicBoxOWJungle" => Self::MusicBoxOWJungle,
11195 "MusicBoxOWWallOfFlesh" => Self::MusicBoxOWWallOfFlesh,
11196 "MusicBoxOWHallow" => Self::MusicBoxOWHallow,
11197 "MilkCarton" => Self::MilkCarton,
11198 "CoffeeCup" => Self::CoffeeCup,
11199 "TorchGodsFavor" => Self::TorchGodsFavor,
11200 "MusicBoxCredits" => Self::MusicBoxCredits,
11201 "PlaguebringerHelmet" => Self::PlaguebringerHelmet,
11202 "PlaguebringerChestplate" => Self::PlaguebringerChestplate,
11203 "PlaguebringerGreaves" => Self::PlaguebringerGreaves,
11204 "RoninHat" => Self::RoninHat,
11205 "RoninShirt" => Self::RoninShirt,
11206 "RoninPants" => Self::RoninPants,
11207 "TimelessTravelerHood" => Self::TimelessTravelerHood,
11208 "TimelessTravelerRobe" => Self::TimelessTravelerRobe,
11209 "TimelessTravelerBottom" => Self::TimelessTravelerBottom,
11210 "FloretProtectorHelmet" => Self::FloretProtectorHelmet,
11211 "FloretProtectorChestplate" => Self::FloretProtectorChestplate,
11212 "FloretProtectorLegs" => Self::FloretProtectorLegs,
11213 "CapricornMask" => Self::CapricornMask,
11214 "CapricornChestplate" => Self::CapricornChestplate,
11215 "CapricornLegs" => Self::CapricornLegs,
11216 "CapricornTail" => Self::CapricornTail,
11217 "TVHeadMask" => Self::TVHeadMask,
11218 "TVHeadSuit" => Self::TVHeadSuit,
11219 "TVHeadPants" => Self::TVHeadPants,
11220 "LavaproofTackleBag" => Self::LavaproofTackleBag,
11221 "PrincessWeapon" => Self::PrincessWeapon,
11222 "BeeHive" => Self::BeeHive,
11223 "AntlionEggs" => Self::AntlionEggs,
11224 "FlinxFurCoat" => Self::FlinxFurCoat,
11225 "FlinxStaff" => Self::FlinxStaff,
11226 "FlinxFur" => Self::FlinxFur,
11227 "RoyalTiara" => Self::RoyalTiara,
11228 "RoyalDressTop" => Self::RoyalDressTop,
11229 "RoyalDressBottom" => Self::RoyalDressBottom,
11230 "BoneWhip" => Self::BoneWhip,
11231 "RainbowCursor" => Self::RainbowCursor,
11232 "RoyalScepter" => Self::RoyalScepter,
11233 "GlassSlipper" => Self::GlassSlipper,
11234 "PrinceUniform" => Self::PrinceUniform,
11235 "PrincePants" => Self::PrincePants,
11236 "PrinceCape" => Self::PrinceCape,
11237 "PottedCrystalPlantFern" => Self::PottedCrystalPlantFern,
11238 "PottedCrystalPlantSpiral" => Self::PottedCrystalPlantSpiral,
11239 "PottedCrystalPlantTeardrop" => Self::PottedCrystalPlantTeardrop,
11240 "PottedCrystalPlantTree" => Self::PottedCrystalPlantTree,
11241 "Princess64" => Self::Princess64,
11242 "PaintingOfALass" => Self::PaintingOfALass,
11243 "DarkSideHallow" => Self::DarkSideHallow,
11244 "BerniePetItem" => Self::BerniePet,
11245 "GlommerPetItem" => Self::GlommerPet,
11246 "DeerclopsPetItem" => Self::DeerclopsPet,
11247 "PigPetItem" => Self::PigPet,
11248 "MonsterLasagna" => Self::MonsterLasagna,
11249 "FroggleBunwich" => Self::FroggleBunwich,
11250 "TentacleSpike" => Self::TentacleSpike,
11251 "LucyTheAxe" => Self::LucyTheAxe,
11252 "HamBat" => Self::HamBat,
11253 "BatBat" => Self::BatBat,
11254 "ChesterPetItem" => Self::ChesterPet,
11255 "GarlandHat" => Self::GarlandHat,
11256 "BoneHelm" => Self::BoneHelm,
11257 "Eyebrella" => Self::Eyebrella,
11258 "WilsonShirt" => Self::WilsonShirt,
11259 "WilsonPants" => Self::WilsonPants,
11260 "WilsonBeardShort" => Self::WilsonBeardShort,
11261 "WilsonBeardLong" => Self::WilsonBeardLong,
11262 "WilsonBeardMagnificent" => Self::WilsonBeardMagnificent,
11263 "Magiluminescence" => Self::Magiluminescence,
11264 "DeerclopsTrophy" => Self::DeerclopsTrophy,
11265 "DeerclopsMask" => Self::DeerclopsMask,
11266 "DeerclopsMasterTrophy" => Self::DeerclopsMasterTrophy,
11267 "DeerclopsBossBag" => Self::DeerclopsBossBag,
11268 "MusicBoxDeerclops" => Self::MusicBoxDeerclops,
11269 "DontStarveShaderItem" => Self::DontStarveShader,
11270 "AbigailsFlower" => Self::AbigailsFlower,
11271 "WillowShirt" => Self::WillowShirt,
11272 "WillowSkirt" => Self::WillowSkirt,
11273 "PewMaticHorn" => Self::PewMaticHorn,
11274 "WeatherPain" => Self::WeatherPain,
11275 "HoundiusShootius" => Self::HoundiusShootius,
11276 "DeerThing" => Self::DeerThing,
11277 "PaintingWilson" => Self::PaintingWilson,
11278 "PaintingWillow" => Self::PaintingWillow,
11279 "PaintingWendy" => Self::PaintingWendy,
11280 "PaintingWolfgang" => Self::PaintingWolfgang,
11281 "FartMinecart" => Self::FartMinecart,
11282 "HandOfCreation" => Self::HandOfCreation,
11283 "VioletMoss" => Self::VioletMoss,
11284 "RainbowMoss" => Self::RainbowMoss,
11285 "Flymeal" => Self::Flymeal,
11286 "WolfMountItem" => Self::WolfMount,
11287 "ResplendentDessert" => Self::ResplendentDessert,
11288 "Stinkbug" => Self::Stinkbug,
11289 "StinkbugCage" => Self::StinkbugCage,
11290 "Clentaminator2" => Self::Clentaminator2,
11291 "VenomDartTrap" => Self::VenomDartTrap,
11292 "VulkelfEar" => Self::VulkelfEar,
11293 "StinkbugHousingBlocker" => Self::StinkbugHousingBlocker,
11294 "StinkbugHousingBlockerEcho" => Self::StinkbugHousingBlockerEcho,
11295 "FishingBobber" => Self::FishingBobber,
11296 "FishingBobberGlowingStar" => Self::FishingBobberGlowingStar,
11297 "FishingBobberGlowingLava" => Self::FishingBobberGlowingLava,
11298 "FishingBobberGlowingKrypton" => Self::FishingBobberGlowingKrypton,
11299 "FishingBobberGlowingXenon" => Self::FishingBobberGlowingXenon,
11300 "FishingBobberGlowingArgon" => Self::FishingBobberGlowingArgon,
11301 "FishingBobberGlowingViolet" => Self::FishingBobberGlowingViolet,
11302 "FishingBobberGlowingRainbow" => Self::FishingBobberGlowingRainbow,
11303 "WandofFrosting" => Self::WandOfFrosting,
11304 "CoralBathtub" => Self::CoralBathtub,
11305 "CoralBed" => Self::CoralBed,
11306 "CoralBookcase" => Self::CoralBookcase,
11307 "CoralDresser" => Self::CoralDresser,
11308 "CoralCandelabra" => Self::CoralCandelabra,
11309 "CoralCandle" => Self::CoralCandle,
11310 "CoralChair" => Self::CoralChair,
11311 "CoralChandelier" => Self::CoralChandelier,
11312 "CoralChest" => Self::CoralChest,
11313 "CoralClock" => Self::CoralClock,
11314 "CoralDoor" => Self::CoralDoor,
11315 "CoralLamp" => Self::CoralLamp,
11316 "CoralLantern" => Self::CoralLantern,
11317 "CoralPiano" => Self::CoralPiano,
11318 "CoralPlatform" => Self::CoralPlatform,
11319 "CoralSink" => Self::CoralSink,
11320 "CoralSofa" => Self::CoralSofa,
11321 "CoralTable" => Self::CoralTable,
11322 "CoralWorkbench" => Self::CoralWorkbench,
11323 "Fake_CoralChest" => Self::FakeCoralChest,
11324 "CoralToilet" => Self::CoralToilet,
11325 "BalloonBathtub" => Self::BalloonBathtub,
11326 "BalloonBed" => Self::BalloonBed,
11327 "BalloonBookcase" => Self::BalloonBookcase,
11328 "BalloonDresser" => Self::BalloonDresser,
11329 "BalloonCandelabra" => Self::BalloonCandelabra,
11330 "BalloonCandle" => Self::BalloonCandle,
11331 "BalloonChair" => Self::BalloonChair,
11332 "BalloonChandelier" => Self::BalloonChandelier,
11333 "BalloonChest" => Self::BalloonChest,
11334 "BalloonClock" => Self::BalloonClock,
11335 "BalloonDoor" => Self::BalloonDoor,
11336 "BalloonLamp" => Self::BalloonLamp,
11337 "BalloonLantern" => Self::BalloonLantern,
11338 "BalloonPiano" => Self::BalloonPiano,
11339 "BalloonPlatform" => Self::BalloonPlatform,
11340 "BalloonSink" => Self::BalloonSink,
11341 "BalloonSofa" => Self::BalloonSofa,
11342 "BalloonTable" => Self::BalloonTable,
11343 "BalloonWorkbench" => Self::BalloonWorkbench,
11344 "Fake_BalloonChest" => Self::FakeBalloonChest,
11345 "BalloonToilet" => Self::BalloonToilet,
11346 "AshWoodBathtub" => Self::AshWoodBathtub,
11347 "AshWoodBed" => Self::AshWoodBed,
11348 "AshWoodBookcase" => Self::AshWoodBookcase,
11349 "AshWoodDresser" => Self::AshWoodDresser,
11350 "AshWoodCandelabra" => Self::AshWoodCandelabra,
11351 "AshWoodCandle" => Self::AshWoodCandle,
11352 "AshWoodChair" => Self::AshWoodChair,
11353 "AshWoodChandelier" => Self::AshWoodChandelier,
11354 "AshWoodChest" => Self::AshWoodChest,
11355 "AshWoodClock" => Self::AshWoodClock,
11356 "AshWoodDoor" => Self::AshWoodDoor,
11357 "AshWoodLamp" => Self::AshWoodLamp,
11358 "AshWoodLantern" => Self::AshWoodLantern,
11359 "AshWoodPiano" => Self::AshWoodPiano,
11360 "AshWoodPlatform" => Self::AshWoodPlatform,
11361 "AshWoodSink" => Self::AshWoodSink,
11362 "AshWoodSofa" => Self::AshWoodSofa,
11363 "AshWoodTable" => Self::AshWoodTable,
11364 "AshWoodWorkbench" => Self::AshWoodWorkbench,
11365 "Fake_AshWoodChest" => Self::FakeAshWoodChest,
11366 "AshWoodToilet" => Self::AshWoodToilet,
11367 "BiomeSightPotion" => Self::BiomeSightPotion,
11368 "ScarletMacaw" => Self::ScarletMacaw,
11369 "ScarletMacawCage" => Self::ScarletMacawCage,
11370 "AshGrassSeeds" => Self::AshGrassSeeds,
11371 "AshWood" => Self::AshWood,
11372 "AshWoodWall" => Self::AshWoodWall,
11373 "AshWoodFence" => Self::AshWoodFence,
11374 "Outcast" => Self::Outcast,
11375 "FairyGuides" => Self::FairyGuides,
11376 "AHorribleNightforAlchemy" => Self::AHorribleNightforAlchemy,
11377 "MorningHunt" => Self::MorningHunt,
11378 "SuspiciouslySparkly" => Self::SuspiciouslySparkly,
11379 "Requiem" => Self::Requiem,
11380 "CatSword" => Self::CatSword,
11381 "KargohsSummon" => Self::KargohsSummon,
11382 "HighPitch" => Self::HighPitch,
11383 "AMachineforTerrarians" => Self::AMachineForTerrarians,
11384 "TerraBladeChronicles" => Self::TerraBladeChronicles,
11385 "BennyWarhol" => Self::BennyWarhol,
11386 "LizardKing" => Self::LizardKing,
11387 "MySon" => Self::MySon,
11388 "Duality" => Self::Duality,
11389 "ParsecPals" => Self::ParsecPals,
11390 "RemnantsofDevotion" => Self::RemnantsOfDevotion,
11391 "NotSoLostInParadise" => Self::NotSoLostInParadise,
11392 "OcularResonance" => Self::OcularResonance,
11393 "WingsofEvil" => Self::WingsOfEvil,
11394 "Constellation" => Self::Constellation,
11395 "Eyezorhead" => Self::Eyezorhead,
11396 "DreadoftheRedSea" => Self::DreadOfTheRedSea,
11397 "DoNotEattheVileMushroom" => Self::DoNotEatTheVileMushroom,
11398 "YuumaTheBlueTiger" => Self::YuumaTheBlueTiger,
11399 "MoonmanandCompany" => Self::MoonmanandCompany,
11400 "SunshineofIsrapony" => Self::SunshineOfIsrapony,
11401 "Purity" => Self::Purity,
11402 "SufficientlyAdvanced" => Self::SufficientlyAdvanced,
11403 "StrangeGrowth" => Self::StrangeGrowth,
11404 "HappyLittleTree" => Self::HappyLittleTree,
11405 "StrangeDeadFellows" => Self::StrangeDeadFellows,
11406 "Secrets" => Self::Secrets,
11407 "Thunderbolt" => Self::Thunderbolt,
11408 "Crustography" => Self::Crustography,
11409 "TheWerewolf" => Self::TheWerewolf,
11410 "BlessingfromTheHeavens" => Self::BlessingFromTheHeavens,
11411 "LoveisintheTrashSlot" => Self::LoveIsInTheTrashSlot,
11412 "Fangs" => Self::Fangs,
11413 "HailtotheKing" => Self::HailToTheKing,
11414 "SeeTheWorldForWhatItIs" => Self::SeeTheWorldForWhatItIs,
11415 "WhatLurksBelow" => Self::WhatLurksBelow,
11416 "ThisIsGettingOutOfHand" => Self::ThisIsGettingOutOfHand,
11417 "Buddies" => Self::Buddies,
11418 "MidnightSun" => Self::MidnightSun,
11419 "CouchGag" => Self::CouchGag,
11420 "SilentFish" => Self::SilentFish,
11421 "TheDuke" => Self::TheDuke,
11422 "RoyalRomance" => Self::RoyalRomance,
11423 "Bioluminescence" => Self::Bioluminescence,
11424 "Wildflowers" => Self::Wildflowers,
11425 "VikingVoyage" => Self::VikingVoyage,
11426 "Bifrost" => Self::Bifrost,
11427 "Heartlands" => Self::Heartlands,
11428 "ForestTroll" => Self::ForestTroll,
11429 "AuroraBorealis" => Self::AuroraBorealis,
11430 "LadyOfTheLake" => Self::LadyOfTheLake,
11431 "JojaCola" => Self::JojaCola,
11432 "JunimoPetItem" => Self::JunimoPet,
11433 "SpicyPepper" => Self::SpicyPepper,
11434 "Pomegranate" => Self::Pomegranate,
11435 "AshWoodHelmet" => Self::AshWoodHelmet,
11436 "AshWoodBreastplate" => Self::AshWoodBreastplate,
11437 "AshWoodGreaves" => Self::AshWoodGreaves,
11438 "AshWoodBow" => Self::AshWoodBow,
11439 "AshWoodHammer" => Self::AshWoodHammer,
11440 "AshWoodSword" => Self::AshWoodSword,
11441 "MoonGlobe" => Self::MoonGlobe,
11442 "RepairedLifeCrystal" => Self::RepairedLifeCrystal,
11443 "RepairedManaCrystal" => Self::RepairedManaCrystal,
11444 "TerraFartMinecart" => Self::TerraFartMinecart,
11445 "MinecartPowerup" => Self::MinecartPowerUp,
11446 "JimsCap" => Self::JimsCap,
11447 "EchoWall" => Self::EchoWall,
11448 "EchoPlatform" => Self::EchoPlatform,
11449 "MushroomTorch" => Self::MushroomTorch,
11450 "HiveFive" => Self::HiveFive,
11451 "AcornAxe" => Self::AcornAxe,
11452 "ChlorophyteExtractinator" => Self::ChlorophyteExtractinator,
11453 "BlueEgg" => Self::BlueEgg,
11454 "Trimarang" => Self::Trimarang,
11455 "MushroomCampfire" => Self::MushroomCampfire,
11456 "BlueMacaw" => Self::BlueMacaw,
11457 "BlueMacawCage" => Self::BlueMacawCage,
11458 "BottomlessHoneyBucket" => Self::BottomlessHoneyBucket,
11459 "HoneyAbsorbantSponge" => Self::HoneyAbsorbantSponge,
11460 "UltraAbsorbantSponge" => Self::UltraAbsorbantSponge,
11461 "GoblorcEar" => Self::GoblorcEar,
11462 "ReefBlock" => Self::ReefBlock,
11463 "ReefWall" => Self::ReefWall,
11464 "PlacePainting" => Self::PlacePainting,
11465 "DontHurtNatureBook" => Self::DontHurtNatureBook,
11466 "PrincessStyle" => Self::PrincessStyle,
11467 "Toucan" => Self::Toucan,
11468 "YellowCockatiel" => Self::YellowCockatiel,
11469 "GrayCockatiel" => Self::GrayCockatiel,
11470 "ToucanCage" => Self::ToucanCage,
11471 "YellowCockatielCage" => Self::YellowCockatielCage,
11472 "GrayCockatielCage" => Self::GrayCockatielCage,
11473 "MacawStatue" => Self::MacawStatue,
11474 "ToucanStatue" => Self::ToucanStatue,
11475 "CockatielStatue" => Self::CockatielStatue,
11476 "PlaceableHealingPotion" => Self::PlaceableHealingPotion,
11477 "PlaceableManaPotion" => Self::PlaceableManaPotion,
11478 "ShadowCandle" => Self::ShadowCandle,
11479 "DontHurtComboBook" => Self::DontHurtComboBook,
11480 "RubblemakerSmall" => Self::RubblemakerSmall,
11481 "ClosedVoidBag" => Self::ClosedVoidBag,
11482 "ArtisanLoaf" => Self::ArtisanLoaf,
11483 "TNTBarrel" => Self::TNTBarrel,
11484 "ChestLock" => Self::ChestLock,
11485 "RubblemakerMedium" => Self::RubblemakerMedium,
11486 "RubblemakerLarge" => Self::RubblemakerLarge,
11487 "HorseshoeBundle" => Self::HorseshoeBundle,
11488 "SpiffoPlush" => Self::SpiffoPlush,
11489 "GlowTulip" => Self::GlowTulip,
11490 "MechdusaSummon" => Self::MechdusaSummon,
11491 "RodOfHarmony" => Self::RodOfHarmony,
11492 "CombatBookVolumeTwo" => Self::CombatBookVolumeTwo,
11493 "AegisCrystal" => Self::AegisCrystal,
11494 "AegisFruit" => Self::AegisFruit,
11495 "ArcaneCrystal" => Self::ArcaneCrystal,
11496 "GalaxyPearl" => Self::GalaxyPearl,
11497 "GummyWorm" => Self::GummyWorm,
11498 "Ambrosia" => Self::Ambrosia,
11499 "PeddlersSatchel" => Self::PeddlersSatchel,
11500 "EchoCoating" => Self::EchoCoating,
11501 "EchoMonolith" => Self::EchoMonolith,
11502 "GasTrap" => Self::GasTrap,
11503 "ShimmerMonolith" => Self::ShimmerMonolith,
11504 "ShimmerArrow" => Self::ShimmerArrow,
11505 "ShimmerBlock" => Self::ShimmerBlock,
11506 "Shimmerfly" => Self::Shimmerfly,
11507 "ShimmerflyinaBottle" => Self::ShimmerflyInABottle,
11508 "ShimmerSlimeBanner" => Self::ShimmerSlimeBanner,
11509 "ShimmerTorch" => Self::ShimmerTorch,
11510 "ReflectiveShades" => Self::ReflectiveShades,
11511 "ShimmerCloak" => Self::ShimmerCloak,
11512 "UsedGasTrap" => Self::UsedGasTrap,
11513 "ShimmerCampfire" => Self::ShimmerCampfire,
11514 "Shellphone" => Self::Shellphone,
11515 "ShellphoneSpawn" => Self::ShellphoneSpawn,
11516 "ShellphoneOcean" => Self::ShellphoneOcean,
11517 "ShellphoneHell" => Self::ShellphoneHell,
11518 "MusicBoxShimmer" => Self::MusicBoxShimmer,
11519 "SpiderWallUnsafe" => Self::SpiderWallUnsafe,
11520 "BottomlessShimmerBucket" => Self::BottomlessShimmerBucket,
11521 "BlueBrickWallUnsafe" => Self::BlueBrickWallUnsafe,
11522 "BlueSlabWallUnsafe" => Self::BlueSlabWallUnsafe,
11523 "BlueTiledWallUnsafe" => Self::BlueTiledWallUnsafe,
11524 "PinkBrickWallUnsafe" => Self::PinkBrickWallUnsafe,
11525 "PinkSlabWallUnsafe" => Self::PinkSlabWallUnsafe,
11526 "PinkTiledWallUnsafe" => Self::PinkTiledWallUnsafe,
11527 "GreenBrickWallUnsafe" => Self::GreenBrickWallUnsafe,
11528 "GreenSlabWallUnsafe" => Self::GreenSlabWallUnsafe,
11529 "GreenTiledWallUnsafe" => Self::GreenTiledWallUnsafe,
11530 "SandstoneWallUnsafe" => Self::SandstoneWallUnsafe,
11531 "HardenedSandWallUnsafe" => Self::HardenedSandWallUnsafe,
11532 "LihzahrdWallUnsafe" => Self::LihzahrdWallUnsafe,
11533 "SpelunkerFlare" => Self::SpelunkerFlare,
11534 "CursedFlare" => Self::CursedFlare,
11535 "RainbowFlare" => Self::RainbowFlare,
11536 "ShimmerFlare" => Self::ShimmerFlare,
11537 "Moondial" => Self::Moondial,
11538 "WaffleIron" => Self::WaffleIron,
11539 "BouncyBoulder" => Self::BouncyBoulder,
11540 "LifeCrystalBoulder" => Self::LifeCrystalBoulder,
11541 "DizzyHat" => Self::DizzyHat,
11542 "LincolnsHoodie" => Self::LincolnsHoodie,
11543 "LincolnsPants" => Self::LincolnsPants,
11544 "SunOrnament" => Self::SunOrnament,
11545 "HoplitePizza" => Self::HoplitePizza,
11546 "LincolnsHood" => Self::LincolnsHood,
11547 "UncumberingStone" => Self::UncumberingStone,
11548 "SandSolution" => Self::SandSolution,
11549 "SnowSolution" => Self::SnowSolution,
11550 "DirtSolution" => Self::DirtSolution,
11551 "PoopBlock" => Self::PoopBlock,
11552 "PoopWall" => Self::PoopWall,
11553 "ShimmerWall" => Self::ShimmerWall,
11554 "ShimmerBrick" => Self::ShimmerBrick,
11555 "ShimmerBrickWall" => Self::ShimmerBrickWall,
11556 "DirtiestBlock" => Self::DirtiestBlock,
11557 "LunarRustBrick" => Self::LunarRustBrick,
11558 "DarkCelestialBrick" => Self::DarkCelestialBrick,
11559 "AstraBrick" => Self::AstraBrick,
11560 "CosmicEmberBrick" => Self::CosmicEmberBrick,
11561 "CryocoreBrick" => Self::CryocoreBrick,
11562 "MercuryBrick" => Self::MercuryBrick,
11563 "StarRoyaleBrick" => Self::StarRoyaleBrick,
11564 "HeavenforgeBrick" => Self::HeavenforgeBrick,
11565 "LunarRustBrickWall" => Self::LunarRustBrickWall,
11566 "DarkCelestialBrickWall" => Self::DarkCelestialBrickWall,
11567 "AstraBrickWall" => Self::AstraBrickWall,
11568 "CosmicEmberBrickWall" => Self::CosmicEmberBrickWall,
11569 "CryocoreBrickWall" => Self::CryocoreBrickWall,
11570 "MercuryBrickWall" => Self::MercuryBrickWall,
11571 "StarRoyaleBrickWall" => Self::StarRoyaleBrickWall,
11572 "HeavenforgeBrickWall" => Self::HeavenforgeBrickWall,
11573 "AncientBlueDungeonBrick" => Self::AncientBlueDungeonBrick,
11574 "AncientBlueDungeonBrickWall" => Self::AncientBlueDungeonBrickWall,
11575 "AncientGreenDungeonBrick" => Self::AncientGreenDungeonBrick,
11576 "AncientGreenDungeonBrickWall" => Self::AncientGreenDungeonBrickWall,
11577 "AncientPinkDungeonBrick" => Self::AncientPinkDungeonBrick,
11578 "AncientPinkDungeonBrickWall" => Self::AncientPinkDungeonBrickWall,
11579 "AncientGoldBrick" => Self::AncientGoldBrick,
11580 "AncientGoldBrickWall" => Self::AncientGoldBrickWall,
11581 "AncientSilverBrick" => Self::AncientSilverBrick,
11582 "AncientSilverBrickWall" => Self::AncientSilverBrickWall,
11583 "AncientCopperBrick" => Self::AncientCopperBrick,
11584 "AncientCopperBrickWall" => Self::AncientCopperBrickWall,
11585 "AncientCobaltBrick" => Self::AncientCobaltBrick,
11586 "AncientCobaltBrickWall" => Self::AncientCobaltBrickWall,
11587 "AncientMythrilBrick" => Self::AncientMythrilBrick,
11588 "AncientMythrilBrickWall" => Self::AncientMythrilBrickWall,
11589 "AncientObsidianBrick" => Self::AncientObsidianBrick,
11590 "AncientObsidianBrickWall" => Self::AncientObsidianBrickWall,
11591 "AncientHellstoneBrick" => Self::AncientHellstoneBrick,
11592 "AncientHellstoneBrickWall" => Self::AncientHellstoneBrickWall,
11593 "ShellphoneDummy" => Self::ShellphoneDummy,
11594 "Fertilizer" => Self::Fertilizer,
11595 "LavaMossBlock" => Self::LavaMossBlock,
11596 "ArgonMossBlock" => Self::ArgonMossBlock,
11597 "KryptonMossBlock" => Self::KryptonMossBlock,
11598 "XenonMossBlock" => Self::XenonMossBlock,
11599 "VioletMossBlock" => Self::VioletMossBlock,
11600 "RainbowMossBlock" => Self::RainbowMossBlock,
11601 "LavaMossBlockWall" => Self::LavaMossBlockWall,
11602 "ArgonMossBlockWall" => Self::ArgonMossBlockWall,
11603 "KryptonMossBlockWall" => Self::KryptonMossBlockWall,
11604 "XenonMossBlockWall" => Self::XenonMossBlockWall,
11605 "VioletMossBlockWall" => Self::VioletMossBlockWall,
11606 "RainbowMossBlockWall" => Self::RainbowMossBlockWall,
11607 "JimsDrone" => Self::JimsDrone,
11608 "JimsDroneVisor" => Self::JimsDroneVisor,
11609 "DontHurtCrittersBookInactive" => Self::DontHurtCrittersBookInactive,
11610 "DontHurtNatureBookInactive" => Self::DontHurtNatureBookInactive,
11611 "DontHurtComboBookInactive" => Self::DontHurtComboBookInactive,
11612 "DeadCellsMushroomBoiSummonItem" => Self::DeadCellsMushroomBoiSummonItem,
11613 "DeadCellsBeheadedHead" => Self::DeadCellsBeheadedHead,
11614 "DeadCellsBeheadedBody" => Self::DeadCellsBeheadedBody,
11615 "DeadCellsBeheadedLegs" => Self::DeadCellsBeheadedLegs,
11616 "DeadCellsBarrelLauncher" => Self::DeadCellsBarrelLauncher,
11617 "DeadCellsKillingDeck" => Self::DeadCellsKillingDeck,
11618 "DeadCellsFlint" => Self::DeadCellsFlint,
11619 "DeadCellsBarnacleSummonItem" => Self::DeadCellsBarnacleSummonItem,
11620 "MiteyTitey" => Self::MiteyTitey,
11621 "DeadCellsRamRune" => Self::DeadCellsRamRune,
11622 "DeadCellsSwarmGrenade" => Self::DeadCellsSwarmGrenade,
11623 "DemonAltarReplica" => Self::DemonAltarReplica,
11624 "CrimsonAltarReplica" => Self::CrimsonAltarReplica,
11625 "ShadowOrbReplica" => Self::ShadowOrbReplica,
11626 "CrimsonHeartReplica" => Self::CrimsonHeartReplica,
11627 "CobwebReplica" => Self::CobwebReplica,
11628 "DeadCellsDisplayJar" => Self::DeadCellsDisplayJar,
11629 "CobWhip" => Self::CobWhip,
11630 "CorruptWhip" => Self::CorruptWhip,
11631 "CrimsonWhip" => Self::CrimsonWhip,
11632 "MeteorWhip" => Self::MeteorWhip,
11633 "FlowerWhip" => Self::FlowerWhip,
11634 "EelWhip" => Self::EelWhip,
11635 "ConstellationWhip" => Self::ConstellationWhip,
11636 "MoonLordWhip" => Self::MoonLordWhip,
11637 "PortableKiln" => Self::PortableKiln,
11638 "DeadCellsPotionStation" => Self::DeadCellsPotionStation,
11639 "QueenOfBees" => Self::QueenOfBees,
11640 "PlayerVoiceCowbellItem" => Self::PlayerVoiceCowbellItem,
11641 "PlayerVoiceChickenFeetItem" => Self::PlayerVoiceChickenFeetItem,
11642 "TheSeaOfSilence" => Self::TheSeaOfSilence,
11643 "HeroesFromAnotherWorld" => Self::HeroesFromAnotherWorld,
11644 "Crystallize" => Self::Crystallize,
11645 "EaterOfLife" => Self::EaterOfLife,
11646 "ThisIsCanonNow" => Self::ThisIsCanonNow,
11647 "WinterAtVaringskollen" => Self::WinterAtVaringskollen,
11648 "MagicShimmerDropper" => Self::MagicShimmerDropper,
11649 "ShimmerFallBlock" => Self::ShimmerFallBlock,
11650 "ShimmerFallWall" => Self::ShimmerFallWall,
11651 "ShimmerGun" => Self::ShimmerGun,
11652 "LifeFruitHealingPotion" => Self::LifeFruitHealingPotion,
11653 "PinkBanner" => Self::PinkBanner,
11654 "WhiteBanner" => Self::WhiteBanner,
11655 "PlayerVoiceFrogItem" => Self::PlayerVoiceFrogItem,
11656 "PlayerVoiceGoatItem" => Self::PlayerVoiceGoatItem,
11657 "PlayerVoiceRetroItem" => Self::PlayerVoiceRetroItem,
11658 "PlayerVoiceCatItem" => Self::PlayerVoiceCatItem,
11659 "PlayerVoiceDogItem" => Self::PlayerVoiceDogItem,
11660 "PlayerVoiceTurkeyItem" => Self::PlayerVoiceTurkeyItem,
11661 "PlayerVoiceGoblinItem" => Self::PlayerVoiceGoblinItem,
11662 "PlayerVoiceCrowItem" => Self::PlayerVoiceCrowItem,
11663 "PlayerVoiceBalloonItem" => Self::PlayerVoiceBalloonItem,
11664 "PlayerVoiceUndeadItem" => Self::PlayerVoiceUndeadItem,
11665 "PlayerVoiceVampireItem" => Self::PlayerVoiceVampireItem,
11666 "VelociraptorMountItem" => Self::VelociraptorMountItem,
11667 "Pufferfish" => Self::Pufferfish,
11668 "PufferfishCage" => Self::PufferfishCage,
11669 "PufferfishPet" => Self::PufferfishPet,
11670 "RainbowBoulder" => Self::RainbowBoulder,
11671 "MoonLordBody" => Self::MoonLordBody,
11672 "Poulder" => Self::Poulder,
11673 "AxeFairyPetItem" => Self::AxeFairyPetItem,
11674 "SuperFertilizer" => Self::SuperFertilizer,
11675 "Axearang" => Self::Axearang,
11676 "LavaBoulder" => Self::LavaBoulder,
11677 "SpiderBoulder" => Self::SpiderBoulder,
11678 "Ghoulder" => Self::Ghoulder,
11679 "BoulderPet" => Self::BoulderPet,
11680 "ChlorophyteVisor" => Self::ChlorophyteVisor,
11681 "RatMountItem" => Self::RatMountItem,
11682 "FlaironFlail" => Self::FlaironFlail,
11683 "OfSeaAndDreams" => Self::OfSeaAndDreams,
11684 "TheRunicPixie" => Self::TheRunicPixie,
11685 "BannerOfTheBeast" => Self::BannerOfTheBeast,
11686 "StickmanVsTerrTerr" => Self::StickmanVsTerrTerr,
11687 "CozyWindow" => Self::CozyWindow,
11688 "DemonAltar" => Self::DemonAltar,
11689 "CrimsonAltar" => Self::CrimsonAltar,
11690 "PlayerVoiceFairyItem" => Self::PlayerVoiceFairyItem,
11691 "PinkPhaseblade" => Self::PinkPhaseblade,
11692 "PinkPhasesaber" => Self::PinkPhasesaber,
11693 "BlackenedFish" => Self::BlackenedFish,
11694 "MusicBoxQueenBee" => Self::MusicBoxQueenBee,
11695 "MusicBoxTwins" => Self::MusicBoxTwins,
11696 "MagicString" => Self::MagicString,
11697 "MagicYoyoBag" => Self::MagicYoyoBag,
11698 "FreezeBomb" => Self::FreezeBomb,
11699 "StressBall" => Self::StressBall,
11700 "CloudPlatform" => Self::CloudPlatform,
11701 "LivingWoodWallUnsafe" => Self::LivingWoodWallUnsafe,
11702 "DirtWallUnsafe" => Self::DirtWallUnsafe,
11703 "StrungCounterweight" => Self::StrungCounterweight,
11704 "AetheriumBathtub" => Self::AetheriumBathtub,
11705 "AetheriumBed" => Self::AetheriumBed,
11706 "AetheriumBookcase" => Self::AetheriumBookcase,
11707 "AetheriumDresser" => Self::AetheriumDresser,
11708 "AetheriumCandelabra" => Self::AetheriumCandelabra,
11709 "AetheriumCandle" => Self::AetheriumCandle,
11710 "AetheriumChair" => Self::AetheriumChair,
11711 "AetheriumChandelier" => Self::AetheriumChandelier,
11712 "AetheriumChest" => Self::AetheriumChest,
11713 "AetheriumClock" => Self::AetheriumClock,
11714 "AetheriumDoor" => Self::AetheriumDoor,
11715 "AetheriumLamp" => Self::AetheriumLamp,
11716 "AetheriumLantern" => Self::AetheriumLantern,
11717 "AetheriumPiano" => Self::AetheriumPiano,
11718 "AetheriumPlatform" => Self::AetheriumPlatform,
11719 "AetheriumSink" => Self::AetheriumSink,
11720 "AetheriumSofa" => Self::AetheriumSofa,
11721 "AetheriumTable" => Self::AetheriumTable,
11722 "AetheriumWorkbench" => Self::AetheriumWorkbench,
11723 "Fake_AetheriumChest" => Self::FakeAetheriumChest,
11724 "AetheriumToilet" => Self::AetheriumToilet,
11725 "LavaCloud" => Self::LavaCloud,
11726 "StarCloud" => Self::StarCloud,
11727 "RainbowCloud" => Self::RainbowCloud,
11728 "MudBallPlayer" => Self::MudBallPlayer,
11729 "TorchGodPotion" => Self::TorchGodPotion,
11730 "LuckyClover" => Self::LuckyClover,
11731 "WiltedClover" => Self::WiltedClover,
11732 "RavenFeather" => Self::RavenFeather,
11733 "PrettyMirror" => Self::PrettyMirror,
11734 "MusicBoxKingSlime" => Self::MusicBoxKingSlime,
11735 "MusicBoxQueenBeeAlt" => Self::MusicBoxQueenBeeAlt,
11736 "MusicBoxLunaticCultist" => Self::MusicBoxLunaticCultist,
11737 "MusicBoxSkeletronPrime" => Self::MusicBoxSkeletronPrime,
11738 "MusicBoxDestroyer" => Self::MusicBoxDestroyer,
11739 "ChickenBonesHead" => Self::ChickenBonesHead,
11740 "ChickenBonesBody" => Self::ChickenBonesBody,
11741 "ChickenBonesLegs" => Self::ChickenBonesLegs,
11742 "ChickenBonesWings" => Self::ChickenBonesWings,
11743 "ChickenBonesRobe" => Self::ChickenBonesRobe,
11744 "UpgradedMiningHead" => Self::UpgradedMiningHead,
11745 "UpgradedMiningBody" => Self::UpgradedMiningBody,
11746 "UpgradedMiningLegs" => Self::UpgradedMiningLegs,
11747 "UpgradedFishingHead" => Self::UpgradedFishingHead,
11748 "UpgradedFishingBody" => Self::UpgradedFishingBody,
11749 "UpgradedFishingLegs" => Self::UpgradedFishingLegs,
11750 "SuperBomb" => Self::SuperBomb,
11751 "SuperStickyBomb" => Self::SuperStickyBomb,
11752 "WeldingMask" => Self::WeldingMask,
11753 "BatMountItem" => Self::BatMountItem,
11754 "CRTMonolith" => Self::CRTMonolith,
11755 "RetroMonolith" => Self::RetroMonolith,
11756 "RollerSkatesBlueMountItem" => Self::RollerSkatesBlueMountItem,
11757 "FallenStarBathtub" => Self::FallenStarBathtub,
11758 "FallenStarBed" => Self::FallenStarBed,
11759 "FallenStarBookcase" => Self::FallenStarBookcase,
11760 "FallenStarDresser" => Self::FallenStarDresser,
11761 "FallenStarCandelabra" => Self::FallenStarCandelabra,
11762 "FallenStarCandle" => Self::FallenStarCandle,
11763 "FallenStarChair" => Self::FallenStarChair,
11764 "FallenStarChandelier" => Self::FallenStarChandelier,
11765 "FallenStarChest" => Self::FallenStarChest,
11766 "FallenStarClock" => Self::FallenStarClock,
11767 "FallenStarDoor" => Self::FallenStarDoor,
11768 "FallenStarLamp" => Self::FallenStarLamp,
11769 "FallenStarLantern" => Self::FallenStarLantern,
11770 "FallenStarPiano" => Self::FallenStarPiano,
11771 "FallenStarPlatform" => Self::FallenStarPlatform,
11772 "FallenStarSink" => Self::FallenStarSink,
11773 "FallenStarSofa" => Self::FallenStarSofa,
11774 "FallenStarTable" => Self::FallenStarTable,
11775 "FallenStarWorkbench" => Self::FallenStarWorkbench,
11776 "Fake_FallenStarChest" => Self::FakeFallenStarChest,
11777 "FallenStarToilet" => Self::FallenStarToilet,
11778 "FallenStarBlock" => Self::FallenStarBlock,
11779 "FallenStarWall" => Self::FallenStarWall,
11780 "ChippysHead" => Self::ChippysHead,
11781 "ChippysBody" => Self::ChippysBody,
11782 "ChippysLegs" => Self::ChippysLegs,
11783 "ChippysWings" => Self::ChippysWings,
11784 "ChippysHeadband" => Self::ChippysHeadband,
11785 "AcornSlingshot" => Self::AcornSlingshot,
11786 "PaintingRPlace2023" => Self::PaintingRPlace2023,
11787 "PaintingBouldChoices" => Self::PaintingBouldChoices,
11788 "PaintingDarkForebodings" => Self::PaintingDarkForebodings,
11789 "PaintingGermanZenith" => Self::PaintingGermanZenith,
11790 "PaintingItsScragglinTime" => Self::PaintingItsScragglinTime,
11791 "PaintingKaguya" => Self::PaintingKaguya,
11792 "PaintingGermanBeer" => Self::PaintingGermanBeer,
11793 "MusicBoxEaterOfWorlds" => Self::MusicBoxEaterOfWorlds,
11794 "MusicBoxTorchGod" => Self::MusicBoxTorchGod,
11795 "MusicBoxTorchGodAlt" => Self::MusicBoxTorchGodAlt,
11796 "RollerSkatesGreenMountItem" => Self::RollerSkatesGreenMountItem,
11797 "RollerSkatesClassicMountItem" => Self::RollerSkatesClassicMountItem,
11798 "RollerSkatesPartyMountItem" => Self::RollerSkatesPartyMountItem,
11799 "RainbowGlowstick" => Self::RainbowGlowstick,
11800 "ScryingOrb" => Self::ScryingOrb,
11801 "RockCandy" => Self::RockCandy,
11802 "BlueBikiniBody" => Self::BlueBikiniBody,
11803 "BlueBikiniLegs" => Self::BlueBikiniLegs,
11804 "RedSwimsuit" => Self::RedSwimsuit,
11805 "GreenSwimshorts" => Self::GreenSwimshorts,
11806 "GraySwimshorts" => Self::GraySwimshorts,
11807 "OrcaBanner" => Self::OrcaBanner,
11808 "TeleportationPylonUnderworld" => Self::TeleportationPylonUnderworld,
11809 "TeleportationPylonShimmer" => Self::TeleportationPylonShimmer,
11810 "RainbowBoulderPet" => Self::RainbowBoulderPet,
11811 "NoirMonolith" => Self::NoirMonolith,
11812 "HeroicisHead" => Self::HeroicisHead,
11813 "HeroicisBody" => Self::HeroicisBody,
11814 "HeroicisLegs" => Self::HeroicisLegs,
11815 "HeroicisWings" => Self::HeroicisWings,
11816 "HallowedCrown" => Self::HallowedCrown,
11817 "HeroicisWingsInactive" => Self::HeroicisWingsInactive,
11818 "EnchantedPixieDust" => Self::EnchantedPixieDust,
11819 "PalworldMinionCattiva" => Self::PalworldMinionCattiva,
11820 "PalworldMinionFoxsparks" => Self::PalworldMinionFoxsparks,
11821 "PalworldPetChillet" => Self::PalworldPetChillet,
11822 "PalworldPetChilletIgnis" => Self::PalworldPetChilletIgnis,
11823 "PalworldDigtoise" => Self::PalworldDigtoise,
11824 "SoundGun" => Self::SoundGun,
11825 "TrueCopperShortsword" => Self::TrueCopperShortsword,
11826 "RainbowPhaseblade" => Self::RainbowPhaseblade,
11827 "RainbowPhasesaber" => Self::RainbowPhasesaber,
11828 "LibrarianSkeletonBanner" => Self::LibrarianSkeletonBanner,
11829 "WaterBoltMimicBanner" => Self::WaterBoltMimicBanner,
11830 "TeamBlockRedVariant" => Self::TeamBlockRedVariant,
11831 "TeamBlockGreenVariant" => Self::TeamBlockGreenVariant,
11832 "TeamBlockBlueVariant" => Self::TeamBlockBlueVariant,
11833 "TeamBlockYellowVariant" => Self::TeamBlockYellowVariant,
11834 "TeamBlockPinkVariant" => Self::TeamBlockPinkVariant,
11835 "TeamBlockWhiteVariant" => Self::TeamBlockWhiteVariant,
11836 "LilacDuskHead" => Self::LilacDuskHead,
11837 "LilacDuskBody" => Self::LilacDuskBody,
11838 "LilacDuskLegs" => Self::LilacDuskLegs,
11839 "KazzymodusHood" => Self::KazzymodusHood,
11840 "KazzymodusChestpiece" => Self::KazzymodusChestpiece,
11841 "KazzymodusLeggings" => Self::KazzymodusLeggings,
11842 "KazzymodusWings" => Self::KazzymodusWings,
11843 "SlimeSpear" => Self::SlimeSpear,
11844 "SlimeWhip" => Self::SlimeWhip,
11845 "FeywoodBathtub" => Self::FeywoodBathtub,
11846 "FeywoodBed" => Self::FeywoodBed,
11847 "FeywoodBookcase" => Self::FeywoodBookcase,
11848 "FeywoodDresser" => Self::FeywoodDresser,
11849 "FeywoodCandelabra" => Self::FeywoodCandelabra,
11850 "FeywoodCandle" => Self::FeywoodCandle,
11851 "FeywoodChair" => Self::FeywoodChair,
11852 "FeywoodChandelier" => Self::FeywoodChandelier,
11853 "FeywoodChest" => Self::FeywoodChest,
11854 "FeywoodClock" => Self::FeywoodClock,
11855 "FeywoodDoor" => Self::FeywoodDoor,
11856 "FeywoodLamp" => Self::FeywoodLamp,
11857 "FeywoodLantern" => Self::FeywoodLantern,
11858 "FeywoodPiano" => Self::FeywoodPiano,
11859 "FeywoodPlatform" => Self::FeywoodPlatform,
11860 "FeywoodSink" => Self::FeywoodSink,
11861 "FeywoodSofa" => Self::FeywoodSofa,
11862 "FeywoodTable" => Self::FeywoodTable,
11863 "FeywoodWorkbench" => Self::FeywoodWorkbench,
11864 "Fake_FeywoodChest" => Self::FakeFeywoodChest,
11865 "FeywoodToilet" => Self::FeywoodToilet,
11866 "Feywood" => Self::Feywood,
11867 "FeywoodWall" => Self::FeywoodWall,
11868 "HallowedBathtub" => Self::HallowedBathtub,
11869 "HallowedBed" => Self::HallowedBed,
11870 "HallowedBookcase" => Self::HallowedBookcase,
11871 "HallowedDresser" => Self::HallowedDresser,
11872 "HallowedCandelabra" => Self::HallowedCandelabra,
11873 "HallowedCandle" => Self::HallowedCandle,
11874 "HallowedChair" => Self::HallowedChair,
11875 "HallowedChandelier" => Self::HallowedChandelier,
11876 "HallowedFurnitureChest" => Self::HallowedFurnitureChest,
11877 "HallowedClock" => Self::HallowedClock,
11878 "HallowedDoor" => Self::HallowedDoor,
11879 "HallowedLamp" => Self::HallowedLamp,
11880 "HallowedLantern" => Self::HallowedLantern,
11881 "HallowedPiano" => Self::HallowedPiano,
11882 "HallowedPlatform" => Self::HallowedPlatform,
11883 "HallowedSink" => Self::HallowedSink,
11884 "HallowedSofa" => Self::HallowedSofa,
11885 "HallowedTable" => Self::HallowedTable,
11886 "HallowedWorkbench" => Self::HallowedWorkbench,
11887 "Fake_HallowedFurnitureChest" => Self::FakeHallowedFurnitureChest,
11888 "HallowedToilet" => Self::HallowedToilet,
11889 "HallowedBrick" => Self::HallowedBrick,
11890 "HallowedBrickWall" => Self::HallowedBrickWall,
11891 "PalworldPalMetalArmorBody" => Self::PalworldPalMetalArmorBody,
11892 "PalworldPalMetalArmorLegs" => Self::PalworldPalMetalArmorLegs,
11893 "ChippysWingsInactive" => Self::ChippysWingsInactive,
11894 "RemoteControlCar" => Self::RemoteControlCar,
11895 "GothicBathtub" => Self::GothicBathtub,
11896 "GothicBed" => Self::GothicBed,
11897 "GothicDresser" => Self::GothicDresser,
11898 "GothicCandelabra" => Self::GothicCandelabra,
11899 "GothicCandle" => Self::GothicCandle,
11900 "GothicChandelier" => Self::GothicChandelier,
11901 "GothicChest" => Self::GothicChest,
11902 "GothicClock" => Self::GothicClock,
11903 "GothicDoor" => Self::GothicDoor,
11904 "GothicLamp" => Self::GothicLamp,
11905 "GothicLantern" => Self::GothicLantern,
11906 "GothicPiano" => Self::GothicPiano,
11907 "GothicPlatform" => Self::GothicPlatform,
11908 "GothicSink" => Self::GothicSink,
11909 "GothicSofa" => Self::GothicSofa,
11910 "Fake_GothicChest" => Self::FakeGothicChest,
11911 "GothicToilet" => Self::GothicToilet,
11912 "DemoniteBathtub" => Self::DemoniteBathtub,
11913 "DemoniteBed" => Self::DemoniteBed,
11914 "DemoniteBookcase" => Self::DemoniteBookcase,
11915 "DemoniteCandelabra" => Self::DemoniteCandelabra,
11916 "DemoniteCandle" => Self::DemoniteCandle,
11917 "DemoniteChair" => Self::DemoniteChair,
11918 "DemoniteChandelier" => Self::DemoniteChandelier,
11919 "DemoniteChest" => Self::DemoniteChest,
11920 "DemoniteClock" => Self::DemoniteClock,
11921 "DemoniteDoor" => Self::DemoniteDoor,
11922 "DemoniteDresser" => Self::DemoniteDresser,
11923 "DemoniteLamp" => Self::DemoniteLamp,
11924 "DemoniteLantern" => Self::DemoniteLantern,
11925 "DemonitePiano" => Self::DemonitePiano,
11926 "DemonitePlatform" => Self::DemonitePlatform,
11927 "DemoniteSink" => Self::DemoniteSink,
11928 "DemoniteSofa" => Self::DemoniteSofa,
11929 "DemoniteTable" => Self::DemoniteTable,
11930 "DemoniteToilet" => Self::DemoniteToilet,
11931 "DemoniteWorkbench" => Self::DemoniteWorkbench,
11932 "Fake_DemoniteChest" => Self::FakeDemoniteChest,
11933 "CrimtaneBathtub" => Self::CrimtaneBathtub,
11934 "CrimtaneBed" => Self::CrimtaneBed,
11935 "CrimtaneBookcase" => Self::CrimtaneBookcase,
11936 "CrimtaneCandelabra" => Self::CrimtaneCandelabra,
11937 "CrimtaneCandle" => Self::CrimtaneCandle,
11938 "CrimtaneChair" => Self::CrimtaneChair,
11939 "CrimtaneChandelier" => Self::CrimtaneChandelier,
11940 "CrimtaneChest" => Self::CrimtaneChest,
11941 "CrimtaneClock" => Self::CrimtaneClock,
11942 "CrimtaneDoor" => Self::CrimtaneDoor,
11943 "CrimtaneDresser" => Self::CrimtaneDresser,
11944 "CrimtaneLamp" => Self::CrimtaneLamp,
11945 "CrimtaneLantern" => Self::CrimtaneLantern,
11946 "CrimtanePiano" => Self::CrimtanePiano,
11947 "CrimtanePlatform" => Self::CrimtanePlatform,
11948 "CrimtaneSink" => Self::CrimtaneSink,
11949 "CrimtaneSofa" => Self::CrimtaneSofa,
11950 "CrimtaneTable" => Self::CrimtaneTable,
11951 "CrimtaneToilet" => Self::CrimtaneToilet,
11952 "CrimtaneWorkbench" => Self::CrimtaneWorkbench,
11953 "Fake_CrimtaneChest" => Self::FakeCrimtaneChest,
11954 "SnowBathtub" => Self::SnowBathtub,
11955 "SnowBed" => Self::SnowBed,
11956 "SnowBookcase" => Self::SnowBookcase,
11957 "SnowCandelabra" => Self::SnowCandelabra,
11958 "SnowCandle" => Self::SnowCandle,
11959 "SnowChair" => Self::SnowChair,
11960 "SnowChandelier" => Self::SnowChandelier,
11961 "SnowChest" => Self::SnowChest,
11962 "SnowClock" => Self::SnowClock,
11963 "SnowDoor" => Self::SnowDoor,
11964 "SnowDresser" => Self::SnowDresser,
11965 "SnowLamp" => Self::SnowLamp,
11966 "SnowLantern" => Self::SnowLantern,
11967 "SnowPiano" => Self::SnowPiano,
11968 "SnowPlatform" => Self::SnowPlatform,
11969 "SnowSink" => Self::SnowSink,
11970 "SnowSofa" => Self::SnowSofa,
11971 "SnowTable" => Self::SnowTable,
11972 "SnowToilet" => Self::SnowToilet,
11973 "SnowWorkbench" => Self::SnowWorkbench,
11974 "Fake_SnowChest" => Self::FakeSnowChest,
11975 "FlinxFurBathtub" => Self::FlinxFurBathtub,
11976 "FlinxFurBed" => Self::FlinxFurBed,
11977 "FlinxFurBookcase" => Self::FlinxFurBookcase,
11978 "FlinxFurCandelabra" => Self::FlinxFurCandelabra,
11979 "FlinxFurCandle" => Self::FlinxFurCandle,
11980 "FlinxFurChair" => Self::FlinxFurChair,
11981 "FlinxFurChandelier" => Self::FlinxFurChandelier,
11982 "FlinxFurChest" => Self::FlinxFurChest,
11983 "FlinxFurClock" => Self::FlinxFurClock,
11984 "FlinxFurDoor" => Self::FlinxFurDoor,
11985 "FlinxFurDresser" => Self::FlinxFurDresser,
11986 "FlinxFurLamp" => Self::FlinxFurLamp,
11987 "FlinxFurLantern" => Self::FlinxFurLantern,
11988 "FlinxFurPiano" => Self::FlinxFurPiano,
11989 "FlinxFurPlatform" => Self::FlinxFurPlatform,
11990 "FlinxFurSink" => Self::FlinxFurSink,
11991 "FlinxFurSofa" => Self::FlinxFurSofa,
11992 "FlinxFurTable" => Self::FlinxFurTable,
11993 "FlinxFurToilet" => Self::FlinxFurToilet,
11994 "FlinxFurWorkbench" => Self::FlinxFurWorkbench,
11995 "Fake_FlinxFurChest" => Self::FakeFlinxFurChest,
11996 "PineBathtub" => Self::PineBathtub,
11997 "PineBed" => Self::PineBed,
11998 "PineBookcase" => Self::PineBookcase,
11999 "PineCandelabra" => Self::PineCandelabra,
12000 "PineCandle" => Self::PineCandle,
12001 "PineChandelier" => Self::PineChandelier,
12002 "PineChest" => Self::PineChest,
12003 "PineClock" => Self::PineClock,
12004 "PineDresser" => Self::PineDresser,
12005 "PineLamp" => Self::PineLamp,
12006 "PineLantern" => Self::PineLantern,
12007 "PinePiano" => Self::PinePiano,
12008 "PinePlatform" => Self::PinePlatform,
12009 "PineSink" => Self::PineSink,
12010 "PineSofa" => Self::PineSofa,
12011 "PineToilet" => Self::PineToilet,
12012 "PineWorkbench" => Self::PineWorkbench,
12013 "Fake_PineChest" => Self::FakePineChest,
12014 "EasterBathtub" => Self::EasterBathtub,
12015 "EasterBed" => Self::EasterBed,
12016 "EasterBookcase" => Self::EasterBookcase,
12017 "EasterCandelabra" => Self::EasterCandelabra,
12018 "EasterCandle" => Self::EasterCandle,
12019 "EasterChair" => Self::EasterChair,
12020 "EasterChandelier" => Self::EasterChandelier,
12021 "EasterChest" => Self::EasterChest,
12022 "EasterClock" => Self::EasterClock,
12023 "EasterDoor" => Self::EasterDoor,
12024 "EasterDresser" => Self::EasterDresser,
12025 "EasterLamp" => Self::EasterLamp,
12026 "EasterLantern" => Self::EasterLantern,
12027 "EasterPiano" => Self::EasterPiano,
12028 "EasterPlatform" => Self::EasterPlatform,
12029 "EasterSink" => Self::EasterSink,
12030 "EasterSofa" => Self::EasterSofa,
12031 "EasterTable" => Self::EasterTable,
12032 "EasterToilet" => Self::EasterToilet,
12033 "EasterWorkbench" => Self::EasterWorkbench,
12034 "Fake_EasterChest" => Self::FakeEasterChest,
12035 "StoneBathtub" => Self::StoneBathtub,
12036 "StoneBed" => Self::StoneBed,
12037 "StoneBookcase" => Self::StoneBookcase,
12038 "StoneCandelabra" => Self::StoneCandelabra,
12039 "StoneCandle" => Self::StoneCandle,
12040 "StoneChair" => Self::StoneChair,
12041 "StoneChandelier" => Self::StoneChandelier,
12042 "StoneChest" => Self::StoneChest,
12043 "StoneClock" => Self::StoneClock,
12044 "StoneDresser" => Self::StoneDresser,
12045 "StoneLamp" => Self::StoneLamp,
12046 "StoneLantern" => Self::StoneLantern,
12047 "StonePiano" => Self::StonePiano,
12048 "StoneSink" => Self::StoneSink,
12049 "StoneSofa" => Self::StoneSofa,
12050 "StoneTable" => Self::StoneTable,
12051 "StoneToilet" => Self::StoneToilet,
12052 "StoneWorkbench" => Self::StoneWorkbench,
12053 "Fake_StoneChest" => Self::FakeStoneChest,
12054 "JellyfishBathtub" => Self::JellyfishBathtub,
12055 "JellyfishBed" => Self::JellyfishBed,
12056 "JellyfishBookcase" => Self::JellyfishBookcase,
12057 "JellyfishCandelabra" => Self::JellyfishCandelabra,
12058 "JellyfishCandle" => Self::JellyfishCandle,
12059 "JellyfishChair" => Self::JellyfishChair,
12060 "JellyfishChandelier" => Self::JellyfishChandelier,
12061 "JellyfishChest" => Self::JellyfishChest,
12062 "JellyfishClock" => Self::JellyfishClock,
12063 "JellyfishDoor" => Self::JellyfishDoor,
12064 "JellyfishDresser" => Self::JellyfishDresser,
12065 "JellyfishLamp" => Self::JellyfishLamp,
12066 "JellyfishLantern" => Self::JellyfishLantern,
12067 "JellyfishPiano" => Self::JellyfishPiano,
12068 "JellyfishPlatform" => Self::JellyfishPlatform,
12069 "JellyfishSink" => Self::JellyfishSink,
12070 "JellyfishSofa" => Self::JellyfishSofa,
12071 "JellyfishTable" => Self::JellyfishTable,
12072 "JellyfishToilet" => Self::JellyfishToilet,
12073 "JellyfishWorkbench" => Self::JellyfishWorkbench,
12074 "Fake_JellyfishChest" => Self::FakeJellyfishChest,
12075 "PineTreeBlockWall" => Self::PineTreeBlockWall,
12076 "EasterBlock" => Self::EasterBlock,
12077 "EasterBlockWall" => Self::EasterBlockWall,
12078 "GothicBrick" => Self::GothicBrick,
12079 "GothicBrickWall" => Self::GothicBrickWall,
12080 "FlinxFurBlock" => Self::FlinxFurBlock,
12081 "FlinxFurBlockWall" => Self::FlinxFurBlockWall,
12082 "JellyfishBlock" => Self::JellyfishBlock,
12083 "JellyfishBlockWall" => Self::JellyfishBlockWall,
12084 "ToyBreakerBlock" => Self::ToyBreakerBlock,
12085 "PaintingRemix" => Self::PaintingRemix,
12086 "PineWoodBlock" => Self::PineWoodBlock,
12087 "PineWoodBlockWall" => Self::PineWoodBlockWall,
12088 "HarpyBathtub" => Self::HarpyBathtub,
12089 "HarpyBed" => Self::HarpyBed,
12090 "HarpyBookcase" => Self::HarpyBookcase,
12091 "HarpyCandelabra" => Self::HarpyCandelabra,
12092 "HarpyCandle" => Self::HarpyCandle,
12093 "HarpyChair" => Self::HarpyChair,
12094 "HarpyChandelier" => Self::HarpyChandelier,
12095 "HarpyChest" => Self::HarpyChest,
12096 "HarpyClock" => Self::HarpyClock,
12097 "HarpyDoor" => Self::HarpyDoor,
12098 "HarpyDresser" => Self::HarpyDresser,
12099 "HarpyLamp" => Self::HarpyLamp,
12100 "HarpyLantern" => Self::HarpyLantern,
12101 "HarpyPiano" => Self::HarpyPiano,
12102 "HarpyPlatform" => Self::HarpyPlatform,
12103 "HarpySink" => Self::HarpySink,
12104 "HarpySofa" => Self::HarpySofa,
12105 "HarpyTable" => Self::HarpyTable,
12106 "HarpyToilet" => Self::HarpyToilet,
12107 "HarpyWorkbench" => Self::HarpyWorkbench,
12108 "Fake_HarpyChest" => Self::FakeHarpyChest,
12109 "HarpyBlock" => Self::HarpyBlock,
12110 "HarpyBlockWall" => Self::HarpyBlockWall,
12111 "CloudBathtub" => Self::CloudBathtub,
12112 "CloudBed" => Self::CloudBed,
12113 "CloudBookcase" => Self::CloudBookcase,
12114 "CloudCandelabra" => Self::CloudCandelabra,
12115 "CloudCandle" => Self::CloudCandle,
12116 "CloudChair" => Self::CloudChair,
12117 "CloudChandelier" => Self::CloudChandelier,
12118 "CloudChest" => Self::CloudChest,
12119 "CloudClock" => Self::CloudClock,
12120 "CloudDoor" => Self::CloudDoor,
12121 "CloudDresser" => Self::CloudDresser,
12122 "CloudLamp" => Self::CloudLamp,
12123 "CloudLantern" => Self::CloudLantern,
12124 "CloudPiano" => Self::CloudPiano,
12125 "CloudSink" => Self::CloudSink,
12126 "CloudSofa" => Self::CloudSofa,
12127 "CloudTable" => Self::CloudTable,
12128 "CloudToilet" => Self::CloudToilet,
12129 "CloudWorkbench" => Self::CloudWorkbench,
12130 "Fake_CloudChest" => Self::FakeCloudChest,
12131 "MoonplateBathtub" => Self::MoonplateBathtub,
12132 "MoonplateBed" => Self::MoonplateBed,
12133 "MoonplateBookcase" => Self::MoonplateBookcase,
12134 "MoonplateCandelabra" => Self::MoonplateCandelabra,
12135 "MoonplateCandle" => Self::MoonplateCandle,
12136 "MoonplateChair" => Self::MoonplateChair,
12137 "MoonplateChandelier" => Self::MoonplateChandelier,
12138 "MoonplateChest" => Self::MoonplateChest,
12139 "MoonplateClock" => Self::MoonplateClock,
12140 "MoonplateDoor" => Self::MoonplateDoor,
12141 "MoonplateDresser" => Self::MoonplateDresser,
12142 "MoonplateLamp" => Self::MoonplateLamp,
12143 "MoonplateLantern" => Self::MoonplateLantern,
12144 "MoonplatePiano" => Self::MoonplatePiano,
12145 "MoonplatePlatform" => Self::MoonplatePlatform,
12146 "MoonplateSink" => Self::MoonplateSink,
12147 "MoonplateSofa" => Self::MoonplateSofa,
12148 "MoonplateTable" => Self::MoonplateTable,
12149 "MoonplateToilet" => Self::MoonplateToilet,
12150 "MoonplateWorkbench" => Self::MoonplateWorkbench,
12151 "Fake_MoonplateChest" => Self::FakeMoonplateChest,
12152 "MoonplateBlock" => Self::MoonplateBlock,
12153 "MoonplateBlockWall" => Self::MoonplateBlockWall,
12154 "LibrarianBathtub" => Self::LibrarianBathtub,
12155 "LibrarianBed" => Self::LibrarianBed,
12156 "LibrarianBookcase" => Self::LibrarianBookcase,
12157 "LibrarianCandelabra" => Self::LibrarianCandelabra,
12158 "LibrarianCandle" => Self::LibrarianCandle,
12159 "LibrarianChair" => Self::LibrarianChair,
12160 "LibrarianChandelier" => Self::LibrarianChandelier,
12161 "LibrarianChest" => Self::LibrarianChest,
12162 "LibrarianClock" => Self::LibrarianClock,
12163 "LibrarianDoor" => Self::LibrarianDoor,
12164 "LibrarianDresser" => Self::LibrarianDresser,
12165 "LibrarianLamp" => Self::LibrarianLamp,
12166 "LibrarianLantern" => Self::LibrarianLantern,
12167 "LibrarianPiano" => Self::LibrarianPiano,
12168 "LibrarianPlatform" => Self::LibrarianPlatform,
12169 "LibrarianSink" => Self::LibrarianSink,
12170 "LibrarianSofa" => Self::LibrarianSofa,
12171 "LibrarianTable" => Self::LibrarianTable,
12172 "LibrarianToilet" => Self::LibrarianToilet,
12173 "LibrarianWorkbench" => Self::LibrarianWorkbench,
12174 "Fake_LibrarianChest" => Self::FakeLibrarianChest,
12175 "LibrarianBlock" => Self::LibrarianBlock,
12176 "LibrarianBlockWall" => Self::LibrarianBlockWall,
12177 "SpikeBathtub" => Self::SpikeBathtub,
12178 "SpikeBed" => Self::SpikeBed,
12179 "SpikeBookcase" => Self::SpikeBookcase,
12180 "SpikeCandelabra" => Self::SpikeCandelabra,
12181 "SpikeCandle" => Self::SpikeCandle,
12182 "SpikeChair" => Self::SpikeChair,
12183 "SpikeChandelier" => Self::SpikeChandelier,
12184 "SpikeChest" => Self::SpikeChest,
12185 "SpikeClock" => Self::SpikeClock,
12186 "SpikeDoor" => Self::SpikeDoor,
12187 "SpikeDresser" => Self::SpikeDresser,
12188 "SpikeLamp" => Self::SpikeLamp,
12189 "SpikeLantern" => Self::SpikeLantern,
12190 "SpikePiano" => Self::SpikePiano,
12191 "SpikePlatform" => Self::SpikePlatform,
12192 "SpikeSink" => Self::SpikeSink,
12193 "SpikeSofa" => Self::SpikeSofa,
12194 "SpikeTable" => Self::SpikeTable,
12195 "SpikeToilet" => Self::SpikeToilet,
12196 "SpikeWorkbench" => Self::SpikeWorkbench,
12197 "Fake_SpikeChest" => Self::FakeSpikeChest,
12198 "SpikeBlock" => Self::SpikeBlock,
12199 "SpikeBlockWall" => Self::SpikeBlockWall,
12200 "OfficeBathtub" => Self::OfficeBathtub,
12201 "OfficeBed" => Self::OfficeBed,
12202 "OfficeBookcase" => Self::OfficeBookcase,
12203 "OfficeCandelabra" => Self::OfficeCandelabra,
12204 "OfficeCandle" => Self::OfficeCandle,
12205 "OfficeChair" => Self::OfficeChair,
12206 "OfficeChandelier" => Self::OfficeChandelier,
12207 "OfficeChest" => Self::OfficeChest,
12208 "OfficeClock" => Self::OfficeClock,
12209 "OfficeDoor" => Self::OfficeDoor,
12210 "OfficeDresser" => Self::OfficeDresser,
12211 "OfficeLamp" => Self::OfficeLamp,
12212 "OfficeLantern" => Self::OfficeLantern,
12213 "OfficePiano" => Self::OfficePiano,
12214 "OfficePlatform" => Self::OfficePlatform,
12215 "OfficeSink" => Self::OfficeSink,
12216 "OfficeSofa" => Self::OfficeSofa,
12217 "OfficeTable" => Self::OfficeTable,
12218 "OfficeToilet" => Self::OfficeToilet,
12219 "OfficeWorkbench" => Self::OfficeWorkbench,
12220 "Fake_OfficeChest" => Self::FakeOfficeChest,
12221 "OfficeBlock" => Self::OfficeBlock,
12222 "OfficeBlockWall" => Self::OfficeBlockWall,
12223 "ForbiddenBathtub" => Self::ForbiddenBathtub,
12224 "ForbiddenBed" => Self::ForbiddenBed,
12225 "ForbiddenBookcase" => Self::ForbiddenBookcase,
12226 "ForbiddenCandelabra" => Self::ForbiddenCandelabra,
12227 "ForbiddenCandle" => Self::ForbiddenCandle,
12228 "ForbiddenChair" => Self::ForbiddenChair,
12229 "ForbiddenChandelier" => Self::ForbiddenChandelier,
12230 "ForbiddenChest" => Self::ForbiddenChest,
12231 "ForbiddenClock" => Self::ForbiddenClock,
12232 "ForbiddenDoor" => Self::ForbiddenDoor,
12233 "ForbiddenDresser" => Self::ForbiddenDresser,
12234 "ForbiddenLamp" => Self::ForbiddenLamp,
12235 "ForbiddenLantern" => Self::ForbiddenLantern,
12236 "ForbiddenPiano" => Self::ForbiddenPiano,
12237 "ForbiddenPlatform" => Self::ForbiddenPlatform,
12238 "ForbiddenSink" => Self::ForbiddenSink,
12239 "ForbiddenSofa" => Self::ForbiddenSofa,
12240 "ForbiddenTable" => Self::ForbiddenTable,
12241 "ForbiddenToilet" => Self::ForbiddenToilet,
12242 "ForbiddenWorkbench" => Self::ForbiddenWorkbench,
12243 "Fake_ForbiddenChest" => Self::FakeForbiddenChest,
12244 "ForbiddenBlock" => Self::ForbiddenBlock,
12245 "ForbiddenBlockWall" => Self::ForbiddenBlockWall,
12246 "WaterBathtub" => Self::WaterBathtub,
12247 "WaterBed" => Self::WaterBed,
12248 "WaterBookcase" => Self::WaterBookcase,
12249 "WaterCandelabra" => Self::WaterCandelabra,
12250 "WaterFurnitureCandle" => Self::WaterFurnitureCandle,
12251 "WaterChair" => Self::WaterChair,
12252 "WaterChandelier" => Self::WaterChandelier,
12253 "WaterClock" => Self::WaterClock,
12254 "WaterDoor" => Self::WaterDoor,
12255 "WaterDresser" => Self::WaterDresser,
12256 "WaterLamp" => Self::WaterLamp,
12257 "WaterLantern" => Self::WaterLantern,
12258 "WaterPiano" => Self::WaterPiano,
12259 "WaterPlatform" => Self::WaterPlatform,
12260 "WaterSink" => Self::WaterSink,
12261 "WaterSofa" => Self::WaterSofa,
12262 "WaterTable" => Self::WaterTable,
12263 "WaterToilet" => Self::WaterToilet,
12264 "WaterWorkbench" => Self::WaterWorkbench,
12265 "WaterBlock" => Self::WaterBlock,
12266 "WaterBlockWall" => Self::WaterBlockWall,
12267 "BoulderBathtub" => Self::BoulderBathtub,
12268 "BoulderBed" => Self::BoulderBed,
12269 "BoulderBookcase" => Self::BoulderBookcase,
12270 "BoulderCandelabra" => Self::BoulderCandelabra,
12271 "BoulderCandle" => Self::BoulderCandle,
12272 "BoulderChair" => Self::BoulderChair,
12273 "BoulderChandelier" => Self::BoulderChandelier,
12274 "BoulderChest" => Self::BoulderChest,
12275 "BoulderClock" => Self::BoulderClock,
12276 "BoulderDoor" => Self::BoulderDoor,
12277 "BoulderDresser" => Self::BoulderDresser,
12278 "BoulderLamp" => Self::BoulderLamp,
12279 "BoulderLantern" => Self::BoulderLantern,
12280 "BoulderPiano" => Self::BoulderPiano,
12281 "BoulderPlatform" => Self::BoulderPlatform,
12282 "BoulderSink" => Self::BoulderSink,
12283 "BoulderSofa" => Self::BoulderSofa,
12284 "BoulderTable" => Self::BoulderTable,
12285 "BoulderToilet" => Self::BoulderToilet,
12286 "BoulderWorkbench" => Self::BoulderWorkbench,
12287 "Fake_BoulderChest" => Self::FakeBoulderChest,
12288 "BoulderBlock" => Self::BoulderBlock,
12289 "BoulderBlockWall" => Self::BoulderBlockWall,
12290 "DamagingSpikeBlock" => Self::DamagingSpikeBlock,
12291 "DemonAltarIcon" => Self::DemonAltarIcon,
12292 "CrimsonAltarIcon" => Self::CrimsonAltarIcon,
12293 "LunasHead" => Self::LunasHead,
12294 "LunasBody" => Self::LunasBody,
12295 "LunasLegs" => Self::LunasLegs,
12296 "LunasWings" => Self::LunasWings,
12297 "LunasCloak" => Self::LunasCloak,
12298 "PalworldChilletEgg" => Self::PalworldChilletEgg,
12299 "FoxparksTagEffect" => Self::FoxparksTagEffect,
12300 "MusicBoxSkeletron" => Self::MusicBoxSkeletron,
12301 _ => return None,
12302 })
12303 }
12304}