isaacscript-common 61.0.0 → 62.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/index.rollup.d.ts +2 -2
  2. package/dist/isaacscript-common.lua +1889 -1902
  3. package/dist/src/functions/collectibles.d.ts.map +1 -1
  4. package/dist/src/functions/collectibles.lua +8 -8
  5. package/dist/src/functions/frames.lua +2 -2
  6. package/dist/src/functions/trinkets.d.ts.map +1 -1
  7. package/dist/src/functions/trinkets.lua +8 -8
  8. package/dist/src/maps/collectibleNameToTypeMap.d.ts +3 -2
  9. package/dist/src/maps/collectibleNameToTypeMap.d.ts.map +1 -1
  10. package/dist/src/maps/collectibleNameToTypeMap.lua +16 -23
  11. package/dist/src/maps/trinketNameToTypeMap.d.ts +1 -1
  12. package/dist/src/maps/trinketNameToTypeMap.d.ts.map +1 -1
  13. package/dist/src/maps/trinketNameToTypeMap.lua +7 -6
  14. package/dist/src/objects/collectibleDescriptions.d.ts +727 -0
  15. package/dist/src/objects/collectibleDescriptions.d.ts.map +1 -0
  16. package/dist/src/objects/collectibleDescriptions.lua +730 -0
  17. package/dist/src/objects/collectibleNames.d.ts +731 -0
  18. package/dist/src/objects/collectibleNames.d.ts.map +1 -0
  19. package/dist/src/objects/collectibleNames.lua +732 -0
  20. package/dist/src/objects/pillEffectTypeToPillEffects.d.ts +0 -1
  21. package/dist/src/objects/pillEffectTypeToPillEffects.d.ts.map +1 -1
  22. package/dist/src/objects/pillEffectTypeToPillEffects.lua +0 -1
  23. package/dist/src/objects/trinketDescriptions.d.ts +194 -0
  24. package/dist/src/objects/trinketDescriptions.d.ts.map +1 -0
  25. package/dist/src/objects/trinketDescriptions.lua +197 -0
  26. package/dist/src/objects/trinketNames.d.ts +198 -0
  27. package/dist/src/objects/trinketNames.d.ts.map +1 -0
  28. package/dist/src/objects/trinketNames.lua +199 -0
  29. package/package.json +2 -2
  30. package/src/functions/collectibles.ts +10 -7
  31. package/src/functions/frames.ts +2 -2
  32. package/src/functions/trinkets.ts +10 -11
  33. package/src/maps/collectibleNameToTypeMap.ts +20 -11
  34. package/src/maps/trinketNameToTypeMap.ts +4 -3
  35. package/src/objects/collectibleDescriptions.ts +743 -0
  36. package/src/objects/collectibleNames.ts +744 -0
  37. package/src/objects/pillEffectTypeToPillEffects.ts +0 -5
  38. package/src/objects/trinketDescriptions.ts +199 -0
  39. package/src/objects/trinketNames.ts +201 -0
  40. package/dist/src/maps/collectibleDescriptionMap.d.ts +0 -10
  41. package/dist/src/maps/collectibleDescriptionMap.d.ts.map +0 -1
  42. package/dist/src/maps/collectibleDescriptionMap.lua +0 -733
  43. package/dist/src/maps/collectibleTypeToNameMap.d.ts +0 -12
  44. package/dist/src/maps/collectibleTypeToNameMap.d.ts.map +0 -1
  45. package/dist/src/maps/collectibleTypeToNameMap.lua +0 -735
  46. package/dist/src/maps/trinketDescriptionMap.d.ts +0 -10
  47. package/dist/src/maps/trinketDescriptionMap.d.ts.map +0 -1
  48. package/dist/src/maps/trinketDescriptionMap.lua +0 -201
  49. package/dist/src/maps/trinketTypeToNameMap.d.ts +0 -12
  50. package/dist/src/maps/trinketTypeToNameMap.d.ts.map +0 -1
  51. package/dist/src/maps/trinketTypeToNameMap.lua +0 -203
  52. package/src/maps/collectibleDescriptionMap.ts +0 -738
  53. package/src/maps/collectibleTypeToNameMap.ts +0 -738
  54. package/src/maps/trinketDescriptionMap.ts +0 -203
  55. package/src/maps/trinketTypeToNameMap.ts +0 -203
@@ -1,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 61.0.0
3
+ isaacscript-common 62.0.0
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -13822,8 +13822,6 @@ local ____exports = {}
13822
13822
  --- This corresponds to the suffix of the "class" tag in the "pocketitems.xml" file. "+" is equal to
13823
13823
  -- `POSITIVE`, "-" is equal to `NEGATIVE`, and no suffix is equal to `NEUTRAL`.
13824
13824
  ____exports.ItemConfigPillEffectType = {}
13825
- ____exports.ItemConfigPillEffectType.NULL = -1
13826
- ____exports.ItemConfigPillEffectType[____exports.ItemConfigPillEffectType.NULL] = "NULL"
13827
13825
  ____exports.ItemConfigPillEffectType.POSITIVE = 0
13828
13826
  ____exports.ItemConfigPillEffectType[____exports.ItemConfigPillEffectType.POSITIVE] = "POSITIVE"
13829
13827
  ____exports.ItemConfigPillEffectType.NEGATIVE = 1
@@ -13839,8 +13837,6 @@ local ____exports = {}
13839
13837
  --- This corresponds to the number in the "class" tag in the "pocketitems.xml" file. The "+" or "-"
13840
13838
  -- part of the tag is contained within the `ItemConfigPillEffectType` enum.
13841
13839
  ____exports.ItemConfigPillEffectClass = {}
13842
- ____exports.ItemConfigPillEffectClass.NULL = -1
13843
- ____exports.ItemConfigPillEffectClass[____exports.ItemConfigPillEffectClass.NULL] = "NULL"
13844
13840
  ____exports.ItemConfigPillEffectClass.JOKE = 0
13845
13841
  ____exports.ItemConfigPillEffectClass[____exports.ItemConfigPillEffectClass.JOKE] = "JOKE"
13846
13842
  ____exports.ItemConfigPillEffectClass.MINOR = 1
@@ -19184,14 +19180,14 @@ function ____exports.onOrBeforeRoomFrame(self, roomFrameCount)
19184
19180
  end
19185
19181
  local room = game:GetRoom()
19186
19182
  local thisGameFrameCount = room:GetFrameCount()
19187
- return thisGameFrameCount >= roomFrameCount
19183
+ return thisGameFrameCount <= roomFrameCount
19188
19184
  end
19189
19185
  function ____exports.onRenderFrame(self, renderFrameCount)
19190
19186
  if renderFrameCount == nil or renderFrameCount == nil then
19191
19187
  return false
19192
19188
  end
19193
19189
  local thisRenderFrameCount = Isaac.GetFrameCount()
19194
- return thisRenderFrameCount >= renderFrameCount
19190
+ return thisRenderFrameCount == renderFrameCount
19195
19191
  end
19196
19192
  function ____exports.onRoomFrame(self, roomFrameCount)
19197
19193
  if roomFrameCount == nil or roomFrameCount == nil then
@@ -23293,1473 +23289,1466 @@ ____exports.VANILLA_PILL_EFFECTS = __TS__ArrayFilter(
23293
23289
  ____exports.VANILLA_PILL_EFFECTS_SET = __TS__New(ReadonlySet, ____exports.VANILLA_PILL_EFFECTS)
23294
23290
  return ____exports
23295
23291
  end,
23296
- ["src.types.ReadonlyMap"] = function(...)
23297
- local ____lualib = require("lualib_bundle")
23298
- local Map = ____lualib.Map
23292
+ ["src.objects.collectibleDescriptions"] = function(...)
23299
23293
  local ____exports = {}
23300
- ____exports.ReadonlyMap = Map
23301
- return ____exports
23302
- end,
23303
- ["src.maps.collectibleDescriptionMap"] = function(...)
23304
- local ____lualib = require("lualib_bundle")
23305
- local __TS__New = ____lualib.__TS__New
23306
- local ____exports = {}
23307
- local ____ReadonlyMap = require("src.types.ReadonlyMap")
23308
- local ReadonlyMap = ____ReadonlyMap.ReadonlyMap
23294
+ local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
23295
+ local CollectibleType = ____isaac_2Dtypescript_2Ddefinitions.CollectibleType
23309
23296
  ____exports.DEFAULT_COLLECTIBLE_DESCRIPTION = "Unknown"
23310
- ____exports.COLLECTIBLE_DESCRIPTION_MAP = __TS__New(ReadonlyMap, {
23311
- {1, "Tears up"},
23312
- {2, "Triple shot"},
23313
- {3, "Homing shots"},
23314
- {4, "DMG up"},
23315
- {5, "Boomerang tears"},
23316
- {6, "Tears up + range down"},
23317
- {7, "DMG up"},
23318
- {8, "Friends 'till the end"},
23319
- {9, "Fly love"},
23320
- {10, "Projectile protection"},
23321
- {11, "Extra life"},
23322
- {12, "All stats up!"},
23323
- {13, "Poison touch + speed up"},
23324
- {14, "Speed and range up"},
23325
- {15, "HP up"},
23326
- {16, "HP up"},
23327
- {17, "99 keys"},
23328
- {18, "$$$"},
23329
- {19, "10 bombs"},
23330
- {20, "We all float down here..."},
23331
- {21, "The end is near"},
23332
- {22, "HP up"},
23333
- {23, "HP up"},
23334
- {24, "HP up"},
23335
- {25, "HP up"},
23336
- {26, "HP up"},
23337
- {27, "Speed up"},
23338
- {28, "Speed up"},
23339
- {29, "Range up"},
23340
- {30, "Range up"},
23341
- {31, "Range up"},
23342
- {32, "Tears up"},
23343
- {33, "Temporary flight"},
23344
- {34, "Temporary DMG up"},
23345
- {35, "Mass room damage"},
23346
- {36, "Plop!"},
23347
- {37, "Reusable bomb buddy"},
23348
- {38, "Reusable tear burst"},
23349
- {39, "Mass paralysis"},
23350
- {40, "Become the bomb!"},
23351
- {41, "Mass fear"},
23352
- {42, "Reusable ranged bomb"},
23353
- {44, "Teleport!"},
23354
- {45, "Reusable regeneration"},
23355
- {46, "Luck up"},
23356
- {47, "Reusable air strike"},
23357
- {48, "Piercing shots"},
23358
- {49, "BLLLARRRRGGG!"},
23359
- {50, "DMG up"},
23360
- {51, "DMG up"},
23361
- {52, "???"},
23362
- {53, "Item snatcher"},
23363
- {54, "Full visible map"},
23364
- {55, "Eye in the back of your head"},
23365
- {56, "Oops..."},
23366
- {57, "Attack fly"},
23367
- {58, "Temporary invincibility"},
23368
- {60, "Building bridges"},
23369
- {62, "Kills heal"},
23370
- {63, "Stores energy"},
23371
- {64, "50% off"},
23372
- {65, "Summon bombs"},
23373
- {66, "Temporary enemy slowdown"},
23374
- {67, "Friends 'till the end"},
23375
- {68, "Laser tears"},
23376
- {69, "Charge shots"},
23377
- {70, "Speed + DMG up"},
23378
- {71, "Speed + range up"},
23379
- {72, "Tears + faith up"},
23380
- {73, "Gotta meat 'em all"},
23381
- {74, "+25 coins"},
23382
- {75, "Better pills"},
23383
- {76, "I've seen everything"},
23384
- {77, "Temporary badass"},
23385
- {78, "Reusable soul protection"},
23386
- {79, "DMG + speed up"},
23387
- {80, "DMG + tears up"},
23388
- {81, "9 lives"},
23389
- {82, "Demon wings"},
23390
- {83, "Temporary demon form"},
23391
- {84, "Reusable level skip"},
23392
- {85, "Reusable card generator "},
23393
- {86, "Summon Monstro"},
23394
- {87, "Cross tears"},
23395
- {88, "Attack buddy"},
23396
- {89, "Slow effect"},
23397
- {90, "DMG up"},
23398
- {91, "See-through doors"},
23399
- {92, "+2 hearts"},
23400
- {93, "Temporary Man-Pac"},
23401
- {94, "Gives money"},
23402
- {95, "Friends 'till the bbbbzzzt"},
23403
- {96, "Gives kisses"},
23404
- {97, "Reusable item generator"},
23405
- {98, "Soul generator"},
23406
- {99, "Sticky friend"},
23407
- {100, "Psychic friend"},
23408
- {101, "All stats up"},
23409
- {102, "Reusable pill generator"},
23410
- {103, "Poison damage"},
23411
- {104, "Split shot"},
23412
- {105, "Reroll your destiny"},
23413
- {106, "Bigger boom"},
23414
- {107, "Cut and run"},
23415
- {108, "Damage resistance"},
23416
- {109, "$$$ = DMG"},
23417
- {110, "Freeze effect"},
23418
- {111, "Toot on command"},
23419
- {112, "Extra protection"},
23420
- {113, "Auto-turret friend"},
23421
- {114, "Stab stab stab"},
23422
- {115, "Spectral tears"},
23423
- {116, "Quicker charge"},
23424
- {117, "Protective buddy"},
23425
- {118, "Blood laser barrage"},
23426
- {119, "HP up"},
23427
- {120, "Tears + speed up, DMG down"},
23428
- {121, "HP + DMG up, speed down"},
23429
- {122, "Curse up"},
23430
- {123, "Temporary buddy generator"},
23431
- {124, "It's a mystery"},
23432
- {125, "Homing bombs"},
23433
- {126, "Feel my pain"},
23434
- {127, "I don't remember..."},
23435
- {128, "Attack fly"},
23436
- {129, "HP up"},
23437
- {130, "Flight + dash attack"},
23438
- {131, "Gives bombs"},
23439
- {132, "My Xmas present"},
23440
- {133, "Soul converter"},
23441
- {134, "Cursed?"},
23442
- {135, "Portable blood bank"},
23443
- {136, "Friends 'till the end"},
23444
- {137, "Remote bomb detonation"},
23445
- {138, "DMG + HP up"},
23446
- {139, "More trinket room"},
23447
- {140, "+5 poison bombs"},
23448
- {141, "Ultimate grand supreme"},
23449
- {142, "Pray for a miracle"},
23450
- {143, "Speed + shot speed up"},
23451
- {144, "He's greedy"},
23452
- {145, "Reusable fly hive"},
23453
- {146, "Reusable eternity "},
23454
- {147, "Rocks don't stand a chance"},
23455
- {148, "Fly revenge"},
23456
- {149, "Explosive shots"},
23457
- {150, "Tooth shot"},
23458
- {151, "They grow inside"},
23459
- {152, "Extra laser"},
23460
- {153, "Quad shot"},
23461
- {154, "DMG up"},
23462
- {155, "Plop!"},
23463
- {156, "Item martyr"},
23464
- {157, "RAGE!"},
23465
- {158, "I see my future"},
23466
- {159, "Scary"},
23467
- {160, "Holy white death"},
23468
- {161, "Eternal life?"},
23469
- {162, "Blessing of protection"},
23470
- {163, "Spectral buddy"},
23471
- {164, "Reusable flames"},
23472
- {165, "Shot speed + damage up"},
23473
- {166, "Reroll the basics"},
23474
- {167, "Double shot buddy"},
23475
- {168, "On-demand air strike"},
23476
- {169, "Mega tears"},
23477
- {170, "Daddy's love"},
23478
- {171, "Mass enemy slowdown + damage"},
23479
- {172, "My fate protects me"},
23480
- {173, "Blessing of purity"},
23481
- {174, "Random buddy"},
23482
- {175, "Opens all doors..."},
23483
- {176, "HP + shot speed up"},
23484
- {177, "Gamble 24/7"},
23485
- {178, "Splash!"},
23486
- {179, "Flight eternal"},
23487
- {180, "Toot on touch"},
23488
- {181, "Flight + holy death"},
23489
- {182, "Homing shots + DMG up"},
23490
- {183, "Tears + shot speed up"},
23491
- {184, "Flight + HP up"},
23492
- {185, "Flight + spectral tears"},
23493
- {186, "Mass enemy damage at a cost"},
23494
- {187, "Swing it"},
23495
- {188, "Mirrored buddy"},
23496
- {189, "All stats up"},
23497
- {190, "99 bombs"},
23498
- {191, "Rainbow tears"},
23499
- {192, "Temporary psychic shot"},
23500
- {193, "DMG + HP up"},
23501
- {194, "Shot speed up"},
23502
- {195, "What's all this...?"},
23503
- {196, "Tears up"},
23504
- {197, "Damage + range up"},
23505
- {198, "Stuff"},
23506
- {199, "Better chest loot +2 keys"},
23507
- {200, "Charm tears"},
23508
- {201, "DMG up + concussive tears"},
23509
- {202, "Golden touch"},
23510
- {203, "1+1 free 4Evar"},
23511
- {204, "Filled with goodies"},
23512
- {205, "Infinite charge... at a cost"},
23513
- {206, "DMG + tears up. An out-of-body experience!"},
23514
- {207, "Gotta lick 'em all!"},
23515
- {208, "DMG + challenge up"},
23516
- {209, "Toxic blast +5 bombs"},
23517
- {210, "Unbreakable"},
23518
- {211, "Spider revenge"},
23519
- {212, "Eternal life?"},
23520
- {213, "Shielded tears"},
23521
- {214, "Toxic blood"},
23522
- {215, "He accepts your offering"},
23523
- {216, "DMG + evil up"},
23524
- {217, "You feel itchy..."},
23525
- {218, "Regeneration + HP up"},
23526
- {219, "HP up"},
23527
- {220, "Tear blasts +5 bombs"},
23528
- {221, "Bouncing tears"},
23529
- {222, "Anti-gravity tears + tears up"},
23530
- {223, "It hurts so good +5 bombs"},
23531
- {224, "Bursting shots + tears up"},
23532
- {225, "Sweet suffering"},
23533
- {226, "HP up x3"},
23534
- {227, "My life savings"},
23535
- {228, "Fear shot + tears up"},
23536
- {229, "Charged burst attack"},
23537
- {230, "Evil + DMG up + fear shot"},
23538
- {231, "Sticky feet..."},
23539
- {232, "Let's slow this down a bit..."},
23540
- {233, "Orbiting tears + range up"},
23541
- {234, "Infestation shot"},
23542
- {236, "Turdy touch"},
23543
- {237, "Piercing shots + DMG up"},
23544
- {238, "???"},
23545
- {239, "???"},
23546
- {240, "Some stats up, some stats down"},
23547
- {241, "Wealth... but at what cost?"},
23548
- {242, "Blocks damage... sometimes"},
23549
- {243, "You feel guarded"},
23550
- {244, "It's still being tested..."},
23551
- {245, "Double shot"},
23552
- {246, "Secrets"},
23553
- {247, "Your friends rule"},
23554
- {248, "Giant spiders and flies"},
23555
- {249, "More options"},
23556
- {250, "1+1 BOOM!"},
23557
- {251, "Extra card room"},
23558
- {252, "Extra pill room"},
23559
- {253, "HP + luck up"},
23560
- {254, "DMG + range up"},
23561
- {255, "Tears + shot speed up"},
23562
- {256, "Burning blast +5 bombs"},
23563
- {257, "Flaming tears"},
23564
- {258, "Syntax error"},
23565
- {259, "DMG up + fear shot"},
23566
- {260, "Curse immunity + evil up"},
23567
- {261, "Short range mega tears"},
23568
- {262, "Evil up. Your enemies will pay!"},
23569
- {263, "Rune mimic"},
23570
- {264, "Revenge fly"},
23571
- {265, "Immortal friend"},
23572
- {266, "Sticky babies"},
23573
- {267, "We worked out all the kinks"},
23574
- {268, "Infested friend"},
23575
- {269, "Bloody friend"},
23576
- {270, "Blood sucker"},
23577
- {271, "?"},
23578
- {272, "Big Beautiful Fly"},
23579
- {273, "Explosive thoughts"},
23580
- {274, "Sworn protector"},
23581
- {275, "Evil friend"},
23582
- {276, "Protect it"},
23583
- {277, "Fear him"},
23584
- {278, "He wants to take your life"},
23585
- {279, "Fat protector"},
23586
- {280, "She loves you"},
23587
- {281, "Scape goat"},
23588
- {282, "It's time you learned how"},
23589
- {283, "REEROLLLLL!"},
23590
- {284, "Reroll into something else"},
23591
- {285, "Reroll enemies"},
23592
- {286, "Card mimic"},
23593
- {287, "Tome of knowledge"},
23594
- {288, "It's a box of spiders"},
23595
- {289, "Flame on"},
23596
- {290, "Save your life"},
23597
- {291, "..."},
23598
- {292, "Reusable evil... but at what cost?"},
23599
- {293, "Krampus rage"},
23600
- {294, "Reusable knock-back"},
23601
- {295, "Pay to win"},
23602
- {296, "Convert your soul"},
23603
- {297, "? ?"},
23604
- {298, "You feel stumped"},
23605
- {299, "Speed down + rage is building"},
23606
- {300, "Ramming speed"},
23607
- {301, "HP up + you feel protected"},
23608
- {302, "Stompy"},
23609
- {303, "You feel refreshed and protected"},
23610
- {304, "You feel balanced"},
23611
- {305, "Poison tears"},
23612
- {306, "Piercing shots + speed up"},
23613
- {307, "All stats up"},
23614
- {308, "Trail of tears"},
23615
- {309, "Tears up + knock-back shot"},
23616
- {310, "DMG up, tears + shot speed down"},
23617
- {311, "Sweet revenge"},
23618
- {312, "HP up + you feel healthy"},
23619
- {313, "Holy shield"},
23620
- {314, "HP up + speed down + you feel stompy"},
23621
- {315, "Magnetic tears"},
23622
- {316, "Cursed charge shot"},
23623
- {317, "Toxic splash damage"},
23624
- {318, "Conjoined friend"},
23625
- {319, "Near-sighted friend"},
23626
- {320, "Controlled friend"},
23627
- {321, "The ol' ball and chain"},
23628
- {322, "Mongo friend"},
23629
- {323, "Collected tears"},
23630
- {324, "Undefined"},
23631
- {325, "Lose your head"},
23632
- {326, "Invincibility at a cost"},
23633
- {327, "Fate chosen"},
23634
- {328, "Fate chosen"},
23635
- {329, "Controlled tears"},
23636
- {330, "DMG down + tears way up"},
23637
- {331, "God tears"},
23638
- {332, "Eternal life?"},
23639
- {333, "I know all"},
23640
- {334, "I feel all"},
23641
- {335, "I am all"},
23642
- {336, "Toxic aura tears"},
23643
- {337, "I think it's broken"},
23644
- {338, "It will never leave you"},
23645
- {339, "Evil + range + shot speed up"},
23646
- {340, "Speed up + size down"},
23647
- {341, "Tears + shot speed up"},
23648
- {342, "HP + tears up + shot speed down"},
23649
- {343, "Luck up"},
23650
- {344, "Evil up"},
23651
- {345, "DMG + range up"},
23652
- {346, "HP up"},
23653
- {347, "Double item vision"},
23654
- {348, "Pill mimic"},
23655
- {349, "Flip a coin"},
23656
- {350, "Mass poison"},
23657
- {351, "Giga fart!"},
23658
- {352, "Be gentle..."},
23659
- {353, "Cross blast + 5 bombs"},
23660
- {354, "HP up. Don't swallow the prize!"},
23661
- {355, "Range + luck up"},
23662
- {356, "Active power up"},
23663
- {357, "Double your friends"},
23664
- {358, "Double wiz shot!"},
23665
- {359, "Stick it to 'em!"},
23666
- {360, "Dark friend"},
23667
- {361, "Your fate beside you"},
23668
- {362, "What's in the box?"},
23669
- {363, "Protective friend"},
23670
- {364, "Friendly fly"},
23671
- {365, "Lost protector"},
23672
- {366, "We put bombs in your bombs!"},
23673
- {367, "Egg sack bombs!"},
23674
- {368, "Intensifying tears"},
23675
- {369, "Transcendent tears"},
23676
- {370, "Range + tears up"},
23677
- {371, "Embrace chaos"},
23678
- {372, "Bbbzzzzzt! "},
23679
- {373, "Accuracy brings power"},
23680
- {374, "Holy death shot"},
23681
- {375, "Blast resistance"},
23682
- {376, "Never ending stores!"},
23683
- {377, "Spider love"},
23684
- {378, "Uh oh..."},
23685
- {379, "Wide shot"},
23686
- {380, "Money talks"},
23687
- {381, "Tears up + your future shines brighter"},
23688
- {382, "Gotta fetch 'em all!"},
23689
- {383, "Remote tear detonation"},
23690
- {384, "A gurd of your own!"},
23691
- {385, "Bumbo want coin!"},
23692
- {386, "Rerolls rocks"},
23693
- {387, "Peace be with you"},
23694
- {388, "He wants your keys!"},
23695
- {389, "Rune generator"},
23696
- {390, "Sworn friend"},
23697
- {391, "Turn your enemy"},
23698
- {392, "The heavens will change you"},
23699
- {393, "The kiss of death"},
23700
- {394, "Directed tears"},
23701
- {395, "Laser ring tears"},
23702
- {396, "Short cutter"},
23703
- {397, "Controlled tears"},
23704
- {398, "Shrink shot!"},
23705
- {399, "Consume thy enemy!"},
23706
- {400, "Your destiny"},
23707
- {401, "Sticky bomb shot"},
23708
- {402, "!!!"},
23709
- {403, "Mod buddy"},
23710
- {404, "He farts"},
23711
- {405, "Double tap glitch"},
23712
- {406, "Reroll stats"},
23713
- {407, "Aura stat boost"},
23714
- {408, "Call to the void"},
23715
- {409, "I reward an empty vessel"},
23716
- {410, "Eye shot"},
23717
- {411, "Their blood brings rage!"},
23718
- {412, "Feed them hate"},
23719
- {413, "Feed them love"},
23720
- {414, "There's options"},
23721
- {415, "The untainted gain power"},
23722
- {416, "More money!"},
23723
- {417, "Damage booster"},
23724
- {418, "Rainbow effects!"},
23725
- {419, "I-Teleport!"},
23726
- {420, "Spin the black circle!"},
23727
- {421, "Love toots"},
23728
- {422, "Turn back time"},
23729
- {423, "Protect me from myself"},
23730
- {424, "More sacks!"},
23731
- {425, "Scared of the dark?"},
23732
- {426, "Follows my every move..."},
23733
- {427, "Booom!"},
23734
- {428, "You feel cozy"},
23735
- {429, "Penny tears"},
23736
- {430, "Turret follower"},
23737
- {431, "ydduB Buddy"},
23738
- {432, "Prize bombs"},
23739
- {433, "Me! And my shaaaadow!"},
23740
- {434, "Bug catcher"},
23741
- {435, "4-way buddy!"},
23742
- {436, "Don't cry over it..."},
23743
- {437, "Roll again"},
23744
- {438, "Tears up"},
23745
- {439, "What's inside?"},
23746
- {440, "Matt's kidney stone"},
23747
- {441, "Laser breath"},
23748
- {442, "Loss is power"},
23749
- {443, "Trick or treat?"},
23750
- {444, "He's a bleeder!"},
23751
- {445, "Bark at the moon!"},
23752
- {446, "Toxic breath"},
23753
- {447, "Crying makes me toot"},
23754
- {448, "Blood and guts!"},
23755
- {449, "It itches..."},
23756
- {450, "Gold tears!"},
23757
- {451, "I see the future"},
23758
- {452, "I'm leaking..."},
23759
- {453, "Bone tears!"},
23760
- {454, "Hold me!"},
23761
- {455, "I remember this..."},
23762
- {456, "HP up"},
23763
- {457, "Hard headed!"},
23764
- {458, "What's in there?"},
23765
- {459, "Booger tears!"},
23766
- {460, "Blind tears!"},
23767
- {461, "Egg tears!"},
23768
- {462, "Possessed tears!"},
23769
- {463, "Acid tears!"},
23770
- {464, "A gift from above"},
23771
- {465, "360 tears!"},
23772
- {466, "Outbreak!"},
23773
- {467, "Watch where you point that!"},
23774
- {468, "It follows"},
23775
- {469, ":("},
23776
- {470, "Lil hush!"},
23777
- {471, "Ain't he cute?"},
23778
- {472, "Hail to the king baby"},
23779
- {473, "Chub chub"},
23780
- {474, "You broke it!"},
23781
- {475, "My last resort"},
23782
- {476, "What will it be?"},
23783
- {477, "Consume"},
23784
- {478, "Stop!"},
23785
- {479, "Trinket melter!"},
23786
- {480, "Gain more friends!"},
23787
- {481, "109"},
23788
- {482, "Change"},
23789
- {483, "BOOOOOOOOOM!"},
23790
- {484, "I can't believe it's not butter bean!"},
23791
- {485, "50/50"},
23792
- {486, "I feel numb..."},
23793
- {487, "A pound of flesh..."},
23794
- {488, "Waggles a finger"},
23795
- {489, "Reroll forever"},
23796
- {490, "..."},
23797
- {491, "Pills pills pills!"},
23798
- {492, "Yo listen!"},
23799
- {493, "Panic = power"},
23800
- {494, "Electric tears"},
23801
- {495, "Flame tears"},
23802
- {496, "Needle shot"},
23803
- {497, "Camo kid"},
23804
- {498, "You feel very balanced"},
23805
- {499, "Peace be with you"},
23806
- {500, "Gives sacks"},
23807
- {501, "Money = health!"},
23808
- {502, "Creep shots"},
23809
- {503, "Big brother is watching"},
23810
- {504, "Friendly fly"},
23811
- {505, "Gotta catch em..."},
23812
- {506, "Watch your back!"},
23813
- {507, "More blood!"},
23814
- {508, "It's sharp!"},
23815
- {509, "Bloody friend"},
23816
- {510, "Unleash the power!"},
23817
- {511, "He's violent"},
23818
- {512, "Nothing can escape"},
23819
- {513, "Party time!"},
23820
- {514, "Lag!"},
23821
- {515, "Wrapped up nice for you!"},
23822
- {516, "Sprinkles."},
23823
- {517, "Rapid bomb drops"},
23824
- {518, "What could it be?!"},
23825
- {519, "Delirious friend"},
23826
- {520, "Bloody recharge"},
23827
- {521, "Allow 6 weeks for delivery"},
23828
- {522, "Power of the mind"},
23829
- {523, "Pack and unpack"},
23830
- {524, "Static tears"},
23831
- {525, "You're tearing me apart!"},
23832
- {526, "Lil harbingers!"},
23833
- {527, "Caaan do!"},
23834
- {528, "Eclipsed by the moon"},
23835
- {529, "Eyeball tears"},
23836
- {530, "Just hope you're not next..."},
23837
- {531, "I'm seeing red..."},
23838
- {532, "Feed them!"},
23839
- {533, "Smite thy enemy"},
23840
- {534, "Extra active item room"},
23841
- {535, "You feel safe"},
23842
- {536, "He demands a sacrifice"},
23843
- {537, "Puking buddy"},
23844
- {538, "Choking hazard"},
23845
- {539, "Sacrificial insemination"},
23846
- {540, "Skipping tears"},
23847
- {541, "HP up?"},
23848
- {542, "Projectile shield"},
23849
- {543, "Portable sanctuary"},
23850
- {544, "Stabbing time"},
23851
- {545, "Rise from the grave"},
23852
- {546, "Father's blessing"},
23853
- {547, "Tears up + you feel empty"},
23854
- {548, "Fetch!"},
23855
- {549, "Everything hurts"},
23856
- {550, "It feels cursed"},
23857
- {551, "It feels cursed"},
23858
- {552, "Lost but not forgotten"},
23859
- {553, "Spore shot"},
23860
- {554, "4me"},
23861
- {555, "Pain from gain"},
23862
- {556, "Temporary demon form"},
23863
- {557, "Reusable fortunes"},
23864
- {558, "More eyes"},
23865
- {559, "Zap!"},
23866
- {560, "No it doesn't..."},
23867
- {561, "DMG down + tears up + you feel nutty"},
23868
- {562, "It's only up from there"},
23869
- {563, "Random blast +5 bombs"},
23870
- {564, "Tears + shot speed up"},
23871
- {565, "What a cute little thing!"},
23872
- {566, "Sweet dreams"},
23873
- {567, "Keep the flame burning"},
23874
- {568, "Double tap shield"},
23875
- {569, "Bleed me dry"},
23876
- {570, "Tasty rainbow"},
23877
- {571, "Speed up + your feet feel stronger"},
23878
- {572, "DMG up + range up + controlled tears"},
23879
- {573, "Halo of tears"},
23880
- {574, "Purifying light"},
23881
- {575, "Invasive friend"},
23882
- {576, "Filthy friends"},
23883
- {577, "A king's fortune... but at what cost?"},
23884
- {578, "Party time!"},
23885
- {579, "Divine blade"},
23886
- {580, "Explore the other side"},
23887
- {581, "Flamboyant protector"},
23888
- {582, "Tears up. A mind changing experience!"},
23889
- {583, "Rocket propulsion +5 bombs"},
23890
- {584, "Spiritual companionship"},
23891
- {585, "A sacred offering"},
23892
- {586, "May you get what you came for"},
23893
- {588, "Radiant victory"},
23894
- {589, "The moon's blessing shines upon you"},
23895
- {590, "Speed up + you feel elusive"},
23896
- {591, "HP up + you feel pretty"},
23897
- {592, "Born to rock"},
23898
- {593, "Double tap dash"},
23899
- {594, "You're a gas giant!"},
23900
- {595, "Ring of tears"},
23901
- {596, "Ice tears"},
23902
- {597, "Open the floodgates"},
23903
- {598, "Size down"},
23904
- {599, "Extra curse rooms"},
23905
- {600, "Tears up"},
23906
- {601, "Tears up, you feel forgiven"},
23907
- {602, "Exclusive access!"},
23908
- {603, "Instant energy!"},
23909
- {604, "Mother's strength"},
23910
- {605, "Plop!"},
23911
- {606, "Stare into the abyss"},
23912
- {607, "Messy friend"},
23913
- {608, "Iced iced baby"},
23914
- {609, "???"},
23915
- {610, "Fat buddy"},
23916
- {611, "Hear my pain"},
23917
- {612, "Protect him"},
23918
- {614, "Bloody blast + HP up"},
23919
- {615, "Puffy buddy"},
23920
- {616, "It burns"},
23921
- {617, "Magnetizing tears"},
23922
- {618, "Delicious!"},
23923
- {619, "???"},
23924
- {621, "Full HP + temporary DMG up"},
23925
- {622, "In the beginning"},
23926
- {623, "Open your enemies"},
23927
- {624, "Collect them all!"},
23928
- {625, "I'm a big boy now!"},
23929
- {626, "???"},
23930
- {627, "???"},
23931
- {628, "Where am I?"},
23932
- {629, "Defense drone"},
23933
- {631, "Slice but no dice"},
23934
- {632, "Luck up + you feel protected"},
23935
- {633, "Ascended"},
23936
- {634, "Help from beyond"},
23937
- {635, "Bait and switch"},
23938
- {636, "Time to start over"},
23939
- {637, "They pack a punch!"},
23940
- {638, "Erase thy enemy"},
23941
- {639, "Gross!"},
23942
- {640, "Unleash their sorrow"},
23943
- {641, "Spill your guts"},
23944
- {642, "All your desires fulfilled"},
23945
- {643, "Awaken your faith"},
23946
- {644, "+1 to lowest stat"},
23947
- {645, "Itching for revenge"},
23948
- {646, "Demon blast +5 bombs"},
23949
- {647, "Beat the juice out of them!"},
23950
- {649, "Bouncy friend"},
23951
- {650, "Play time!"},
23952
- {651, "Follow the light"},
23953
- {652, "Kick it!"},
23954
- {653, "Begone!"},
23955
- {654, "Worse pills + evil up"},
23956
- {655, "Let it rip!"},
23957
- {656, "A king's fortune... but at what cost?"},
23958
- {657, "Clogged enemies"},
23959
- {658, "Micro friends"},
23960
- {659, "Tear size + range up"},
23961
- {660, "A link to your future"},
23962
- {661, "They lurk inside"},
23963
- {663, "You feel prickly"},
23964
- {664, "All you can eat"},
23965
- {665, "An eye for secrets"},
23966
- {667, "A helping hand"},
23967
- {668, "..."},
23968
- {669, "All stats up"},
23969
- {670, "There might be options"},
23970
- {671, "Power of love"},
23971
- {672, "Blood money"},
23972
- {673, "Deliver me from evil"},
23973
- {674, "Unfinished business"},
23974
- {675, "Shards of knowledge"},
23975
- {676, "It multiplies"},
23976
- {677, "The true out-of-body experience!"},
23977
- {678, "Fetus shots"},
23978
- {679, "Abyssal friend"},
23979
- {680, "Oh no..."},
23980
- {681, "It hungers"},
23981
- {682, "Clingy buddy"},
23982
- {683, "Break your enemies"},
23983
- {684, "Out for blood"},
23984
- {685, "Your faith grows"},
23985
- {686, "Power of faith"},
23986
- {687, "Best friends forever!"},
23987
- {688, "Let him free"},
23988
- {689, "?????"},
23989
- {690, "Bounce away!"},
23990
- {691, "Destined for greatness"},
23991
- {692, "He awaits your offering"},
23992
- {693, "Infest"},
23993
- {694, "Eternal sorrow"},
23994
- {695, "May your rage bring haste"},
23995
- {696, "Divine protection"},
23996
- {697, "He wants revenge"},
23997
- {698, "Double trouble!"},
23998
- {699, "Ancient power"},
23999
- {700, "I can see see the future future future"},
24000
- {701, "Buried memories"},
24001
- {702, "Hot blooded"},
24002
- {703, "Lost brother"},
24003
- {704, "Rip and tear"},
24004
- {705, "One with the shadows"},
24005
- {706, "Come forth from the depths"},
24006
- {707, "HP up"},
24007
- {708, "DMG up"},
24008
- {709, "Angel breaker"},
24009
- {710, "Make your destiny"},
24010
- {711, "Life and death"},
24011
- {712, "Item summoner"},
24012
- {713, "Return"},
24013
- {714, "Come back"},
24014
- {715, "Saved for later"},
24015
- {716, "Spending power"},
24016
- {717, "Under a rock"},
24017
- {719, "Portable shop"},
24018
- {720, "Anything is possible"},
24019
- {721, "Isaac and his mother lived alone in a small house on a hill"},
24020
- {722, "Repent"},
24021
- {723, "-1"},
24022
- {724, "Thick blooded"},
24023
- {725, "Your stomach rumbles"},
24024
- {726, "Double tap sneeze"},
24025
- {727, "Spooky blast +5 bombs"},
24026
- {728, "Demonic gestation"},
24027
- {729, "Chuck away!"},
24028
- {730, "DMG + luck up"},
24029
- {731, "DMG + range up"},
24030
- {732, "DMG up"}
24031
- })
23297
+ ____exports.COLLECTIBLE_DESCRIPTIONS = {
23298
+ [CollectibleType.NULL] = ____exports.DEFAULT_COLLECTIBLE_DESCRIPTION,
23299
+ [CollectibleType.SAD_ONION] = "Tears up",
23300
+ [CollectibleType.INNER_EYE] = "Triple shot",
23301
+ [CollectibleType.SPOON_BENDER] = "Homing shots",
23302
+ [CollectibleType.CRICKETS_HEAD] = "DMG up",
23303
+ [CollectibleType.MY_REFLECTION] = "Boomerang tears",
23304
+ [CollectibleType.NUMBER_ONE] = "Tears up + range down",
23305
+ [CollectibleType.BLOOD_OF_THE_MARTYR] = "DMG up",
23306
+ [CollectibleType.BROTHER_BOBBY] = "Friends 'till the end",
23307
+ [CollectibleType.SKATOLE] = "Fly love",
23308
+ [CollectibleType.HALO_OF_FLIES] = "Projectile protection",
23309
+ [CollectibleType.ONE_UP] = "Extra life",
23310
+ [CollectibleType.MAGIC_MUSHROOM] = "All stats up!",
23311
+ [CollectibleType.VIRUS] = "Poison touch + speed up",
23312
+ [CollectibleType.ROID_RAGE] = "Speed and range up",
23313
+ [CollectibleType.HEART] = "HP up",
23314
+ [CollectibleType.RAW_LIVER] = "HP up",
23315
+ [CollectibleType.SKELETON_KEY] = "99 keys",
23316
+ [CollectibleType.DOLLAR] = "$$$",
23317
+ [CollectibleType.BOOM] = "10 bombs",
23318
+ [CollectibleType.TRANSCENDENCE] = "We all float down here...",
23319
+ [CollectibleType.COMPASS] = "The end is near",
23320
+ [CollectibleType.LUNCH] = "HP up",
23321
+ [CollectibleType.DINNER] = "HP up",
23322
+ [CollectibleType.DESSERT] = "HP up",
23323
+ [CollectibleType.BREAKFAST] = "HP up",
23324
+ [CollectibleType.ROTTEN_MEAT] = "HP up",
23325
+ [CollectibleType.WOODEN_SPOON] = "Speed up",
23326
+ [CollectibleType.BELT] = "Speed up",
23327
+ [CollectibleType.MOMS_UNDERWEAR] = "Range up",
23328
+ [CollectibleType.MOMS_HEELS] = "Range up",
23329
+ [CollectibleType.MOMS_LIPSTICK] = "Range up",
23330
+ [CollectibleType.WIRE_COAT_HANGER] = "Tears up",
23331
+ [CollectibleType.BIBLE] = "Temporary flight",
23332
+ [CollectibleType.BOOK_OF_BELIAL] = "Temporary DMG up",
23333
+ [CollectibleType.NECRONOMICON] = "Mass room damage",
23334
+ [CollectibleType.POOP] = "Plop!",
23335
+ [CollectibleType.MR_BOOM] = "Reusable bomb buddy",
23336
+ [CollectibleType.TAMMYS_HEAD] = "Reusable tear burst",
23337
+ [CollectibleType.MOMS_BRA] = "Mass paralysis",
23338
+ [CollectibleType.KAMIKAZE] = "Become the bomb!",
23339
+ [CollectibleType.MOMS_PAD] = "Mass fear",
23340
+ [CollectibleType.BOBS_ROTTEN_HEAD] = "Reusable ranged bomb",
23341
+ [CollectibleType.TELEPORT] = "Teleport!",
23342
+ [CollectibleType.YUM_HEART] = "Reusable regeneration",
23343
+ [CollectibleType.LUCKY_FOOT] = "Luck up",
23344
+ [CollectibleType.DOCTORS_REMOTE] = "Reusable air strike",
23345
+ [CollectibleType.CUPIDS_ARROW] = "Piercing shots",
23346
+ [CollectibleType.SHOOP_DA_WHOOP] = "BLLLARRRRGGG!",
23347
+ [CollectibleType.STEVEN] = "DMG up",
23348
+ [CollectibleType.PENTAGRAM] = "DMG up",
23349
+ [CollectibleType.DR_FETUS] = "???",
23350
+ [CollectibleType.MAGNETO] = "Item snatcher",
23351
+ [CollectibleType.TREASURE_MAP] = "Full visible map",
23352
+ [CollectibleType.MOMS_EYE] = "Eye in the back of your head",
23353
+ [CollectibleType.LEMON_MISHAP] = "Oops...",
23354
+ [CollectibleType.DISTANT_ADMIRATION] = "Attack fly",
23355
+ [CollectibleType.BOOK_OF_SHADOWS] = "Temporary invincibility",
23356
+ [CollectibleType.BOOK_OF_BELIAL_BIRTHRIGHT] = "Temporary DMG up",
23357
+ [CollectibleType.LADDER] = "Building bridges",
23358
+ [CollectibleType.CHARM_OF_THE_VAMPIRE] = "Kills heal",
23359
+ [CollectibleType.BATTERY] = "Stores energy",
23360
+ [CollectibleType.STEAM_SALE] = "50% off",
23361
+ [CollectibleType.ANARCHIST_COOKBOOK] = "Summon bombs",
23362
+ [CollectibleType.HOURGLASS] = "Temporary enemy slowdown",
23363
+ [CollectibleType.SISTER_MAGGY] = "Friends 'till the end",
23364
+ [CollectibleType.TECHNOLOGY] = "Laser tears",
23365
+ [CollectibleType.CHOCOLATE_MILK] = "Charge shots",
23366
+ [CollectibleType.GROWTH_HORMONES] = "Speed + DMG up",
23367
+ [CollectibleType.MINI_MUSH] = "Speed + range up",
23368
+ [CollectibleType.ROSARY] = "Tears + faith up",
23369
+ [CollectibleType.CUBE_OF_MEAT] = "Gotta meat 'em all",
23370
+ [CollectibleType.QUARTER] = "+25 coins",
23371
+ [CollectibleType.PHD] = "Better pills",
23372
+ [CollectibleType.XRAY_VISION] = "I've seen everything",
23373
+ [CollectibleType.MY_LITTLE_UNICORN] = "Temporary badass",
23374
+ [CollectibleType.BOOK_OF_REVELATIONS] = "Reusable soul protection",
23375
+ [CollectibleType.MARK] = "DMG + speed up",
23376
+ [CollectibleType.PACT] = "DMG + tears up",
23377
+ [CollectibleType.DEAD_CAT] = "9 lives",
23378
+ [CollectibleType.LORD_OF_THE_PIT] = "Demon wings",
23379
+ [CollectibleType.NAIL] = "Temporary demon form",
23380
+ [CollectibleType.WE_NEED_TO_GO_DEEPER] = "Reusable level skip",
23381
+ [CollectibleType.DECK_OF_CARDS] = "Reusable card generator ",
23382
+ [CollectibleType.MONSTROS_TOOTH] = "Summon Monstro",
23383
+ [CollectibleType.LOKIS_HORNS] = "Cross tears",
23384
+ [CollectibleType.LITTLE_CHUBBY] = "Attack buddy",
23385
+ [CollectibleType.SPIDER_BITE] = "Slow effect",
23386
+ [CollectibleType.SMALL_ROCK] = "DMG up",
23387
+ [CollectibleType.SPELUNKER_HAT] = "See-through doors",
23388
+ [CollectibleType.SUPER_BANDAGE] = "+2 hearts",
23389
+ [CollectibleType.GAMEKID] = "Temporary Man-Pac",
23390
+ [CollectibleType.SACK_OF_PENNIES] = "Gives money",
23391
+ [CollectibleType.ROBO_BABY] = "Friends 'till the bbbbzzzt",
23392
+ [CollectibleType.LITTLE_CHAD] = "Gives kisses",
23393
+ [CollectibleType.BOOK_OF_SIN] = "Reusable item generator",
23394
+ [CollectibleType.RELIC] = "Soul generator",
23395
+ [CollectibleType.LITTLE_GISH] = "Sticky friend",
23396
+ [CollectibleType.LITTLE_STEVEN] = "Psychic friend",
23397
+ [CollectibleType.HALO] = "All stats up",
23398
+ [CollectibleType.MOMS_BOTTLE_OF_PILLS] = "Reusable pill generator",
23399
+ [CollectibleType.COMMON_COLD] = "Poison damage",
23400
+ [CollectibleType.PARASITE] = "Split shot",
23401
+ [CollectibleType.D6] = "Reroll your destiny",
23402
+ [CollectibleType.MR_MEGA] = "Bigger boom",
23403
+ [CollectibleType.PINKING_SHEARS] = "Cut and run",
23404
+ [CollectibleType.WAFER] = "Damage resistance",
23405
+ [CollectibleType.MONEY_EQUALS_POWER] = "$$$ = DMG",
23406
+ [CollectibleType.MOMS_CONTACTS] = "Freeze effect",
23407
+ [CollectibleType.BEAN] = "Toot on command",
23408
+ [CollectibleType.GUARDIAN_ANGEL] = "Extra protection",
23409
+ [CollectibleType.DEMON_BABY] = "Auto-turret friend",
23410
+ [CollectibleType.MOMS_KNIFE] = "Stab stab stab",
23411
+ [CollectibleType.OUIJA_BOARD] = "Spectral tears",
23412
+ [CollectibleType.NINE_VOLT] = "Quicker charge",
23413
+ [CollectibleType.DEAD_BIRD] = "Protective buddy",
23414
+ [CollectibleType.BRIMSTONE] = "Blood laser barrage",
23415
+ [CollectibleType.BLOOD_BAG] = "HP up",
23416
+ [CollectibleType.ODD_MUSHROOM_THIN] = "Tears + speed up, DMG down",
23417
+ [CollectibleType.ODD_MUSHROOM_LARGE] = "HP + DMG up, speed down",
23418
+ [CollectibleType.WHORE_OF_BABYLON] = "Curse up",
23419
+ [CollectibleType.MONSTER_MANUAL] = "Temporary buddy generator",
23420
+ [CollectibleType.DEAD_SEA_SCROLLS] = "It's a mystery",
23421
+ [CollectibleType.BOBBY_BOMB] = "Homing bombs",
23422
+ [CollectibleType.RAZOR_BLADE] = "Feel my pain",
23423
+ [CollectibleType.FORGET_ME_NOW] = "I don't remember...",
23424
+ [CollectibleType.FOREVER_ALONE] = "Attack fly",
23425
+ [CollectibleType.BUCKET_OF_LARD] = "HP up",
23426
+ [CollectibleType.PONY] = "Flight + dash attack",
23427
+ [CollectibleType.BOMB_BAG] = "Gives bombs",
23428
+ [CollectibleType.LUMP_OF_COAL] = "My Xmas present",
23429
+ [CollectibleType.GUPPYS_PAW] = "Soul converter",
23430
+ [CollectibleType.GUPPYS_TAIL] = "Cursed?",
23431
+ [CollectibleType.IV_BAG] = "Portable blood bank",
23432
+ [CollectibleType.BEST_FRIEND] = "Friends 'till the end",
23433
+ [CollectibleType.REMOTE_DETONATOR] = "Remote bomb detonation",
23434
+ [CollectibleType.STIGMATA] = "DMG + HP up",
23435
+ [CollectibleType.MOMS_PURSE] = "More trinket room",
23436
+ [CollectibleType.BOBS_CURSE] = "+5 poison bombs",
23437
+ [CollectibleType.PAGEANT_BOY] = "Ultimate grand supreme",
23438
+ [CollectibleType.SCAPULAR] = "Pray for a miracle",
23439
+ [CollectibleType.SPEED_BALL] = "Speed + shot speed up",
23440
+ [CollectibleType.BUM_FRIEND] = "He's greedy",
23441
+ [CollectibleType.GUPPYS_HEAD] = "Reusable fly hive",
23442
+ [CollectibleType.PRAYER_CARD] = "Reusable eternity ",
23443
+ [CollectibleType.NOTCHED_AXE] = "Rocks don't stand a chance",
23444
+ [CollectibleType.INFESTATION] = "Fly revenge",
23445
+ [CollectibleType.IPECAC] = "Explosive shots",
23446
+ [CollectibleType.TOUGH_LOVE] = "Tooth shot",
23447
+ [CollectibleType.MULLIGAN] = "They grow inside",
23448
+ [CollectibleType.TECHNOLOGY_2] = "Extra laser",
23449
+ [CollectibleType.MUTANT_SPIDER] = "Quad shot",
23450
+ [CollectibleType.CHEMICAL_PEEL] = "DMG up",
23451
+ [CollectibleType.PEEPER] = "Plop!",
23452
+ [CollectibleType.HABIT] = "Item martyr",
23453
+ [CollectibleType.BLOODY_LUST] = "RAGE!",
23454
+ [CollectibleType.CRYSTAL_BALL] = "I see my future",
23455
+ [CollectibleType.SPIRIT_OF_THE_NIGHT] = "Scary",
23456
+ [CollectibleType.CRACK_THE_SKY] = "Holy white death",
23457
+ [CollectibleType.ANKH] = "Eternal life?",
23458
+ [CollectibleType.CELTIC_CROSS] = "Blessing of protection",
23459
+ [CollectibleType.GHOST_BABY] = "Spectral buddy",
23460
+ [CollectibleType.CANDLE] = "Reusable flames",
23461
+ [CollectibleType.CAT_O_NINE_TAILS] = "Shot speed + damage up",
23462
+ [CollectibleType.D20] = "Reroll the basics",
23463
+ [CollectibleType.HARLEQUIN_BABY] = "Double shot buddy",
23464
+ [CollectibleType.EPIC_FETUS] = "On-demand air strike",
23465
+ [CollectibleType.POLYPHEMUS] = "Mega tears",
23466
+ [CollectibleType.DADDY_LONGLEGS] = "Daddy's love",
23467
+ [CollectibleType.SPIDER_BUTT] = "Mass enemy slowdown + damage",
23468
+ [CollectibleType.SACRIFICIAL_DAGGER] = "My fate protects me",
23469
+ [CollectibleType.MITRE] = "Blessing of purity",
23470
+ [CollectibleType.RAINBOW_BABY] = "Random buddy",
23471
+ [CollectibleType.DADS_KEY] = "Opens all doors...",
23472
+ [CollectibleType.STEM_CELLS] = "HP + shot speed up",
23473
+ [CollectibleType.PORTABLE_SLOT] = "Gamble 24/7",
23474
+ [CollectibleType.HOLY_WATER] = "Splash!",
23475
+ [CollectibleType.FATE] = "Flight eternal",
23476
+ [CollectibleType.BLACK_BEAN] = "Toot on touch",
23477
+ [CollectibleType.WHITE_PONY] = "Flight + holy death",
23478
+ [CollectibleType.SACRED_HEART] = "Homing shots + DMG up",
23479
+ [CollectibleType.TOOTH_PICKS] = "Tears + shot speed up",
23480
+ [CollectibleType.HOLY_GRAIL] = "Flight + HP up",
23481
+ [CollectibleType.DEAD_DOVE] = "Flight + spectral tears",
23482
+ [CollectibleType.BLOOD_RIGHTS] = "Mass enemy damage at a cost",
23483
+ [CollectibleType.GUPPYS_HAIRBALL] = "Swing it",
23484
+ [CollectibleType.ABEL] = "Mirrored buddy",
23485
+ [CollectibleType.SMB_SUPER_FAN] = "All stats up",
23486
+ [CollectibleType.PYRO] = "99 bombs",
23487
+ [CollectibleType.THREE_DOLLAR_BILL] = "Rainbow tears",
23488
+ [CollectibleType.TELEPATHY_BOOK] = "Temporary psychic shot",
23489
+ [CollectibleType.MEAT] = "DMG + HP up",
23490
+ [CollectibleType.MAGIC_8_BALL] = "Shot speed up",
23491
+ [CollectibleType.MOMS_COIN_PURSE] = "What's all this...?",
23492
+ [CollectibleType.SQUEEZY] = "Tears up",
23493
+ [CollectibleType.JESUS_JUICE] = "Damage + range up",
23494
+ [CollectibleType.BOX] = "Stuff",
23495
+ [CollectibleType.MOMS_KEY] = "Better chest loot +2 keys",
23496
+ [CollectibleType.MOMS_EYESHADOW] = "Charm tears",
23497
+ [CollectibleType.IRON_BAR] = "DMG up + concussive tears",
23498
+ [CollectibleType.MIDAS_TOUCH] = "Golden touch",
23499
+ [CollectibleType.HUMBLING_BUNDLE] = "1+1 free 4Evar",
23500
+ [CollectibleType.FANNY_PACK] = "Filled with goodies",
23501
+ [CollectibleType.SHARP_PLUG] = "Infinite charge... at a cost",
23502
+ [CollectibleType.GUILLOTINE] = "DMG + tears up. An out-of-body experience!",
23503
+ [CollectibleType.BALL_OF_BANDAGES] = "Gotta lick 'em all!",
23504
+ [CollectibleType.CHAMPION_BELT] = "DMG + challenge up",
23505
+ [CollectibleType.BUTT_BOMBS] = "Toxic blast +5 bombs",
23506
+ [CollectibleType.GNAWED_LEAF] = "Unbreakable",
23507
+ [CollectibleType.SPIDERBABY] = "Spider revenge",
23508
+ [CollectibleType.GUPPYS_COLLAR] = "Eternal life?",
23509
+ [CollectibleType.LOST_CONTACT] = "Shielded tears",
23510
+ [CollectibleType.ANEMIC] = "Toxic blood",
23511
+ [CollectibleType.GOAT_HEAD] = "He accepts your offering",
23512
+ [CollectibleType.CEREMONIAL_ROBES] = "DMG + evil up",
23513
+ [CollectibleType.MOMS_WIG] = "You feel itchy...",
23514
+ [CollectibleType.PLACENTA] = "Regeneration + HP up",
23515
+ [CollectibleType.OLD_BANDAGE] = "HP up",
23516
+ [CollectibleType.SAD_BOMBS] = "Tear blasts +5 bombs",
23517
+ [CollectibleType.RUBBER_CEMENT] = "Bouncing tears",
23518
+ [CollectibleType.ANTI_GRAVITY] = "Anti-gravity tears + tears up",
23519
+ [CollectibleType.PYROMANIAC] = "It hurts so good +5 bombs",
23520
+ [CollectibleType.CRICKETS_BODY] = "Bursting shots + tears up",
23521
+ [CollectibleType.GIMPY] = "Sweet suffering",
23522
+ [CollectibleType.BLACK_LOTUS] = "HP up x3",
23523
+ [CollectibleType.PIGGY_BANK] = "My life savings",
23524
+ [CollectibleType.MOMS_PERFUME] = "Fear shot + tears up",
23525
+ [CollectibleType.MONSTROS_LUNG] = "Charged burst attack",
23526
+ [CollectibleType.ABADDON] = "Evil + DMG up + fear shot",
23527
+ [CollectibleType.BALL_OF_TAR] = "Sticky feet...",
23528
+ [CollectibleType.STOP_WATCH] = "Let's slow this down a bit...",
23529
+ [CollectibleType.TINY_PLANET] = "Orbiting tears + range up",
23530
+ [CollectibleType.INFESTATION_2] = "Infestation shot",
23531
+ [CollectibleType.E_COLI] = "Turdy touch",
23532
+ [CollectibleType.DEATHS_TOUCH] = "Piercing shots + DMG up",
23533
+ [CollectibleType.KEY_PIECE_1] = "???",
23534
+ [CollectibleType.KEY_PIECE_2] = "???",
23535
+ [CollectibleType.EXPERIMENTAL_TREATMENT] = "Some stats up, some stats down",
23536
+ [CollectibleType.CONTRACT_FROM_BELOW] = "Wealth... but at what cost?",
23537
+ [CollectibleType.INFAMY] = "Blocks damage... sometimes",
23538
+ [CollectibleType.TRINITY_SHIELD] = "You feel guarded",
23539
+ [CollectibleType.TECH_5] = "It's still being tested...",
23540
+ [CollectibleType.TWENTY_TWENTY] = "Double shot",
23541
+ [CollectibleType.BLUE_MAP] = "Secrets",
23542
+ [CollectibleType.BFFS] = "Your friends rule",
23543
+ [CollectibleType.HIVE_MIND] = "Giant spiders and flies",
23544
+ [CollectibleType.THERES_OPTIONS] = "More options",
23545
+ [CollectibleType.BOGO_BOMBS] = "1+1 BOOM!",
23546
+ [CollectibleType.STARTER_DECK] = "Extra card room",
23547
+ [CollectibleType.LITTLE_BAGGY] = "Extra pill room",
23548
+ [CollectibleType.MAGIC_SCAB] = "HP + luck up",
23549
+ [CollectibleType.BLOOD_CLOT] = "DMG + range up",
23550
+ [CollectibleType.SCREW] = "Tears + shot speed up",
23551
+ [CollectibleType.HOT_BOMBS] = "Burning blast +5 bombs",
23552
+ [CollectibleType.FIRE_MIND] = "Flaming tears",
23553
+ [CollectibleType.MISSING_NO] = "Syntax error",
23554
+ [CollectibleType.DARK_MATTER] = "DMG up + fear shot",
23555
+ [CollectibleType.BLACK_CANDLE] = "Curse immunity + evil up",
23556
+ [CollectibleType.PROPTOSIS] = "Short range mega tears",
23557
+ [CollectibleType.MISSING_PAGE_2] = "Evil up. Your enemies will pay!",
23558
+ [CollectibleType.CLEAR_RUNE] = "Rune mimic",
23559
+ [CollectibleType.SMART_FLY] = "Revenge fly",
23560
+ [CollectibleType.DRY_BABY] = "Immortal friend",
23561
+ [CollectibleType.JUICY_SACK] = "Sticky babies",
23562
+ [CollectibleType.ROBO_BABY_2] = "We worked out all the kinks",
23563
+ [CollectibleType.ROTTEN_BABY] = "Infested friend",
23564
+ [CollectibleType.HEADLESS_BABY] = "Bloody friend",
23565
+ [CollectibleType.LEECH] = "Blood sucker",
23566
+ [CollectibleType.MYSTERY_SACK] = "?",
23567
+ [CollectibleType.BBF] = "Big Beautiful Fly",
23568
+ [CollectibleType.BOBS_BRAIN] = "Explosive thoughts",
23569
+ [CollectibleType.BEST_BUD] = "Sworn protector",
23570
+ [CollectibleType.LIL_BRIMSTONE] = "Evil friend",
23571
+ [CollectibleType.ISAACS_HEART] = "Protect it",
23572
+ [CollectibleType.LIL_HAUNT] = "Fear him",
23573
+ [CollectibleType.DARK_BUM] = "He wants to take your life",
23574
+ [CollectibleType.BIG_FAN] = "Fat protector",
23575
+ [CollectibleType.SISSY_LONGLEGS] = "She loves you",
23576
+ [CollectibleType.PUNCHING_BAG] = "Scape goat",
23577
+ [CollectibleType.HOW_TO_JUMP] = "It's time you learned how",
23578
+ [CollectibleType.D100] = "REEROLLLLL!",
23579
+ [CollectibleType.D4] = "Reroll into something else",
23580
+ [CollectibleType.D10] = "Reroll enemies",
23581
+ [CollectibleType.BLANK_CARD] = "Card mimic",
23582
+ [CollectibleType.BOOK_OF_SECRETS] = "Tome of knowledge",
23583
+ [CollectibleType.BOX_OF_SPIDERS] = "It's a box of spiders",
23584
+ [CollectibleType.RED_CANDLE] = "Flame on",
23585
+ [CollectibleType.JAR] = "Save your life",
23586
+ [CollectibleType.FLUSH] = "...",
23587
+ [CollectibleType.SATANIC_BIBLE] = "Reusable evil... but at what cost?",
23588
+ [CollectibleType.HEAD_OF_KRAMPUS] = "Krampus rage",
23589
+ [CollectibleType.BUTTER_BEAN] = "Reusable knock-back",
23590
+ [CollectibleType.MAGIC_FINGERS] = "Pay to win",
23591
+ [CollectibleType.CONVERTER] = "Convert your soul",
23592
+ [CollectibleType.BLUE_BOX] = "? ?",
23593
+ [CollectibleType.UNICORN_STUMP] = "You feel stumped",
23594
+ [CollectibleType.TAURUS] = "Speed down + rage is building",
23595
+ [CollectibleType.ARIES] = "Ramming speed",
23596
+ [CollectibleType.CANCER] = "HP up + you feel protected",
23597
+ [CollectibleType.LEO] = "Stompy",
23598
+ [CollectibleType.VIRGO] = "You feel refreshed and protected",
23599
+ [CollectibleType.LIBRA] = "You feel balanced",
23600
+ [CollectibleType.SCORPIO] = "Poison tears",
23601
+ [CollectibleType.SAGITTARIUS] = "Piercing shots + speed up",
23602
+ [CollectibleType.CAPRICORN] = "All stats up",
23603
+ [CollectibleType.AQUARIUS] = "Trail of tears",
23604
+ [CollectibleType.PISCES] = "Tears up + knock-back shot",
23605
+ [CollectibleType.EVES_MASCARA] = "DMG up, tears + shot speed down",
23606
+ [CollectibleType.JUDAS_SHADOW] = "Sweet revenge",
23607
+ [CollectibleType.MAGGYS_BOW] = "HP up + you feel healthy",
23608
+ [CollectibleType.HOLY_MANTLE] = "Holy shield",
23609
+ [CollectibleType.THUNDER_THIGHS] = "HP up + speed down + you feel stompy",
23610
+ [CollectibleType.STRANGE_ATTRACTOR] = "Magnetic tears",
23611
+ [CollectibleType.CURSED_EYE] = "Cursed charge shot",
23612
+ [CollectibleType.MYSTERIOUS_LIQUID] = "Toxic splash damage",
23613
+ [CollectibleType.GEMINI] = "Conjoined friend",
23614
+ [CollectibleType.CAINS_OTHER_EYE] = "Near-sighted friend",
23615
+ [CollectibleType.BLUE_BABYS_ONLY_FRIEND] = "Controlled friend",
23616
+ [CollectibleType.SAMSONS_CHAINS] = "The ol' ball and chain",
23617
+ [CollectibleType.MONGO_BABY] = "Mongo friend",
23618
+ [CollectibleType.ISAACS_TEARS] = "Collected tears",
23619
+ [CollectibleType.UNDEFINED] = "Undefined",
23620
+ [CollectibleType.SCISSORS] = "Lose your head",
23621
+ [CollectibleType.BREATH_OF_LIFE] = "Invincibility at a cost",
23622
+ [CollectibleType.POLAROID] = "Fate chosen",
23623
+ [CollectibleType.NEGATIVE] = "Fate chosen",
23624
+ [CollectibleType.LUDOVICO_TECHNIQUE] = "Controlled tears",
23625
+ [CollectibleType.SOY_MILK] = "DMG down + tears way up",
23626
+ [CollectibleType.GODHEAD] = "God tears",
23627
+ [CollectibleType.LAZARUS_RAGS] = "Eternal life?",
23628
+ [CollectibleType.MIND] = "I know all",
23629
+ [CollectibleType.BODY] = "I feel all",
23630
+ [CollectibleType.SOUL] = "I am all",
23631
+ [CollectibleType.DEAD_ONION] = "Toxic aura tears",
23632
+ [CollectibleType.BROKEN_WATCH] = "I think it's broken",
23633
+ [CollectibleType.BOOMERANG] = "It will never leave you",
23634
+ [CollectibleType.SAFETY_PIN] = "Evil + range + shot speed up",
23635
+ [CollectibleType.CAFFEINE_PILL] = "Speed up + size down",
23636
+ [CollectibleType.TORN_PHOTO] = "Tears + shot speed up",
23637
+ [CollectibleType.BLUE_CAP] = "HP + tears up + shot speed down",
23638
+ [CollectibleType.LATCH_KEY] = "Luck up",
23639
+ [CollectibleType.MATCH_BOOK] = "Evil up",
23640
+ [CollectibleType.SYNTHOIL] = "DMG + range up",
23641
+ [CollectibleType.SNACK] = "HP up",
23642
+ [CollectibleType.DIPLOPIA] = "Double item vision",
23643
+ [CollectibleType.PLACEBO] = "Pill mimic",
23644
+ [CollectibleType.WOODEN_NICKEL] = "Flip a coin",
23645
+ [CollectibleType.TOXIC_SHOCK] = "Mass poison",
23646
+ [CollectibleType.MEGA_BEAN] = "Giga fart!",
23647
+ [CollectibleType.GLASS_CANNON] = "Be gentle...",
23648
+ [CollectibleType.BOMBER_BOY] = "Cross blast + 5 bombs",
23649
+ [CollectibleType.CRACK_JACKS] = "HP up. Don't swallow the prize!",
23650
+ [CollectibleType.MOMS_PEARLS] = "Range + luck up",
23651
+ [CollectibleType.CAR_BATTERY] = "Active power up",
23652
+ [CollectibleType.BOX_OF_FRIENDS] = "Double your friends",
23653
+ [CollectibleType.WIZ] = "Double wiz shot!",
23654
+ [CollectibleType.EIGHT_INCH_NAILS] = "Stick it to 'em!",
23655
+ [CollectibleType.INCUBUS] = "Dark friend",
23656
+ [CollectibleType.FATES_REWARD] = "Your fate beside you",
23657
+ [CollectibleType.LIL_CHEST] = "What's in the box?",
23658
+ [CollectibleType.SWORN_PROTECTOR] = "Protective friend",
23659
+ [CollectibleType.FRIEND_ZONE] = "Friendly fly",
23660
+ [CollectibleType.LOST_FLY] = "Lost protector",
23661
+ [CollectibleType.SCATTER_BOMBS] = "We put bombs in your bombs!",
23662
+ [CollectibleType.STICKY_BOMBS] = "Egg sack bombs!",
23663
+ [CollectibleType.EPIPHORA] = "Intensifying tears",
23664
+ [CollectibleType.CONTINUUM] = "Transcendent tears",
23665
+ [CollectibleType.MR_DOLLY] = "Range + tears up",
23666
+ [CollectibleType.CURSE_OF_THE_TOWER] = "Embrace chaos",
23667
+ [CollectibleType.CHARGED_BABY] = "Bbbzzzzzt! ",
23668
+ [CollectibleType.DEAD_EYE] = "Accuracy brings power",
23669
+ [CollectibleType.HOLY_LIGHT] = "Holy death shot",
23670
+ [CollectibleType.HOST_HAT] = "Blast resistance",
23671
+ [CollectibleType.RESTOCK] = "Never ending stores!",
23672
+ [CollectibleType.BURSTING_SACK] = "Spider love",
23673
+ [CollectibleType.NUMBER_TWO] = "Uh oh...",
23674
+ [CollectibleType.PUPULA_DUPLEX] = "Wide shot",
23675
+ [CollectibleType.PAY_TO_PLAY] = "Money talks",
23676
+ [CollectibleType.EDENS_BLESSING] = "Tears up + your future shines brighter",
23677
+ [CollectibleType.FRIEND_BALL] = "Gotta fetch 'em all!",
23678
+ [CollectibleType.TEAR_DETONATOR] = "Remote tear detonation",
23679
+ [CollectibleType.LIL_GURDY] = "A gurd of your own!",
23680
+ [CollectibleType.BUMBO] = "Bumbo want coin!",
23681
+ [CollectibleType.D12] = "Rerolls rocks",
23682
+ [CollectibleType.CENSER] = "Peace be with you",
23683
+ [CollectibleType.KEY_BUM] = "He wants your keys!",
23684
+ [CollectibleType.RUNE_BAG] = "Rune generator",
23685
+ [CollectibleType.SERAPHIM] = "Sworn friend",
23686
+ [CollectibleType.BETRAYAL] = "Turn your enemy",
23687
+ [CollectibleType.ZODIAC] = "The heavens will change you",
23688
+ [CollectibleType.SERPENTS_KISS] = "The kiss of death",
23689
+ [CollectibleType.MARKED] = "Directed tears",
23690
+ [CollectibleType.TECH_X] = "Laser ring tears",
23691
+ [CollectibleType.VENTRICLE_RAZOR] = "Short cutter",
23692
+ [CollectibleType.TRACTOR_BEAM] = "Controlled tears",
23693
+ [CollectibleType.GODS_FLESH] = "Shrink shot!",
23694
+ [CollectibleType.MAW_OF_THE_VOID] = "Consume thy enemy!",
23695
+ [CollectibleType.SPEAR_OF_DESTINY] = "Your destiny",
23696
+ [CollectibleType.EXPLOSIVO] = "Sticky bomb shot",
23697
+ [CollectibleType.CHAOS] = "!!!",
23698
+ [CollectibleType.SPIDER_MOD] = "Mod buddy",
23699
+ [CollectibleType.FARTING_BABY] = "He farts",
23700
+ [CollectibleType.GB_BUG] = "Double tap glitch",
23701
+ [CollectibleType.D8] = "Reroll stats",
23702
+ [CollectibleType.PURITY] = "Aura stat boost",
23703
+ [CollectibleType.ATHAME] = "Call to the void",
23704
+ [CollectibleType.EMPTY_VESSEL] = "I reward an empty vessel",
23705
+ [CollectibleType.EVIL_EYE] = "Eye shot",
23706
+ [CollectibleType.LUSTY_BLOOD] = "Their blood brings rage!",
23707
+ [CollectibleType.CAMBION_CONCEPTION] = "Feed them hate",
23708
+ [CollectibleType.IMMACULATE_CONCEPTION] = "Feed them love",
23709
+ [CollectibleType.MORE_OPTIONS] = "There's options",
23710
+ [CollectibleType.CROWN_OF_LIGHT] = "The untainted gain power",
23711
+ [CollectibleType.DEEP_POCKETS] = "More money!",
23712
+ [CollectibleType.SUCCUBUS] = "Damage booster",
23713
+ [CollectibleType.FRUIT_CAKE] = "Rainbow effects!",
23714
+ [CollectibleType.TELEPORT_2] = "I-Teleport!",
23715
+ [CollectibleType.BLACK_POWDER] = "Spin the black circle!",
23716
+ [CollectibleType.KIDNEY_BEAN] = "Love toots",
23717
+ [CollectibleType.GLOWING_HOUR_GLASS] = "Turn back time",
23718
+ [CollectibleType.CIRCLE_OF_PROTECTION] = "Protect me from myself",
23719
+ [CollectibleType.SACK_HEAD] = "More sacks!",
23720
+ [CollectibleType.NIGHT_LIGHT] = "Scared of the dark?",
23721
+ [CollectibleType.OBSESSED_FAN] = "Follows my every move...",
23722
+ [CollectibleType.MINE_CRAFTER] = "Booom!",
23723
+ [CollectibleType.PJS] = "You feel cozy",
23724
+ [CollectibleType.HEAD_OF_THE_KEEPER] = "Penny tears",
23725
+ [CollectibleType.PAPA_FLY] = "Turret follower",
23726
+ [CollectibleType.MULTIDIMENSIONAL_BABY] = "ydduB Buddy",
23727
+ [CollectibleType.GLITTER_BOMBS] = "Prize bombs",
23728
+ [CollectibleType.MY_SHADOW] = "Me! And my shaaaadow!",
23729
+ [CollectibleType.JAR_OF_FLIES] = "Bug catcher",
23730
+ [CollectibleType.LIL_LOKI] = "4-way buddy!",
23731
+ [CollectibleType.MILK] = "Don't cry over it...",
23732
+ [CollectibleType.D7] = "Roll again",
23733
+ [CollectibleType.BINKY] = "Tears up",
23734
+ [CollectibleType.MOMS_BOX] = "What's inside?",
23735
+ [CollectibleType.KIDNEY_STONE] = "Matt's kidney stone",
23736
+ [CollectibleType.MEGA_BLAST] = "Laser breath",
23737
+ [CollectibleType.DARK_PRINCES_CROWN] = "Loss is power",
23738
+ [CollectibleType.APPLE] = "Trick or treat?",
23739
+ [CollectibleType.LEAD_PENCIL] = "He's a bleeder!",
23740
+ [CollectibleType.DOG_TOOTH] = "Bark at the moon!",
23741
+ [CollectibleType.DEAD_TOOTH] = "Toxic breath",
23742
+ [CollectibleType.LINGER_BEAN] = "Crying makes me toot",
23743
+ [CollectibleType.SHARD_OF_GLASS] = "Blood and guts!",
23744
+ [CollectibleType.METAL_PLATE] = "It itches...",
23745
+ [CollectibleType.EYE_OF_GREED] = "Gold tears!",
23746
+ [CollectibleType.TAROT_CLOTH] = "I see the future",
23747
+ [CollectibleType.VARICOSE_VEINS] = "I'm leaking...",
23748
+ [CollectibleType.COMPOUND_FRACTURE] = "Bone tears!",
23749
+ [CollectibleType.POLYDACTYLY] = "Hold me!",
23750
+ [CollectibleType.DADS_LOST_COIN] = "I remember this...",
23751
+ [CollectibleType.MIDNIGHT_SNACK] = "HP up",
23752
+ [CollectibleType.CONE_HEAD] = "Hard headed!",
23753
+ [CollectibleType.BELLY_BUTTON] = "What's in there?",
23754
+ [CollectibleType.SINUS_INFECTION] = "Booger tears!",
23755
+ [CollectibleType.GLAUCOMA] = "Blind tears!",
23756
+ [CollectibleType.PARASITOID] = "Egg tears!",
23757
+ [CollectibleType.EYE_OF_BELIAL] = "Possessed tears!",
23758
+ [CollectibleType.SULFURIC_ACID] = "Acid tears!",
23759
+ [CollectibleType.GLYPH_OF_BALANCE] = "A gift from above",
23760
+ [CollectibleType.ANALOG_STICK] = "360 tears!",
23761
+ [CollectibleType.CONTAGION] = "Outbreak!",
23762
+ [CollectibleType.FINGER] = "Watch where you point that!",
23763
+ [CollectibleType.SHADE] = "It follows",
23764
+ [CollectibleType.DEPRESSION] = ":(",
23765
+ [CollectibleType.HUSHY] = "Lil hush!",
23766
+ [CollectibleType.LIL_MONSTRO] = "Ain't he cute?",
23767
+ [CollectibleType.KING_BABY] = "Hail to the king baby",
23768
+ [CollectibleType.BIG_CHUBBY] = "Chub chub",
23769
+ [CollectibleType.BROKEN_GLASS_CANNON] = "You broke it!",
23770
+ [CollectibleType.PLAN_C] = "My last resort",
23771
+ [CollectibleType.D1] = "What will it be?",
23772
+ [CollectibleType.VOID] = "Consume",
23773
+ [CollectibleType.PAUSE] = "Stop!",
23774
+ [CollectibleType.SMELTER] = "Trinket melter!",
23775
+ [CollectibleType.COMPOST] = "Gain more friends!",
23776
+ [CollectibleType.DATAMINER] = "109",
23777
+ [CollectibleType.CLICKER] = "Change",
23778
+ [CollectibleType.MAMA_MEGA] = "BOOOOOOOOOM!",
23779
+ [CollectibleType.WAIT_WHAT] = "I can't believe it's not butter bean!",
23780
+ [CollectibleType.CROOKED_PENNY] = "50/50",
23781
+ [CollectibleType.DULL_RAZOR] = "I feel numb...",
23782
+ [CollectibleType.POTATO_PEELER] = "A pound of flesh...",
23783
+ [CollectibleType.METRONOME] = "Waggles a finger",
23784
+ [CollectibleType.D_INFINITY] = "Reroll forever",
23785
+ [CollectibleType.EDENS_SOUL] = "...",
23786
+ [CollectibleType.ACID_BABY] = "Pills pills pills!",
23787
+ [CollectibleType.YO_LISTEN] = "Yo listen!",
23788
+ [CollectibleType.ADRENALINE] = "Panic = power",
23789
+ [CollectibleType.JACOBS_LADDER] = "Electric tears",
23790
+ [CollectibleType.GHOST_PEPPER] = "Flame tears",
23791
+ [CollectibleType.EUTHANASIA] = "Needle shot",
23792
+ [CollectibleType.CAMO_UNDIES] = "Camo kid",
23793
+ [CollectibleType.DUALITY] = "You feel very balanced",
23794
+ [CollectibleType.EUCHARIST] = "Peace be with you",
23795
+ [CollectibleType.SACK_OF_SACKS] = "Gives sacks",
23796
+ [CollectibleType.GREEDS_GULLET] = "Money = health!",
23797
+ [CollectibleType.LARGE_ZIT] = "Creep shots",
23798
+ [CollectibleType.LITTLE_HORN] = "Big brother is watching",
23799
+ [CollectibleType.BROWN_NUGGET] = "Friendly fly",
23800
+ [CollectibleType.POKE_GO] = "Gotta catch em...",
23801
+ [CollectibleType.BACKSTABBER] = "Watch your back!",
23802
+ [CollectibleType.SHARP_STRAW] = "More blood!",
23803
+ [CollectibleType.MOMS_RAZOR] = "It's sharp!",
23804
+ [CollectibleType.BLOODSHOT_EYE] = "Bloody friend",
23805
+ [CollectibleType.DELIRIOUS] = "Unleash the power!",
23806
+ [CollectibleType.ANGRY_FLY] = "He's violent",
23807
+ [CollectibleType.BLACK_HOLE] = "Nothing can escape",
23808
+ [CollectibleType.BOZO] = "Party time!",
23809
+ [CollectibleType.BROKEN_MODEM] = "Lag!",
23810
+ [CollectibleType.MYSTERY_GIFT] = "Wrapped up nice for you!",
23811
+ [CollectibleType.SPRINKLER] = "Sprinkles.",
23812
+ [CollectibleType.FAST_BOMBS] = "Rapid bomb drops",
23813
+ [CollectibleType.BUDDY_IN_A_BOX] = "What could it be?!",
23814
+ [CollectibleType.LIL_DELIRIUM] = "Delirious friend",
23815
+ [CollectibleType.JUMPER_CABLES] = "Bloody recharge",
23816
+ [CollectibleType.COUPON] = "Allow 6 weeks for delivery",
23817
+ [CollectibleType.TELEKINESIS] = "Power of the mind",
23818
+ [CollectibleType.MOVING_BOX] = "Pack and unpack",
23819
+ [CollectibleType.TECHNOLOGY_ZERO] = "Static tears",
23820
+ [CollectibleType.LEPROSY] = "You're tearing me apart!",
23821
+ [CollectibleType.SEVEN_SEALS] = "Lil harbingers!",
23822
+ [CollectibleType.MR_ME] = "Caaan do!",
23823
+ [CollectibleType.ANGELIC_PRISM] = "Eclipsed by the moon",
23824
+ [CollectibleType.POP] = "Eyeball tears",
23825
+ [CollectibleType.DEATHS_LIST] = "Just hope you're not next...",
23826
+ [CollectibleType.HAEMOLACRIA] = "I'm seeing red...",
23827
+ [CollectibleType.LACHRYPHAGY] = "Feed them!",
23828
+ [CollectibleType.TRISAGION] = "Smite thy enemy",
23829
+ [CollectibleType.SCHOOLBAG] = "Extra active item room",
23830
+ [CollectibleType.BLANKET] = "You feel safe",
23831
+ [CollectibleType.SACRIFICIAL_ALTAR] = "He demands a sacrifice",
23832
+ [CollectibleType.LIL_SPEWER] = "Puking buddy",
23833
+ [CollectibleType.MARBLES] = "Choking hazard",
23834
+ [CollectibleType.MYSTERY_EGG] = "Sacrificial insemination",
23835
+ [CollectibleType.FLAT_STONE] = "Skipping tears",
23836
+ [CollectibleType.MARROW] = "HP up?",
23837
+ [CollectibleType.SLIPPED_RIB] = "Projectile shield",
23838
+ [CollectibleType.HALLOWED_GROUND] = "Portable sanctuary",
23839
+ [CollectibleType.POINTY_RIB] = "Stabbing time",
23840
+ [CollectibleType.BOOK_OF_THE_DEAD] = "Rise from the grave",
23841
+ [CollectibleType.DADS_RING] = "Father's blessing",
23842
+ [CollectibleType.DIVORCE_PAPERS] = "Tears up + you feel empty",
23843
+ [CollectibleType.JAW_BONE] = "Fetch!",
23844
+ [CollectibleType.BRITTLE_BONES] = "Everything hurts",
23845
+ [CollectibleType.BROKEN_SHOVEL_1] = "It feels cursed",
23846
+ [CollectibleType.BROKEN_SHOVEL_2] = "It feels cursed",
23847
+ [CollectibleType.MOMS_SHOVEL] = "Lost but not forgotten",
23848
+ [CollectibleType.MUCORMYCOSIS] = "Spore shot",
23849
+ [CollectibleType.TWO_SPOOKY] = "4me",
23850
+ [CollectibleType.GOLDEN_RAZOR] = "Pain from gain",
23851
+ [CollectibleType.SULFUR] = "Temporary demon form",
23852
+ [CollectibleType.FORTUNE_COOKIE] = "Reusable fortunes",
23853
+ [CollectibleType.EYE_SORE] = "More eyes",
23854
+ [CollectibleType.ONE_HUNDRED_TWENTY_VOLT] = "Zap!",
23855
+ [CollectibleType.IT_HURTS] = "No it doesn't...",
23856
+ [CollectibleType.ALMOND_MILK] = "DMG down + tears up + you feel nutty",
23857
+ [CollectibleType.ROCK_BOTTOM] = "It's only up from there",
23858
+ [CollectibleType.NANCY_BOMBS] = "Random blast +5 bombs",
23859
+ [CollectibleType.BAR_OF_SOAP] = "Tears + shot speed up",
23860
+ [CollectibleType.BLOOD_PUPPY] = "What a cute little thing!",
23861
+ [CollectibleType.DREAM_CATCHER] = "Sweet dreams",
23862
+ [CollectibleType.PASCHAL_CANDLE] = "Keep the flame burning",
23863
+ [CollectibleType.DIVINE_INTERVENTION] = "Double tap shield",
23864
+ [CollectibleType.BLOOD_OATH] = "Bleed me dry",
23865
+ [CollectibleType.PLAYDOUGH_COOKIE] = "Tasty rainbow",
23866
+ [CollectibleType.SOCKS] = "Speed up + your feet feel stronger",
23867
+ [CollectibleType.EYE_OF_THE_OCCULT] = "DMG up + range up + controlled tears",
23868
+ [CollectibleType.IMMACULATE_HEART] = "Halo of tears",
23869
+ [CollectibleType.MONSTRANCE] = "Purifying light",
23870
+ [CollectibleType.INTRUDER] = "Invasive friend",
23871
+ [CollectibleType.DIRTY_MIND] = "Filthy friends",
23872
+ [CollectibleType.DAMOCLES] = "A king's fortune... but at what cost?",
23873
+ [CollectibleType.FREE_LEMONADE] = "Party time!",
23874
+ [CollectibleType.SPIRIT_SWORD] = "Divine blade",
23875
+ [CollectibleType.RED_KEY] = "Explore the other side",
23876
+ [CollectibleType.PSY_FLY] = "Flamboyant protector",
23877
+ [CollectibleType.WAVY_CAP] = "Tears up. A mind changing experience!",
23878
+ [CollectibleType.ROCKET_IN_A_JAR] = "Rocket propulsion +5 bombs",
23879
+ [CollectibleType.BOOK_OF_VIRTUES] = "Spiritual companionship",
23880
+ [CollectibleType.ALABASTER_BOX] = "A sacred offering",
23881
+ [CollectibleType.STAIRWAY] = "May you get what you came for",
23882
+ [CollectibleType.SOL] = "Radiant victory",
23883
+ [CollectibleType.LUNA] = "The moon's blessing shines upon you",
23884
+ [CollectibleType.MERCURIUS] = "Speed up + you feel elusive",
23885
+ [CollectibleType.VENUS] = "HP up + you feel pretty",
23886
+ [CollectibleType.TERRA] = "Born to rock",
23887
+ [CollectibleType.MARS] = "Double tap dash",
23888
+ [CollectibleType.JUPITER] = "You're a gas giant!",
23889
+ [CollectibleType.SATURNUS] = "Ring of tears",
23890
+ [CollectibleType.URANUS] = "Ice tears",
23891
+ [CollectibleType.NEPTUNUS] = "Open the floodgates",
23892
+ [CollectibleType.PLUTO] = "Size down",
23893
+ [CollectibleType.VOODOO_HEAD] = "Extra curse rooms",
23894
+ [CollectibleType.EYE_DROPS] = "Tears up",
23895
+ [CollectibleType.ACT_OF_CONTRITION] = "Tears up, you feel forgiven",
23896
+ [CollectibleType.MEMBER_CARD] = "Exclusive access!",
23897
+ [CollectibleType.BATTERY_PACK] = "Instant energy!",
23898
+ [CollectibleType.MOMS_BRACELET] = "Mother's strength",
23899
+ [CollectibleType.SCOOPER] = "Plop!",
23900
+ [CollectibleType.OCULAR_RIFT] = "Stare into the abyss",
23901
+ [CollectibleType.BOILED_BABY] = "Messy friend",
23902
+ [CollectibleType.FREEZER_BABY] = "Iced iced baby",
23903
+ [CollectibleType.ETERNAL_D6] = "???",
23904
+ [CollectibleType.BIRD_CAGE] = "Fat buddy",
23905
+ [CollectibleType.LARYNX] = "Hear my pain",
23906
+ [CollectibleType.LOST_SOUL] = "Protect him",
23907
+ [CollectibleType.BLOOD_BOMBS] = "Bloody blast + HP up",
23908
+ [CollectibleType.LIL_DUMPY] = "Puffy buddy",
23909
+ [CollectibleType.BIRDS_EYE] = "It burns",
23910
+ [CollectibleType.LODESTONE] = "Magnetizing tears",
23911
+ [CollectibleType.ROTTEN_TOMATO] = "Delicious!",
23912
+ [CollectibleType.BIRTHRIGHT] = "???",
23913
+ [CollectibleType.RED_STEW] = "Full HP + temporary DMG up",
23914
+ [CollectibleType.GENESIS] = "In the beginning",
23915
+ [CollectibleType.SHARP_KEY] = "Open your enemies",
23916
+ [CollectibleType.BOOSTER_PACK] = "Collect them all!",
23917
+ [CollectibleType.MEGA_MUSH] = "I'm a big boy now!",
23918
+ [CollectibleType.KNIFE_PIECE_1] = "???",
23919
+ [CollectibleType.KNIFE_PIECE_2] = "???",
23920
+ [CollectibleType.DEATH_CERTIFICATE] = "Where am I?",
23921
+ [CollectibleType.BOT_FLY] = "Defense drone",
23922
+ [CollectibleType.MEAT_CLEAVER] = "Slice but no dice",
23923
+ [CollectibleType.EVIL_CHARM] = "Luck up + you feel protected",
23924
+ [CollectibleType.DOGMA] = "Ascended",
23925
+ [CollectibleType.PURGATORY] = "Help from beyond",
23926
+ [CollectibleType.STITCHES] = "Bait and switch",
23927
+ [CollectibleType.R_KEY] = "Time to start over",
23928
+ [CollectibleType.KNOCKOUT_DROPS] = "They pack a punch!",
23929
+ [CollectibleType.ERASER] = "Erase thy enemy",
23930
+ [CollectibleType.YUCK_HEART] = "Gross!",
23931
+ [CollectibleType.URN_OF_SOULS] = "Unleash their sorrow",
23932
+ [CollectibleType.AKELDAMA] = "Spill your guts",
23933
+ [CollectibleType.MAGIC_SKIN] = "All your desires fulfilled",
23934
+ [CollectibleType.REVELATION] = "Awaken your faith",
23935
+ [CollectibleType.CONSOLATION_PRIZE] = "+1 to lowest stat",
23936
+ [CollectibleType.TINYTOMA] = "Itching for revenge",
23937
+ [CollectibleType.BRIMSTONE_BOMBS] = "Demon blast +5 bombs",
23938
+ [CollectibleType.FOUR_FIVE_VOLT] = "Beat the juice out of them!",
23939
+ [CollectibleType.FRUITY_PLUM] = "Bouncy friend",
23940
+ [CollectibleType.PLUM_FLUTE] = "Play time!",
23941
+ [CollectibleType.STAR_OF_BETHLEHEM] = "Follow the light",
23942
+ [CollectibleType.CUBE_BABY] = "Kick it!",
23943
+ [CollectibleType.VADE_RETRO] = "Begone!",
23944
+ [CollectibleType.FALSE_PHD] = "Worse pills + evil up",
23945
+ [CollectibleType.SPIN_TO_WIN] = "Let it rip!",
23946
+ [CollectibleType.DAMOCLES_PASSIVE] = "A king's fortune... but at what cost?",
23947
+ [CollectibleType.VASCULITIS] = "Clogged enemies",
23948
+ [CollectibleType.GIANT_CELL] = "Micro friends",
23949
+ [CollectibleType.TROPICAMIDE] = "Tear size + range up",
23950
+ [CollectibleType.CARD_READING] = "A link to your future",
23951
+ [CollectibleType.QUINTS] = "They lurk inside",
23952
+ [CollectibleType.TOOTH_AND_NAIL] = "You feel prickly",
23953
+ [CollectibleType.BINGE_EATER] = "All you can eat",
23954
+ [CollectibleType.GUPPYS_EYE] = "An eye for secrets",
23955
+ [CollectibleType.STRAWMAN] = "A helping hand",
23956
+ [CollectibleType.DADS_NOTE] = "...",
23957
+ [CollectibleType.SAUSAGE] = "All stats up",
23958
+ [CollectibleType.OPTIONS] = "There might be options",
23959
+ [CollectibleType.CANDY_HEART] = "Power of love",
23960
+ [CollectibleType.POUND_OF_FLESH] = "Blood money",
23961
+ [CollectibleType.REDEMPTION] = "Deliver me from evil",
23962
+ [CollectibleType.SPIRIT_SHACKLES] = "Unfinished business",
23963
+ [CollectibleType.CRACKED_ORB] = "Shards of knowledge",
23964
+ [CollectibleType.EMPTY_HEART] = "It multiplies",
23965
+ [CollectibleType.ASTRAL_PROJECTION] = "The true out-of-body experience!",
23966
+ [CollectibleType.C_SECTION] = "Fetus shots",
23967
+ [CollectibleType.LIL_ABADDON] = "Abyssal friend",
23968
+ [CollectibleType.MONTEZUMAS_REVENGE] = "Oh no...",
23969
+ [CollectibleType.LIL_PORTAL] = "It hungers",
23970
+ [CollectibleType.WORM_FRIEND] = "Clingy buddy",
23971
+ [CollectibleType.BONE_SPURS] = "Break your enemies",
23972
+ [CollectibleType.HUNGRY_SOUL] = "Out for blood",
23973
+ [CollectibleType.JAR_OF_WISPS] = "Your faith grows",
23974
+ [CollectibleType.SOUL_LOCKET] = "Power of faith",
23975
+ [CollectibleType.FRIEND_FINDER] = "Best friends forever!",
23976
+ [CollectibleType.INNER_CHILD] = "Let him free",
23977
+ [CollectibleType.GLITCHED_CROWN] = "?????",
23978
+ [CollectibleType.JELLY_BELLY] = "Bounce away!",
23979
+ [CollectibleType.SACRED_ORB] = "Destined for greatness",
23980
+ [CollectibleType.SANGUINE_BOND] = "He awaits your offering",
23981
+ [CollectibleType.SWARM] = "Infest",
23982
+ [CollectibleType.HEARTBREAK] = "Eternal sorrow",
23983
+ [CollectibleType.BLOODY_GUST] = "May your rage bring haste",
23984
+ [CollectibleType.SALVATION] = "Divine protection",
23985
+ [CollectibleType.VANISHING_TWIN] = "He wants revenge",
23986
+ [CollectibleType.TWISTED_PAIR] = "Double trouble!",
23987
+ [CollectibleType.AZAZELS_RAGE] = "Ancient power",
23988
+ [CollectibleType.ECHO_CHAMBER] = "I can see see the future future future",
23989
+ [CollectibleType.ISAACS_TOMB] = "Buried memories",
23990
+ [CollectibleType.VENGEFUL_SPIRIT] = "Hot blooded",
23991
+ [CollectibleType.ESAU_JR] = "Lost brother",
23992
+ [CollectibleType.BERSERK] = "Rip and tear",
23993
+ [CollectibleType.DARK_ARTS] = "One with the shadows",
23994
+ [CollectibleType.ABYSS] = "Come forth from the depths",
23995
+ [CollectibleType.SUPPER] = "HP up",
23996
+ [CollectibleType.STAPLER] = "DMG up",
23997
+ [CollectibleType.SUPLEX] = "Angel breaker",
23998
+ [CollectibleType.BAG_OF_CRAFTING] = "Make your destiny",
23999
+ [CollectibleType.FLIP] = "Life and death",
24000
+ [CollectibleType.LEMEGETON] = "Item summoner",
24001
+ [CollectibleType.SUMPTORIUM] = "Return",
24002
+ [CollectibleType.RECALL] = "Come back",
24003
+ [CollectibleType.HOLD] = "Saved for later",
24004
+ [CollectibleType.KEEPERS_SACK] = "Spending power",
24005
+ [CollectibleType.KEEPERS_KIN] = "Under a rock",
24006
+ [CollectibleType.KEEPERS_BOX] = "Portable shop",
24007
+ [CollectibleType.EVERYTHING_JAR] = "Anything is possible",
24008
+ [CollectibleType.TMTRAINER] = "Isaac and his mother lived alone in a small house on a hill",
24009
+ [CollectibleType.ANIMA_SOLA] = "Repent",
24010
+ [CollectibleType.SPINDOWN_DICE] = "-1",
24011
+ [CollectibleType.HYPERCOAGULATION] = "Thick blooded",
24012
+ [CollectibleType.IBS] = "Your stomach rumbles",
24013
+ [CollectibleType.HEMOPTYSIS] = "Double tap sneeze",
24014
+ [CollectibleType.GHOST_BOMBS] = "Spooky blast +5 bombs",
24015
+ [CollectibleType.GELLO] = "Demonic gestation",
24016
+ [CollectibleType.DECAP_ATTACK] = "Chuck away!",
24017
+ [CollectibleType.GLASS_EYE] = "DMG + luck up",
24018
+ [CollectibleType.STYE] = "DMG + range up",
24019
+ [CollectibleType.MOMS_RING] = "DMG up"
24020
+ }
24032
24021
  return ____exports
24033
24022
  end,
24034
- ["src.maps.collectibleTypeToNameMap"] = function(...)
24035
- local ____lualib = require("lualib_bundle")
24036
- local __TS__New = ____lualib.__TS__New
24023
+ ["src.objects.collectibleNames"] = function(...)
24037
24024
  local ____exports = {}
24038
- local ____ReadonlyMap = require("src.types.ReadonlyMap")
24039
- local ReadonlyMap = ____ReadonlyMap.ReadonlyMap
24025
+ local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
24026
+ local CollectibleType = ____isaac_2Dtypescript_2Ddefinitions.CollectibleType
24040
24027
  ____exports.DEFAULT_COLLECTIBLE_NAME = "Unknown"
24041
- ____exports.COLLECTIBLE_TYPE_TO_NAME_MAP = __TS__New(ReadonlyMap, {
24042
- {1, "The Sad Onion"},
24043
- {2, "The Inner Eye"},
24044
- {3, "Spoon Bender"},
24045
- {4, "Cricket's Head"},
24046
- {5, "My Reflection"},
24047
- {6, "Number One"},
24048
- {7, "Blood of the Martyr"},
24049
- {8, "Brother Bobby"},
24050
- {9, "Skatole"},
24051
- {10, "Halo of Flies"},
24052
- {11, "1up!"},
24053
- {12, "Magic Mushroom"},
24054
- {13, "The Virus"},
24055
- {14, "Roid Rage"},
24056
- {15, "<3"},
24057
- {16, "Raw Liver"},
24058
- {17, "Skeleton Key"},
24059
- {18, "A Dollar"},
24060
- {19, "Boom!"},
24061
- {20, "Transcendence"},
24062
- {21, "The Compass"},
24063
- {22, "Lunch"},
24064
- {23, "Dinner"},
24065
- {24, "Dessert"},
24066
- {25, "Breakfast"},
24067
- {26, "Rotten Meat"},
24068
- {27, "Wooden Spoon"},
24069
- {28, "The Belt"},
24070
- {29, "Mom's Underwear"},
24071
- {30, "Mom's Heels"},
24072
- {31, "Mom's Lipstick"},
24073
- {32, "Wire Coat Hanger"},
24074
- {33, "The Bible"},
24075
- {34, "The Book of Belial"},
24076
- {35, "The Necronomicon"},
24077
- {36, "The Poop"},
24078
- {37, "Mr. Boom"},
24079
- {38, "Tammy's Head"},
24080
- {39, "Mom's Bra"},
24081
- {40, "Kamikaze!"},
24082
- {41, "Mom's Pad"},
24083
- {42, "Bob's Rotten Head"},
24084
- {44, "Teleport!"},
24085
- {45, "Yum Heart"},
24086
- {46, "Lucky Foot"},
24087
- {47, "Doctor's Remote"},
24088
- {48, "Cupid's Arrow"},
24089
- {49, "Shoop da Whoop!"},
24090
- {50, "Steven"},
24091
- {51, "Pentagram"},
24092
- {52, "Dr. Fetus"},
24093
- {53, "Magneto"},
24094
- {54, "Treasure Map"},
24095
- {55, "Mom's Eye"},
24096
- {56, "Lemon Mishap"},
24097
- {57, "Distant Admiration"},
24098
- {58, "Book of Shadows"},
24099
- {60, "The Ladder"},
24100
- {62, "Charm of the Vampire"},
24101
- {63, "The Battery"},
24102
- {64, "Steam Sale"},
24103
- {65, "Anarchist Cookbook"},
24104
- {66, "The Hourglass"},
24105
- {67, "Sister Maggy"},
24106
- {68, "Technology"},
24107
- {69, "Chocolate Milk"},
24108
- {70, "Growth Hormones"},
24109
- {71, "Mini Mush"},
24110
- {72, "Rosary"},
24111
- {73, "Cube of Meat"},
24112
- {74, "A Quarter"},
24113
- {75, "PHD"},
24114
- {76, "X-Ray Vision"},
24115
- {77, "My Little Unicorn"},
24116
- {78, "Book of Revelations"},
24117
- {79, "The Mark"},
24118
- {80, "The Pact"},
24119
- {81, "Dead Cat"},
24120
- {82, "Lord of the Pit"},
24121
- {83, "The Nail"},
24122
- {84, "We Need To Go Deeper!"},
24123
- {85, "Deck of Cards"},
24124
- {86, "Monstro's Tooth"},
24125
- {87, "Loki's Horns"},
24126
- {88, "Little Chubby"},
24127
- {89, "Spider Bite"},
24128
- {90, "The Small Rock"},
24129
- {91, "Spelunker Hat"},
24130
- {92, "Super Bandage"},
24131
- {93, "The Gamekid"},
24132
- {94, "Sack of Pennies"},
24133
- {95, "Robo-Baby"},
24134
- {96, "Little C.H.A.D."},
24135
- {97, "The Book of Sin"},
24136
- {98, "The Relic"},
24137
- {99, "Little Gish"},
24138
- {100, "Little Steven"},
24139
- {101, "The Halo"},
24140
- {102, "Mom's Bottle of Pills"},
24141
- {103, "The Common Cold"},
24142
- {104, "The Parasite"},
24143
- {105, "The D6"},
24144
- {106, "Mr. Mega"},
24145
- {107, "The Pinking Shears"},
24146
- {108, "The Wafer"},
24147
- {109, "Money = Power"},
24148
- {110, "Mom's Contacts"},
24149
- {111, "The Bean"},
24150
- {112, "Guardian Angel"},
24151
- {113, "Demon Baby"},
24152
- {114, "Mom's Knife"},
24153
- {115, "Ouija Board"},
24154
- {116, "9 Volt"},
24155
- {117, "Dead Bird"},
24156
- {118, "Brimstone"},
24157
- {119, "Blood Bag"},
24158
- {120, "Odd Mushroom"},
24159
- {121, "Odd Mushroom"},
24160
- {122, "Whore of Babylon"},
24161
- {123, "Monster Manual"},
24162
- {124, "Dead Sea Scrolls"},
24163
- {125, "Bobby-Bomb"},
24164
- {126, "Razor Blade"},
24165
- {127, "Forget Me Now"},
24166
- {128, "Forever Alone"},
24167
- {129, "Bucket of Lard"},
24168
- {130, "A Pony"},
24169
- {131, "Bomb Bag"},
24170
- {132, "A Lump of Coal"},
24171
- {133, "Guppy's Paw"},
24172
- {134, "Guppy's Tail"},
24173
- {135, "IV Bag"},
24174
- {136, "Best Friend"},
24175
- {137, "Remote Detonator"},
24176
- {138, "Stigmata"},
24177
- {139, "Mom's Purse"},
24178
- {140, "Bob's Curse"},
24179
- {141, "Pageant Boy"},
24180
- {142, "Scapular"},
24181
- {143, "Speed Ball"},
24182
- {144, "Bum Friend"},
24183
- {145, "Guppy's Head"},
24184
- {146, "Prayer Card"},
24185
- {147, "Notched Axe"},
24186
- {148, "Infestation"},
24187
- {149, "Ipecac"},
24188
- {150, "Tough Love"},
24189
- {151, "The Mulligan"},
24190
- {152, "Technology 2"},
24191
- {153, "Mutant Spider"},
24192
- {154, "Chemical Peel"},
24193
- {155, "The Peeper"},
24194
- {156, "Habit"},
24195
- {157, "Bloody Lust"},
24196
- {158, "Crystal Ball"},
24197
- {159, "Spirit of the Night"},
24198
- {160, "Crack the Sky"},
24199
- {161, "Ankh"},
24200
- {162, "Celtic Cross"},
24201
- {163, "Ghost Baby"},
24202
- {164, "The Candle"},
24203
- {165, "Cat-o-nine-tails"},
24204
- {166, "D20"},
24205
- {167, "Harlequin Baby"},
24206
- {168, "Epic Fetus"},
24207
- {169, "Polyphemus"},
24208
- {170, "Daddy Longlegs"},
24209
- {171, "Spider Butt"},
24210
- {172, "Sacrificial Dagger"},
24211
- {173, "Mitre"},
24212
- {174, "Rainbow Baby"},
24213
- {175, "Dad's Key"},
24214
- {176, "Stem Cells"},
24215
- {177, "Portable Slot"},
24216
- {178, "Holy Water"},
24217
- {179, "Fate"},
24218
- {180, "The Black Bean"},
24219
- {181, "White Pony"},
24220
- {182, "Sacred Heart"},
24221
- {183, "Tooth Picks"},
24222
- {184, "Holy Grail"},
24223
- {185, "Dead Dove"},
24224
- {186, "Blood Rights"},
24225
- {187, "Guppy's Hairball"},
24226
- {188, "Abel"},
24227
- {189, "SMB Super Fan"},
24228
- {190, "Pyro"},
24229
- {191, "3 Dollar Bill"},
24230
- {192, "Telepathy For Dummies"},
24231
- {193, "MEAT!"},
24232
- {194, "Magic 8 Ball"},
24233
- {195, "Mom's Coin Purse"},
24234
- {196, "Squeezy"},
24235
- {197, "Jesus Juice"},
24236
- {198, "Box"},
24237
- {199, "Mom's Key"},
24238
- {200, "Mom's Eyeshadow"},
24239
- {201, "Iron Bar"},
24240
- {202, "Midas' Touch"},
24241
- {203, "Humbleing Bundle"},
24242
- {204, "Fanny Pack"},
24243
- {205, "Sharp Plug"},
24244
- {206, "Guillotine"},
24245
- {207, "Ball of Bandages"},
24246
- {208, "Champion Belt"},
24247
- {209, "Butt Bombs"},
24248
- {210, "Gnawed Leaf"},
24249
- {211, "Spiderbaby"},
24250
- {212, "Guppy's Collar"},
24251
- {213, "Lost Contact"},
24252
- {214, "Anemic"},
24253
- {215, "Goat Head"},
24254
- {216, "Ceremonial Robes"},
24255
- {217, "Mom's Wig"},
24256
- {218, "Placenta"},
24257
- {219, "Old Bandage"},
24258
- {220, "Sad Bombs"},
24259
- {221, "Rubber Cement"},
24260
- {222, "Anti-Gravity"},
24261
- {223, "Pyromaniac"},
24262
- {224, "Cricket's Body"},
24263
- {225, "Gimpy"},
24264
- {226, "Black Lotus"},
24265
- {227, "Piggy Bank"},
24266
- {228, "Mom's Perfume"},
24267
- {229, "Monstro's Lung"},
24268
- {230, "Abaddon"},
24269
- {231, "Ball of Tar"},
24270
- {232, "Stop Watch"},
24271
- {233, "Tiny Planet"},
24272
- {234, "Infestation 2"},
24273
- {236, "E. Coli"},
24274
- {237, "Death's Touch"},
24275
- {238, "Key Piece 1"},
24276
- {239, "Key Piece 2"},
24277
- {240, "Experimental Treatment"},
24278
- {241, "Contract from Below"},
24279
- {242, "Infamy"},
24280
- {243, "Trinity Shield"},
24281
- {244, "Tech.5"},
24282
- {245, "20/20"},
24283
- {246, "Blue Map"},
24284
- {247, "BFFS!"},
24285
- {248, "Hive Mind"},
24286
- {249, "There's Options"},
24287
- {250, "BOGO Bombs"},
24288
- {251, "Starter Deck"},
24289
- {252, "Little Baggy"},
24290
- {253, "Magic Scab"},
24291
- {254, "Blood Clot"},
24292
- {255, "Screw"},
24293
- {256, "Hot Bombs"},
24294
- {257, "Fire Mind"},
24295
- {258, "Missing No."},
24296
- {259, "Dark Matter"},
24297
- {260, "Black Candle"},
24298
- {261, "Proptosis"},
24299
- {262, "Missing Page 2"},
24300
- {263, "Clear Rune"},
24301
- {264, "Smart Fly"},
24302
- {265, "Dry Baby"},
24303
- {266, "Juicy Sack"},
24304
- {267, "Robo-Baby 2.0"},
24305
- {268, "Rotten Baby"},
24306
- {269, "Headless Baby"},
24307
- {270, "Leech"},
24308
- {271, "Mystery Sack"},
24309
- {272, "BBF"},
24310
- {273, "Bob's Brain"},
24311
- {274, "Best Bud"},
24312
- {275, "Lil Brimstone"},
24313
- {276, "Isaac's Heart"},
24314
- {277, "Lil Haunt"},
24315
- {278, "Dark Bum"},
24316
- {279, "Big Fan"},
24317
- {280, "Sissy Longlegs"},
24318
- {281, "Punching Bag"},
24319
- {282, "How to Jump"},
24320
- {283, "D100"},
24321
- {284, "D4"},
24322
- {285, "D10"},
24323
- {286, "Blank Card"},
24324
- {287, "Book of Secrets"},
24325
- {288, "Box of Spiders"},
24326
- {289, "Red Candle"},
24327
- {290, "The Jar"},
24328
- {291, "Flush!"},
24329
- {292, "Satanic Bible"},
24330
- {293, "Head of Krampus"},
24331
- {294, "Butter Bean"},
24332
- {295, "Magic Fingers"},
24333
- {296, "Converter"},
24334
- {297, "Pandora's Box"},
24335
- {298, "Unicorn Stump"},
24336
- {299, "Taurus"},
24337
- {300, "Aries"},
24338
- {301, "Cancer"},
24339
- {302, "Leo"},
24340
- {303, "Virgo"},
24341
- {304, "Libra"},
24342
- {305, "Scorpio"},
24343
- {306, "Sagittarius"},
24344
- {307, "Capricorn"},
24345
- {308, "Aquarius"},
24346
- {309, "Pisces"},
24347
- {310, "Eve's Mascara"},
24348
- {311, "Judas' Shadow"},
24349
- {312, "Maggy's Bow"},
24350
- {313, "Holy Mantle"},
24351
- {314, "Thunder Thighs"},
24352
- {315, "Strange Attractor"},
24353
- {316, "Cursed Eye"},
24354
- {317, "Mysterious Liquid"},
24355
- {318, "Gemini"},
24356
- {319, "Cain's Other Eye"},
24357
- {320, "???'s Only Friend"},
24358
- {321, "Samson's Chains"},
24359
- {322, "Mongo Baby"},
24360
- {323, "Isaac's Tears"},
24361
- {324, "Undefined"},
24362
- {325, "Scissors"},
24363
- {326, "Breath of Life"},
24364
- {327, "The Polaroid"},
24365
- {328, "The Negative"},
24366
- {329, "The Ludovico Technique"},
24367
- {330, "Soy Milk"},
24368
- {331, "Godhead"},
24369
- {332, "Lazarus' Rags"},
24370
- {333, "The Mind"},
24371
- {334, "The Body"},
24372
- {335, "The Soul"},
24373
- {336, "Dead Onion"},
24374
- {337, "Broken Watch"},
24375
- {338, "The Boomerang"},
24376
- {339, "Safety Pin"},
24377
- {340, "Caffeine Pill"},
24378
- {341, "Torn Photo"},
24379
- {342, "Blue Cap"},
24380
- {343, "Latch Key"},
24381
- {344, "Match Book"},
24382
- {345, "Synthoil"},
24383
- {346, "A Snack"},
24384
- {347, "Diplopia"},
24385
- {348, "Placebo"},
24386
- {349, "Wooden Nickel"},
24387
- {350, "Toxic Shock"},
24388
- {351, "Mega Bean"},
24389
- {352, "Glass Cannon"},
24390
- {353, "Bomber Boy"},
24391
- {354, "Crack Jacks"},
24392
- {355, "Mom's Pearls"},
24393
- {356, "Car Battery"},
24394
- {357, "Box of Friends"},
24395
- {358, "The Wiz"},
24396
- {359, "8 Inch Nails"},
24397
- {360, "Incubus"},
24398
- {361, "Fate's Reward"},
24399
- {362, "Lil Chest"},
24400
- {363, "Sworn Protector"},
24401
- {364, "Friend Zone"},
24402
- {365, "Lost Fly"},
24403
- {366, "Scatter Bombs"},
24404
- {367, "Sticky Bombs"},
24405
- {368, "Epiphora"},
24406
- {369, "Continuum"},
24407
- {370, "Mr. Dolly"},
24408
- {371, "Curse of the Tower"},
24409
- {372, "Charged Baby"},
24410
- {373, "Dead Eye"},
24411
- {374, "Holy Light"},
24412
- {375, "Host Hat"},
24413
- {376, "Restock"},
24414
- {377, "Bursting Sack"},
24415
- {378, "Number Two"},
24416
- {379, "Pupula Duplex"},
24417
- {380, "Pay To Play"},
24418
- {381, "Eden's Blessing"},
24419
- {382, "Friendly Ball"},
24420
- {383, "Tear Detonator"},
24421
- {384, "Lil Gurdy"},
24422
- {385, "Bumbo"},
24423
- {386, "D12"},
24424
- {387, "Censer"},
24425
- {388, "Key Bum"},
24426
- {389, "Rune Bag"},
24427
- {390, "Seraphim"},
24428
- {391, "Betrayal"},
24429
- {392, "Zodiac"},
24430
- {393, "Serpent's Kiss"},
24431
- {394, "Marked"},
24432
- {395, "Tech X"},
24433
- {396, "Ventricle Razor"},
24434
- {397, "Tractor Beam"},
24435
- {398, "God's Flesh"},
24436
- {399, "Maw of the Void"},
24437
- {400, "Spear of Destiny"},
24438
- {401, "Explosivo"},
24439
- {402, "Chaos"},
24440
- {403, "Spider Mod"},
24441
- {404, "Farting Baby"},
24442
- {405, "GB Bug"},
24443
- {406, "D8"},
24444
- {407, "Purity"},
24445
- {408, "Athame"},
24446
- {409, "Empty Vessel"},
24447
- {410, "Evil Eye"},
24448
- {411, "Lusty Blood"},
24449
- {412, "Cambion Conception"},
24450
- {413, "Immaculate Conception"},
24451
- {414, "More Options"},
24452
- {415, "Crown of Light"},
24453
- {416, "Deep Pockets"},
24454
- {417, "Succubus"},
24455
- {418, "Fruit Cake"},
24456
- {419, "Teleport 2.0"},
24457
- {420, "Black Powder"},
24458
- {421, "Kidney Bean"},
24459
- {422, "Glowing Hourglass"},
24460
- {423, "Circle of Protection"},
24461
- {424, "Sack Head"},
24462
- {425, "Night Light"},
24463
- {426, "Obsessed Fan"},
24464
- {427, "Mine Crafter"},
24465
- {428, "PJs"},
24466
- {429, "Head of the Keeper"},
24467
- {430, "Papa Fly"},
24468
- {431, "Multidimensional Baby"},
24469
- {432, "Glitter Bombs"},
24470
- {433, "My Shadow"},
24471
- {434, "Jar of Flies"},
24472
- {435, "Lil Loki"},
24473
- {436, "Milk!"},
24474
- {437, "D7"},
24475
- {438, "Binky"},
24476
- {439, "Mom's Box"},
24477
- {440, "Kidney Stone"},
24478
- {441, "Mega Blast"},
24479
- {442, "Dark Prince's Crown"},
24480
- {443, "Apple!"},
24481
- {444, "Lead Pencil"},
24482
- {445, "Dog Tooth"},
24483
- {446, "Dead Tooth"},
24484
- {447, "Linger Bean"},
24485
- {448, "Shard of Glass"},
24486
- {449, "Metal Plate"},
24487
- {450, "Eye of Greed"},
24488
- {451, "Tarot Cloth"},
24489
- {452, "Varicose Veins"},
24490
- {453, "Compound Fracture"},
24491
- {454, "Polydactyly"},
24492
- {455, "Dad's Lost Coin"},
24493
- {456, "Midnight Snack"},
24494
- {457, "Cone Head"},
24495
- {458, "Belly Button"},
24496
- {459, "Sinus Infection"},
24497
- {460, "Glaucoma"},
24498
- {461, "Parasitoid"},
24499
- {462, "Eye of Belial"},
24500
- {463, "Sulfuric Acid"},
24501
- {464, "Glyph of Balance"},
24502
- {465, "Analog Stick"},
24503
- {466, "Contagion"},
24504
- {467, "Finger!"},
24505
- {468, "Shade"},
24506
- {469, "Depression"},
24507
- {470, "Hushy"},
24508
- {471, "Lil Monstro"},
24509
- {472, "King Baby"},
24510
- {473, "Big Chubby"},
24511
- {474, "Broken Glass Cannon"},
24512
- {475, "Plan C"},
24513
- {476, "D1"},
24514
- {477, "Void"},
24515
- {478, "Pause"},
24516
- {479, "Smelter"},
24517
- {480, "Compost"},
24518
- {481, "Dataminer"},
24519
- {482, "Clicker"},
24520
- {483, "Mama Mega!"},
24521
- {484, "Wait What?"},
24522
- {485, "Crooked Penny"},
24523
- {486, "Dull Razor"},
24524
- {487, "Potato Peeler"},
24525
- {488, "Metronome"},
24526
- {489, "D infinity"},
24527
- {490, "Eden's Soul"},
24528
- {491, "Acid Baby"},
24529
- {492, "YO LISTEN!"},
24530
- {493, "Adrenaline"},
24531
- {494, "Jacob's Ladder"},
24532
- {495, "Ghost Pepper"},
24533
- {496, "Euthanasia"},
24534
- {497, "Camo Undies"},
24535
- {498, "Duality"},
24536
- {499, "Eucharist"},
24537
- {500, "Sack of Sacks"},
24538
- {501, "Greed's Gullet"},
24539
- {502, "Large Zit"},
24540
- {503, "Little Horn"},
24541
- {504, "Brown Nugget"},
24542
- {505, "Poke Go"},
24543
- {506, "Backstabber"},
24544
- {507, "Sharp Straw"},
24545
- {508, "Mom's Razor"},
24546
- {509, "Bloodshot Eye"},
24547
- {510, "Delirious"},
24548
- {511, "Angry Fly"},
24549
- {512, "Black Hole"},
24550
- {513, "Bozo"},
24551
- {514, "Broken Modem"},
24552
- {515, "Mystery Gift"},
24553
- {516, "Sprinkler"},
24554
- {517, "Fast Bombs"},
24555
- {518, "Buddy in a Box"},
24556
- {519, "Lil Delirium"},
24557
- {520, "Jumper Cables"},
24558
- {521, "Coupon"},
24559
- {522, "Telekinesis"},
24560
- {523, "Moving Box"},
24561
- {524, "Technology Zero"},
24562
- {525, "Leprosy"},
24563
- {526, "7 Seals"},
24564
- {527, "Mr. ME!"},
24565
- {528, "Angelic Prism"},
24566
- {529, "Pop!"},
24567
- {530, "Death's List"},
24568
- {531, "Haemolacria"},
24569
- {532, "Lachryphagy"},
24570
- {533, "Trisagion"},
24571
- {534, "Schoolbag"},
24572
- {535, "Blanket"},
24573
- {536, "Sacrificial Altar"},
24574
- {537, "Lil Spewer"},
24575
- {538, "Marbles"},
24576
- {539, "Mystery Egg"},
24577
- {540, "Flat Stone"},
24578
- {541, "Marrow"},
24579
- {542, "Slipped Rib"},
24580
- {543, "Hallowed Ground"},
24581
- {544, "Pointy Rib"},
24582
- {545, "Book of the Dead"},
24583
- {546, "Dad's Ring"},
24584
- {547, "Divorce Papers"},
24585
- {548, "Jaw Bone"},
24586
- {549, "Brittle Bones"},
24587
- {550, "Broken Shovel"},
24588
- {551, "Broken Shovel"},
24589
- {552, "Mom's Shovel"},
24590
- {553, "Mucormycosis"},
24591
- {554, "2Spooky"},
24592
- {555, "Golden Razor"},
24593
- {556, "Sulfur"},
24594
- {557, "Fortune Cookie"},
24595
- {558, "Eye Sore"},
24596
- {559, "120 Volt"},
24597
- {560, "It Hurts"},
24598
- {561, "Almond Milk"},
24599
- {562, "Rock Bottom"},
24600
- {563, "Nancy Bombs"},
24601
- {564, "A Bar of Soap"},
24602
- {565, "Blood Puppy"},
24603
- {566, "Dream Catcher"},
24604
- {567, "Paschal Candle"},
24605
- {568, "Divine Intervention"},
24606
- {569, "Blood Oath"},
24607
- {570, "Playdough Cookie"},
24608
- {571, "Orphan Socks"},
24609
- {572, "Eye of the Occult"},
24610
- {573, "Immaculate Heart"},
24611
- {574, "Monstrance"},
24612
- {575, "The Intruder"},
24613
- {576, "Dirty Mind"},
24614
- {577, "Damocles"},
24615
- {578, "Free Lemonade"},
24616
- {579, "Spirit Sword"},
24617
- {580, "Red Key"},
24618
- {581, "Psy Fly"},
24619
- {582, "Wavy Cap"},
24620
- {583, "Rocket in a Jar"},
24621
- {584, "Book of Virtues"},
24622
- {585, "Alabaster Box"},
24623
- {586, "The Stairway"},
24624
- {588, "Sol"},
24625
- {589, "Luna"},
24626
- {590, "Mercurius"},
24627
- {591, "Venus"},
24628
- {592, "Terra"},
24629
- {593, "Mars"},
24630
- {594, "Jupiter"},
24631
- {595, "Saturnus"},
24632
- {596, "Uranus"},
24633
- {597, "Neptunus"},
24634
- {598, "Pluto"},
24635
- {599, "Voodoo Head"},
24636
- {600, "Eye Drops"},
24637
- {601, "Act of Contrition"},
24638
- {602, "Member Card"},
24639
- {603, "Battery Pack"},
24640
- {604, "Mom's Bracelet"},
24641
- {605, "The Scooper"},
24642
- {606, "Ocular Rift"},
24643
- {607, "Boiled Baby"},
24644
- {608, "Freezer Baby"},
24645
- {609, "Eternal D6"},
24646
- {610, "Bird Cage"},
24647
- {611, "Larynx"},
24648
- {612, "Lost Soul"},
24649
- {614, "Blood Bombs"},
24650
- {615, "Lil Dumpy"},
24651
- {616, "Bird's Eye"},
24652
- {617, "Lodestone"},
24653
- {618, "Rotten Tomato"},
24654
- {619, "Birthright"},
24655
- {621, "Red Stew"},
24656
- {622, "Genesis"},
24657
- {623, "Sharp Key"},
24658
- {624, "Booster Pack"},
24659
- {625, "Mega Mush"},
24660
- {626, "Knife Piece 1"},
24661
- {627, "Knife Piece 2"},
24662
- {628, "Death Certificate"},
24663
- {629, "Bot Fly"},
24664
- {631, "Meat Cleaver"},
24665
- {632, "Evil Charm"},
24666
- {633, "Dogma"},
24667
- {634, "Purgatory"},
24668
- {635, "Stitches"},
24669
- {636, "R Key"},
24670
- {637, "Knockout Drops"},
24671
- {638, "Eraser"},
24672
- {639, "Yuck Heart"},
24673
- {640, "Urn of Souls"},
24674
- {641, "Akeldama"},
24675
- {642, "Magic Skin"},
24676
- {643, "Revelation"},
24677
- {644, "Consolation Prize"},
24678
- {645, "Tinytoma"},
24679
- {646, "Brimstone Bombs"},
24680
- {647, "4.5 Volt"},
24681
- {649, "Fruity Plum"},
24682
- {650, "Plum Flute"},
24683
- {651, "Star of Bethlehem"},
24684
- {652, "Cube Baby"},
24685
- {653, "Vade Retro"},
24686
- {654, "False PHD"},
24687
- {655, "Spin to Win"},
24688
- {656, "Damocles (Passive)"},
24689
- {657, "Vasculitis"},
24690
- {658, "Giant Cell"},
24691
- {659, "Tropicamide"},
24692
- {660, "Card Reading"},
24693
- {661, "Quints"},
24694
- {663, "Tooth and Nail"},
24695
- {664, "Binge Eater"},
24696
- {665, "Guppy's Eye"},
24697
- {667, "Strawman"},
24698
- {668, "Dad's Note"},
24699
- {669, "Sausage"},
24700
- {670, "Options?"},
24701
- {671, "Candy Heart"},
24702
- {672, "A Pound of Flesh"},
24703
- {673, "Redemption"},
24704
- {674, "Spirit Shackles"},
24705
- {675, "Cracked Orb"},
24706
- {676, "Empty Heart"},
24707
- {677, "Astral Projection"},
24708
- {678, "C Section"},
24709
- {679, "Lil Abaddon"},
24710
- {680, "Montezuma's Revenge"},
24711
- {681, "Lil Portal"},
24712
- {682, "Worm Friend"},
24713
- {683, "Bone Spurs"},
24714
- {684, "Hungry Soul"},
24715
- {685, "Jar of Wisps"},
24716
- {686, "Soul Locket"},
24717
- {687, "Friend Finder"},
24718
- {688, "Inner Child"},
24719
- {689, "Glitched Crown"},
24720
- {690, "Belly Jelly"},
24721
- {691, "Sacred Orb"},
24722
- {692, "Sanguine Bond"},
24723
- {693, "The Swarm"},
24724
- {694, "Heartbreak"},
24725
- {695, "Bloody Gust"},
24726
- {696, "Salvation"},
24727
- {697, "Vanishing Twin"},
24728
- {698, "Twisted Pair"},
24729
- {699, "Azazel's Rage"},
24730
- {700, "Echo Chamber"},
24731
- {701, "Isaac's Tomb"},
24732
- {702, "Vengeful Spirit"},
24733
- {703, "Esau Jr."},
24734
- {704, "Berserk!"},
24735
- {705, "Dark Arts"},
24736
- {706, "Abyss"},
24737
- {707, "Supper"},
24738
- {708, "Stapler"},
24739
- {709, "Suplex!"},
24740
- {710, "Bag of Crafting"},
24741
- {711, "Flip"},
24742
- {712, "Lemegeton"},
24743
- {713, "Sumptorium"},
24744
- {714, "Recall"},
24745
- {715, "Hold"},
24746
- {716, "Keeper's Sack"},
24747
- {717, "Keeper's Kin"},
24748
- {719, "Keeper's Box"},
24749
- {720, "Everything Jar"},
24750
- {721, "TMTRAINER"},
24751
- {722, "Anima Sola"},
24752
- {723, "Spindown Dice"},
24753
- {724, "Hypercoagulation"},
24754
- {725, "IBS"},
24755
- {726, "Hemoptysis"},
24756
- {727, "Ghost Bombs"},
24757
- {728, "Gello"},
24758
- {729, "Decap Attack"},
24759
- {730, "Glass Eye"},
24760
- {731, "Stye"},
24761
- {732, "Mom's Ring"}
24762
- })
24028
+ ____exports.COLLECTIBLE_NAMES = {
24029
+ [CollectibleType.NULL] = ____exports.DEFAULT_COLLECTIBLE_NAME,
24030
+ [CollectibleType.SAD_ONION] = "The Sad Onion",
24031
+ [CollectibleType.INNER_EYE] = "The Inner Eye",
24032
+ [CollectibleType.SPOON_BENDER] = "Spoon Bender",
24033
+ [CollectibleType.CRICKETS_HEAD] = "Cricket's Head",
24034
+ [CollectibleType.MY_REFLECTION] = "My Reflection",
24035
+ [CollectibleType.NUMBER_ONE] = "Number One",
24036
+ [CollectibleType.BLOOD_OF_THE_MARTYR] = "Blood of the Martyr",
24037
+ [CollectibleType.BROTHER_BOBBY] = "Brother Bobby",
24038
+ [CollectibleType.SKATOLE] = "Skatole",
24039
+ [CollectibleType.HALO_OF_FLIES] = "Halo of Flies",
24040
+ [CollectibleType.ONE_UP] = "1up!",
24041
+ [CollectibleType.MAGIC_MUSHROOM] = "Magic Mushroom",
24042
+ [CollectibleType.VIRUS] = "The Virus",
24043
+ [CollectibleType.ROID_RAGE] = "Roid Rage",
24044
+ [CollectibleType.HEART] = "<3",
24045
+ [CollectibleType.RAW_LIVER] = "Raw Liver",
24046
+ [CollectibleType.SKELETON_KEY] = "Skeleton Key",
24047
+ [CollectibleType.DOLLAR] = "A Dollar",
24048
+ [CollectibleType.BOOM] = "Boom!",
24049
+ [CollectibleType.TRANSCENDENCE] = "Transcendence",
24050
+ [CollectibleType.COMPASS] = "The Compass",
24051
+ [CollectibleType.LUNCH] = "Lunch",
24052
+ [CollectibleType.DINNER] = "Dinner",
24053
+ [CollectibleType.DESSERT] = "Dessert",
24054
+ [CollectibleType.BREAKFAST] = "Breakfast",
24055
+ [CollectibleType.ROTTEN_MEAT] = "Rotten Meat",
24056
+ [CollectibleType.WOODEN_SPOON] = "Wooden Spoon",
24057
+ [CollectibleType.BELT] = "The Belt",
24058
+ [CollectibleType.MOMS_UNDERWEAR] = "Mom's Underwear",
24059
+ [CollectibleType.MOMS_HEELS] = "Mom's Heels",
24060
+ [CollectibleType.MOMS_LIPSTICK] = "Mom's Lipstick",
24061
+ [CollectibleType.WIRE_COAT_HANGER] = "Wire Coat Hanger",
24062
+ [CollectibleType.BIBLE] = "The Bible",
24063
+ [CollectibleType.BOOK_OF_BELIAL] = "The Book of Belial",
24064
+ [CollectibleType.NECRONOMICON] = "The Necronomicon",
24065
+ [CollectibleType.POOP] = "The Poop",
24066
+ [CollectibleType.MR_BOOM] = "Mr. Boom",
24067
+ [CollectibleType.TAMMYS_HEAD] = "Tammy's Head",
24068
+ [CollectibleType.MOMS_BRA] = "Mom's Bra",
24069
+ [CollectibleType.KAMIKAZE] = "Kamikaze!",
24070
+ [CollectibleType.MOMS_PAD] = "Mom's Pad",
24071
+ [CollectibleType.BOBS_ROTTEN_HEAD] = "Bob's Rotten Head",
24072
+ [CollectibleType.TELEPORT] = "Teleport!",
24073
+ [CollectibleType.YUM_HEART] = "Yum Heart",
24074
+ [CollectibleType.LUCKY_FOOT] = "Lucky Foot",
24075
+ [CollectibleType.DOCTORS_REMOTE] = "Doctor's Remote",
24076
+ [CollectibleType.CUPIDS_ARROW] = "Cupid's Arrow",
24077
+ [CollectibleType.SHOOP_DA_WHOOP] = "Shoop da Whoop!",
24078
+ [CollectibleType.STEVEN] = "Steven",
24079
+ [CollectibleType.PENTAGRAM] = "Pentagram",
24080
+ [CollectibleType.DR_FETUS] = "Dr. Fetus",
24081
+ [CollectibleType.MAGNETO] = "Magneto",
24082
+ [CollectibleType.TREASURE_MAP] = "Treasure Map",
24083
+ [CollectibleType.MOMS_EYE] = "Mom's Eye",
24084
+ [CollectibleType.LEMON_MISHAP] = "Lemon Mishap",
24085
+ [CollectibleType.DISTANT_ADMIRATION] = "Distant Admiration",
24086
+ [CollectibleType.BOOK_OF_SHADOWS] = "Book of Shadows",
24087
+ [CollectibleType.BOOK_OF_BELIAL_BIRTHRIGHT] = "The Book of Belial",
24088
+ [CollectibleType.LADDER] = "The Ladder",
24089
+ [CollectibleType.CHARM_OF_THE_VAMPIRE] = "Charm of the Vampire",
24090
+ [CollectibleType.BATTERY] = "The Battery",
24091
+ [CollectibleType.STEAM_SALE] = "Steam Sale",
24092
+ [CollectibleType.ANARCHIST_COOKBOOK] = "Anarchist Cookbook",
24093
+ [CollectibleType.HOURGLASS] = "The Hourglass",
24094
+ [CollectibleType.SISTER_MAGGY] = "Sister Maggy",
24095
+ [CollectibleType.TECHNOLOGY] = "Technology",
24096
+ [CollectibleType.CHOCOLATE_MILK] = "Chocolate Milk",
24097
+ [CollectibleType.GROWTH_HORMONES] = "Growth Hormones",
24098
+ [CollectibleType.MINI_MUSH] = "Mini Mush",
24099
+ [CollectibleType.ROSARY] = "Rosary",
24100
+ [CollectibleType.CUBE_OF_MEAT] = "Cube of Meat",
24101
+ [CollectibleType.QUARTER] = "A Quarter",
24102
+ [CollectibleType.PHD] = "PHD",
24103
+ [CollectibleType.XRAY_VISION] = "X-Ray Vision",
24104
+ [CollectibleType.MY_LITTLE_UNICORN] = "My Little Unicorn",
24105
+ [CollectibleType.BOOK_OF_REVELATIONS] = "Book of Revelations",
24106
+ [CollectibleType.MARK] = "The Mark",
24107
+ [CollectibleType.PACT] = "The Pact",
24108
+ [CollectibleType.DEAD_CAT] = "Dead Cat",
24109
+ [CollectibleType.LORD_OF_THE_PIT] = "Lord of the Pit",
24110
+ [CollectibleType.NAIL] = "The Nail",
24111
+ [CollectibleType.WE_NEED_TO_GO_DEEPER] = "We Need To Go Deeper!",
24112
+ [CollectibleType.DECK_OF_CARDS] = "Deck of Cards",
24113
+ [CollectibleType.MONSTROS_TOOTH] = "Monstro's Tooth",
24114
+ [CollectibleType.LOKIS_HORNS] = "Loki's Horns",
24115
+ [CollectibleType.LITTLE_CHUBBY] = "Little Chubby",
24116
+ [CollectibleType.SPIDER_BITE] = "Spider Bite",
24117
+ [CollectibleType.SMALL_ROCK] = "The Small Rock",
24118
+ [CollectibleType.SPELUNKER_HAT] = "Spelunker Hat",
24119
+ [CollectibleType.SUPER_BANDAGE] = "Super Bandage",
24120
+ [CollectibleType.GAMEKID] = "The Gamekid",
24121
+ [CollectibleType.SACK_OF_PENNIES] = "Sack of Pennies",
24122
+ [CollectibleType.ROBO_BABY] = "Robo-Baby",
24123
+ [CollectibleType.LITTLE_CHAD] = "Little C.H.A.D.",
24124
+ [CollectibleType.BOOK_OF_SIN] = "The Book of Sin",
24125
+ [CollectibleType.RELIC] = "The Relic",
24126
+ [CollectibleType.LITTLE_GISH] = "Little Gish",
24127
+ [CollectibleType.LITTLE_STEVEN] = "Little Steven",
24128
+ [CollectibleType.HALO] = "The Halo",
24129
+ [CollectibleType.MOMS_BOTTLE_OF_PILLS] = "Mom's Bottle of Pills",
24130
+ [CollectibleType.COMMON_COLD] = "The Common Cold",
24131
+ [CollectibleType.PARASITE] = "The Parasite",
24132
+ [CollectibleType.D6] = "The D6",
24133
+ [CollectibleType.MR_MEGA] = "Mr. Mega",
24134
+ [CollectibleType.PINKING_SHEARS] = "The Pinking Shears",
24135
+ [CollectibleType.WAFER] = "The Wafer",
24136
+ [CollectibleType.MONEY_EQUALS_POWER] = "Money = Power",
24137
+ [CollectibleType.MOMS_CONTACTS] = "Mom's Contacts",
24138
+ [CollectibleType.BEAN] = "The Bean",
24139
+ [CollectibleType.GUARDIAN_ANGEL] = "Guardian Angel",
24140
+ [CollectibleType.DEMON_BABY] = "Demon Baby",
24141
+ [CollectibleType.MOMS_KNIFE] = "Mom's Knife",
24142
+ [CollectibleType.OUIJA_BOARD] = "Ouija Board",
24143
+ [CollectibleType.NINE_VOLT] = "9 Volt",
24144
+ [CollectibleType.DEAD_BIRD] = "Dead Bird",
24145
+ [CollectibleType.BRIMSTONE] = "Brimstone",
24146
+ [CollectibleType.BLOOD_BAG] = "Blood Bag",
24147
+ [CollectibleType.ODD_MUSHROOM_THIN] = "Odd Mushroom",
24148
+ [CollectibleType.ODD_MUSHROOM_LARGE] = "Odd Mushroom",
24149
+ [CollectibleType.WHORE_OF_BABYLON] = "Whore of Babylon",
24150
+ [CollectibleType.MONSTER_MANUAL] = "Monster Manual",
24151
+ [CollectibleType.DEAD_SEA_SCROLLS] = "Dead Sea Scrolls",
24152
+ [CollectibleType.BOBBY_BOMB] = "Bobby-Bomb",
24153
+ [CollectibleType.RAZOR_BLADE] = "Razor Blade",
24154
+ [CollectibleType.FORGET_ME_NOW] = "Forget Me Now",
24155
+ [CollectibleType.FOREVER_ALONE] = "Forever Alone",
24156
+ [CollectibleType.BUCKET_OF_LARD] = "Bucket of Lard",
24157
+ [CollectibleType.PONY] = "A Pony",
24158
+ [CollectibleType.BOMB_BAG] = "Bomb Bag",
24159
+ [CollectibleType.LUMP_OF_COAL] = "A Lump of Coal",
24160
+ [CollectibleType.GUPPYS_PAW] = "Guppy's Paw",
24161
+ [CollectibleType.GUPPYS_TAIL] = "Guppy's Tail",
24162
+ [CollectibleType.IV_BAG] = "IV Bag",
24163
+ [CollectibleType.BEST_FRIEND] = "Best Friend",
24164
+ [CollectibleType.REMOTE_DETONATOR] = "Remote Detonator",
24165
+ [CollectibleType.STIGMATA] = "Stigmata",
24166
+ [CollectibleType.MOMS_PURSE] = "Mom's Purse",
24167
+ [CollectibleType.BOBS_CURSE] = "Bob's Curse",
24168
+ [CollectibleType.PAGEANT_BOY] = "Pageant Boy",
24169
+ [CollectibleType.SCAPULAR] = "Scapular",
24170
+ [CollectibleType.SPEED_BALL] = "Speed Ball",
24171
+ [CollectibleType.BUM_FRIEND] = "Bum Friend",
24172
+ [CollectibleType.GUPPYS_HEAD] = "Guppy's Head",
24173
+ [CollectibleType.PRAYER_CARD] = "Prayer Card",
24174
+ [CollectibleType.NOTCHED_AXE] = "Notched Axe",
24175
+ [CollectibleType.INFESTATION] = "Infestation",
24176
+ [CollectibleType.IPECAC] = "Ipecac",
24177
+ [CollectibleType.TOUGH_LOVE] = "Tough Love",
24178
+ [CollectibleType.MULLIGAN] = "The Mulligan",
24179
+ [CollectibleType.TECHNOLOGY_2] = "Technology 2",
24180
+ [CollectibleType.MUTANT_SPIDER] = "Mutant Spider",
24181
+ [CollectibleType.CHEMICAL_PEEL] = "Chemical Peel",
24182
+ [CollectibleType.PEEPER] = "The Peeper",
24183
+ [CollectibleType.HABIT] = "Habit",
24184
+ [CollectibleType.BLOODY_LUST] = "Bloody Lust",
24185
+ [CollectibleType.CRYSTAL_BALL] = "Crystal Ball",
24186
+ [CollectibleType.SPIRIT_OF_THE_NIGHT] = "Spirit of the Night",
24187
+ [CollectibleType.CRACK_THE_SKY] = "Crack the Sky",
24188
+ [CollectibleType.ANKH] = "Ankh",
24189
+ [CollectibleType.CELTIC_CROSS] = "Celtic Cross",
24190
+ [CollectibleType.GHOST_BABY] = "Ghost Baby",
24191
+ [CollectibleType.CANDLE] = "The Candle",
24192
+ [CollectibleType.CAT_O_NINE_TAILS] = "Cat-o-nine-tails",
24193
+ [CollectibleType.D20] = "D20",
24194
+ [CollectibleType.HARLEQUIN_BABY] = "Harlequin Baby",
24195
+ [CollectibleType.EPIC_FETUS] = "Epic Fetus",
24196
+ [CollectibleType.POLYPHEMUS] = "Polyphemus",
24197
+ [CollectibleType.DADDY_LONGLEGS] = "Daddy Longlegs",
24198
+ [CollectibleType.SPIDER_BUTT] = "Spider Butt",
24199
+ [CollectibleType.SACRIFICIAL_DAGGER] = "Sacrificial Dagger",
24200
+ [CollectibleType.MITRE] = "Mitre",
24201
+ [CollectibleType.RAINBOW_BABY] = "Rainbow Baby",
24202
+ [CollectibleType.DADS_KEY] = "Dad's Key",
24203
+ [CollectibleType.STEM_CELLS] = "Stem Cells",
24204
+ [CollectibleType.PORTABLE_SLOT] = "Portable Slot",
24205
+ [CollectibleType.HOLY_WATER] = "Holy Water",
24206
+ [CollectibleType.FATE] = "Fate",
24207
+ [CollectibleType.BLACK_BEAN] = "The Black Bean",
24208
+ [CollectibleType.WHITE_PONY] = "White Pony",
24209
+ [CollectibleType.SACRED_HEART] = "Sacred Heart",
24210
+ [CollectibleType.TOOTH_PICKS] = "Tooth Picks",
24211
+ [CollectibleType.HOLY_GRAIL] = "Holy Grail",
24212
+ [CollectibleType.DEAD_DOVE] = "Dead Dove",
24213
+ [CollectibleType.BLOOD_RIGHTS] = "Blood Rights",
24214
+ [CollectibleType.GUPPYS_HAIRBALL] = "Guppy's Hairball",
24215
+ [CollectibleType.ABEL] = "Abel",
24216
+ [CollectibleType.SMB_SUPER_FAN] = "SMB Super Fan",
24217
+ [CollectibleType.PYRO] = "Pyro",
24218
+ [CollectibleType.THREE_DOLLAR_BILL] = "3 Dollar Bill",
24219
+ [CollectibleType.TELEPATHY_BOOK] = "Telepathy For Dummies",
24220
+ [CollectibleType.MEAT] = "MEAT!",
24221
+ [CollectibleType.MAGIC_8_BALL] = "Magic 8 Ball",
24222
+ [CollectibleType.MOMS_COIN_PURSE] = "Mom's Coin Purse",
24223
+ [CollectibleType.SQUEEZY] = "Squeezy",
24224
+ [CollectibleType.JESUS_JUICE] = "Jesus Juice",
24225
+ [CollectibleType.BOX] = "Box",
24226
+ [CollectibleType.MOMS_KEY] = "Mom's Key",
24227
+ [CollectibleType.MOMS_EYESHADOW] = "Mom's Eyeshadow",
24228
+ [CollectibleType.IRON_BAR] = "Iron Bar",
24229
+ [CollectibleType.MIDAS_TOUCH] = "Midas' Touch",
24230
+ [CollectibleType.HUMBLING_BUNDLE] = "Humbleing Bundle",
24231
+ [CollectibleType.FANNY_PACK] = "Fanny Pack",
24232
+ [CollectibleType.SHARP_PLUG] = "Sharp Plug",
24233
+ [CollectibleType.GUILLOTINE] = "Guillotine",
24234
+ [CollectibleType.BALL_OF_BANDAGES] = "Ball of Bandages",
24235
+ [CollectibleType.CHAMPION_BELT] = "Champion Belt",
24236
+ [CollectibleType.BUTT_BOMBS] = "Butt Bombs",
24237
+ [CollectibleType.GNAWED_LEAF] = "Gnawed Leaf",
24238
+ [CollectibleType.SPIDERBABY] = "Spiderbaby",
24239
+ [CollectibleType.GUPPYS_COLLAR] = "Guppy's Collar",
24240
+ [CollectibleType.LOST_CONTACT] = "Lost Contact",
24241
+ [CollectibleType.ANEMIC] = "Anemic",
24242
+ [CollectibleType.GOAT_HEAD] = "Goat Head",
24243
+ [CollectibleType.CEREMONIAL_ROBES] = "Ceremonial Robes",
24244
+ [CollectibleType.MOMS_WIG] = "Mom's Wig",
24245
+ [CollectibleType.PLACENTA] = "Placenta",
24246
+ [CollectibleType.OLD_BANDAGE] = "Old Bandage",
24247
+ [CollectibleType.SAD_BOMBS] = "Sad Bombs",
24248
+ [CollectibleType.RUBBER_CEMENT] = "Rubber Cement",
24249
+ [CollectibleType.ANTI_GRAVITY] = "Anti-Gravity",
24250
+ [CollectibleType.PYROMANIAC] = "Pyromaniac",
24251
+ [CollectibleType.CRICKETS_BODY] = "Cricket's Body",
24252
+ [CollectibleType.GIMPY] = "Gimpy",
24253
+ [CollectibleType.BLACK_LOTUS] = "Black Lotus",
24254
+ [CollectibleType.PIGGY_BANK] = "Piggy Bank",
24255
+ [CollectibleType.MOMS_PERFUME] = "Mom's Perfume",
24256
+ [CollectibleType.MONSTROS_LUNG] = "Monstro's Lung",
24257
+ [CollectibleType.ABADDON] = "Abaddon",
24258
+ [CollectibleType.BALL_OF_TAR] = "Ball of Tar",
24259
+ [CollectibleType.STOP_WATCH] = "Stop Watch",
24260
+ [CollectibleType.TINY_PLANET] = "Tiny Planet",
24261
+ [CollectibleType.INFESTATION_2] = "Infestation 2",
24262
+ [CollectibleType.E_COLI] = "E. Coli",
24263
+ [CollectibleType.DEATHS_TOUCH] = "Death's Touch",
24264
+ [CollectibleType.KEY_PIECE_1] = "Key Piece 1",
24265
+ [CollectibleType.KEY_PIECE_2] = "Key Piece 2",
24266
+ [CollectibleType.EXPERIMENTAL_TREATMENT] = "Experimental Treatment",
24267
+ [CollectibleType.CONTRACT_FROM_BELOW] = "Contract from Below",
24268
+ [CollectibleType.INFAMY] = "Infamy",
24269
+ [CollectibleType.TRINITY_SHIELD] = "Trinity Shield",
24270
+ [CollectibleType.TECH_5] = "Tech.5",
24271
+ [CollectibleType.TWENTY_TWENTY] = "20/20",
24272
+ [CollectibleType.BLUE_MAP] = "Blue Map",
24273
+ [CollectibleType.BFFS] = "BFFS!",
24274
+ [CollectibleType.HIVE_MIND] = "Hive Mind",
24275
+ [CollectibleType.THERES_OPTIONS] = "There's Options",
24276
+ [CollectibleType.BOGO_BOMBS] = "BOGO Bombs",
24277
+ [CollectibleType.STARTER_DECK] = "Starter Deck",
24278
+ [CollectibleType.LITTLE_BAGGY] = "Little Baggy",
24279
+ [CollectibleType.MAGIC_SCAB] = "Magic Scab",
24280
+ [CollectibleType.BLOOD_CLOT] = "Blood Clot",
24281
+ [CollectibleType.SCREW] = "Screw",
24282
+ [CollectibleType.HOT_BOMBS] = "Hot Bombs",
24283
+ [CollectibleType.FIRE_MIND] = "Fire Mind",
24284
+ [CollectibleType.MISSING_NO] = "Missing No.",
24285
+ [CollectibleType.DARK_MATTER] = "Dark Matter",
24286
+ [CollectibleType.BLACK_CANDLE] = "Black Candle",
24287
+ [CollectibleType.PROPTOSIS] = "Proptosis",
24288
+ [CollectibleType.MISSING_PAGE_2] = "Missing Page 2",
24289
+ [CollectibleType.CLEAR_RUNE] = "Clear Rune",
24290
+ [CollectibleType.SMART_FLY] = "Smart Fly",
24291
+ [CollectibleType.DRY_BABY] = "Dry Baby",
24292
+ [CollectibleType.JUICY_SACK] = "Juicy Sack",
24293
+ [CollectibleType.ROBO_BABY_2] = "Robo-Baby 2.0",
24294
+ [CollectibleType.ROTTEN_BABY] = "Rotten Baby",
24295
+ [CollectibleType.HEADLESS_BABY] = "Headless Baby",
24296
+ [CollectibleType.LEECH] = "Leech",
24297
+ [CollectibleType.MYSTERY_SACK] = "Mystery Sack",
24298
+ [CollectibleType.BBF] = "BBF",
24299
+ [CollectibleType.BOBS_BRAIN] = "Bob's Brain",
24300
+ [CollectibleType.BEST_BUD] = "Best Bud",
24301
+ [CollectibleType.LIL_BRIMSTONE] = "Lil Brimstone",
24302
+ [CollectibleType.ISAACS_HEART] = "Isaac's Heart",
24303
+ [CollectibleType.LIL_HAUNT] = "Lil Haunt",
24304
+ [CollectibleType.DARK_BUM] = "Dark Bum",
24305
+ [CollectibleType.BIG_FAN] = "Big Fan",
24306
+ [CollectibleType.SISSY_LONGLEGS] = "Sissy Longlegs",
24307
+ [CollectibleType.PUNCHING_BAG] = "Punching Bag",
24308
+ [CollectibleType.HOW_TO_JUMP] = "How to Jump",
24309
+ [CollectibleType.D100] = "D100",
24310
+ [CollectibleType.D4] = "D4",
24311
+ [CollectibleType.D10] = "D10",
24312
+ [CollectibleType.BLANK_CARD] = "Blank Card",
24313
+ [CollectibleType.BOOK_OF_SECRETS] = "Book of Secrets",
24314
+ [CollectibleType.BOX_OF_SPIDERS] = "Box of Spiders",
24315
+ [CollectibleType.RED_CANDLE] = "Red Candle",
24316
+ [CollectibleType.JAR] = "The Jar",
24317
+ [CollectibleType.FLUSH] = "Flush!",
24318
+ [CollectibleType.SATANIC_BIBLE] = "Satanic Bible",
24319
+ [CollectibleType.HEAD_OF_KRAMPUS] = "Head of Krampus",
24320
+ [CollectibleType.BUTTER_BEAN] = "Butter Bean",
24321
+ [CollectibleType.MAGIC_FINGERS] = "Magic Fingers",
24322
+ [CollectibleType.CONVERTER] = "Converter",
24323
+ [CollectibleType.BLUE_BOX] = "Pandora's Box",
24324
+ [CollectibleType.UNICORN_STUMP] = "Unicorn Stump",
24325
+ [CollectibleType.TAURUS] = "Taurus",
24326
+ [CollectibleType.ARIES] = "Aries",
24327
+ [CollectibleType.CANCER] = "Cancer",
24328
+ [CollectibleType.LEO] = "Leo",
24329
+ [CollectibleType.VIRGO] = "Virgo",
24330
+ [CollectibleType.LIBRA] = "Libra",
24331
+ [CollectibleType.SCORPIO] = "Scorpio",
24332
+ [CollectibleType.SAGITTARIUS] = "Sagittarius",
24333
+ [CollectibleType.CAPRICORN] = "Capricorn",
24334
+ [CollectibleType.AQUARIUS] = "Aquarius",
24335
+ [CollectibleType.PISCES] = "Pisces",
24336
+ [CollectibleType.EVES_MASCARA] = "Eve's Mascara",
24337
+ [CollectibleType.JUDAS_SHADOW] = "Judas' Shadow",
24338
+ [CollectibleType.MAGGYS_BOW] = "Maggy's Bow",
24339
+ [CollectibleType.HOLY_MANTLE] = "Holy Mantle",
24340
+ [CollectibleType.THUNDER_THIGHS] = "Thunder Thighs",
24341
+ [CollectibleType.STRANGE_ATTRACTOR] = "Strange Attractor",
24342
+ [CollectibleType.CURSED_EYE] = "Cursed Eye",
24343
+ [CollectibleType.MYSTERIOUS_LIQUID] = "Mysterious Liquid",
24344
+ [CollectibleType.GEMINI] = "Gemini",
24345
+ [CollectibleType.CAINS_OTHER_EYE] = "Cain's Other Eye",
24346
+ [CollectibleType.BLUE_BABYS_ONLY_FRIEND] = "???'s Only Friend",
24347
+ [CollectibleType.SAMSONS_CHAINS] = "Samson's Chains",
24348
+ [CollectibleType.MONGO_BABY] = "Mongo Baby",
24349
+ [CollectibleType.ISAACS_TEARS] = "Isaac's Tears",
24350
+ [CollectibleType.UNDEFINED] = "Undefined",
24351
+ [CollectibleType.SCISSORS] = "Scissors",
24352
+ [CollectibleType.BREATH_OF_LIFE] = "Breath of Life",
24353
+ [CollectibleType.POLAROID] = "The Polaroid",
24354
+ [CollectibleType.NEGATIVE] = "The Negative",
24355
+ [CollectibleType.LUDOVICO_TECHNIQUE] = "The Ludovico Technique",
24356
+ [CollectibleType.SOY_MILK] = "Soy Milk",
24357
+ [CollectibleType.GODHEAD] = "Godhead",
24358
+ [CollectibleType.LAZARUS_RAGS] = "Lazarus' Rags",
24359
+ [CollectibleType.MIND] = "The Mind",
24360
+ [CollectibleType.BODY] = "The Body",
24361
+ [CollectibleType.SOUL] = "The Soul",
24362
+ [CollectibleType.DEAD_ONION] = "Dead Onion",
24363
+ [CollectibleType.BROKEN_WATCH] = "Broken Watch",
24364
+ [CollectibleType.BOOMERANG] = "The Boomerang",
24365
+ [CollectibleType.SAFETY_PIN] = "Safety Pin",
24366
+ [CollectibleType.CAFFEINE_PILL] = "Caffeine Pill",
24367
+ [CollectibleType.TORN_PHOTO] = "Torn Photo",
24368
+ [CollectibleType.BLUE_CAP] = "Blue Cap",
24369
+ [CollectibleType.LATCH_KEY] = "Latch Key",
24370
+ [CollectibleType.MATCH_BOOK] = "Match Book",
24371
+ [CollectibleType.SYNTHOIL] = "Synthoil",
24372
+ [CollectibleType.SNACK] = "A Snack",
24373
+ [CollectibleType.DIPLOPIA] = "Diplopia",
24374
+ [CollectibleType.PLACEBO] = "Placebo",
24375
+ [CollectibleType.WOODEN_NICKEL] = "Wooden Nickel",
24376
+ [CollectibleType.TOXIC_SHOCK] = "Toxic Shock",
24377
+ [CollectibleType.MEGA_BEAN] = "Mega Bean",
24378
+ [CollectibleType.GLASS_CANNON] = "Glass Cannon",
24379
+ [CollectibleType.BOMBER_BOY] = "Bomber Boy",
24380
+ [CollectibleType.CRACK_JACKS] = "Crack Jacks",
24381
+ [CollectibleType.MOMS_PEARLS] = "Mom's Pearls",
24382
+ [CollectibleType.CAR_BATTERY] = "Car Battery",
24383
+ [CollectibleType.BOX_OF_FRIENDS] = "Box of Friends",
24384
+ [CollectibleType.WIZ] = "The Wiz",
24385
+ [CollectibleType.EIGHT_INCH_NAILS] = "8 Inch Nails",
24386
+ [CollectibleType.INCUBUS] = "Incubus",
24387
+ [CollectibleType.FATES_REWARD] = "Fate's Reward",
24388
+ [CollectibleType.LIL_CHEST] = "Lil Chest",
24389
+ [CollectibleType.SWORN_PROTECTOR] = "Sworn Protector",
24390
+ [CollectibleType.FRIEND_ZONE] = "Friend Zone",
24391
+ [CollectibleType.LOST_FLY] = "Lost Fly",
24392
+ [CollectibleType.SCATTER_BOMBS] = "Scatter Bombs",
24393
+ [CollectibleType.STICKY_BOMBS] = "Sticky Bombs",
24394
+ [CollectibleType.EPIPHORA] = "Epiphora",
24395
+ [CollectibleType.CONTINUUM] = "Continuum",
24396
+ [CollectibleType.MR_DOLLY] = "Mr. Dolly",
24397
+ [CollectibleType.CURSE_OF_THE_TOWER] = "Curse of the Tower",
24398
+ [CollectibleType.CHARGED_BABY] = "Charged Baby",
24399
+ [CollectibleType.DEAD_EYE] = "Dead Eye",
24400
+ [CollectibleType.HOLY_LIGHT] = "Holy Light",
24401
+ [CollectibleType.HOST_HAT] = "Host Hat",
24402
+ [CollectibleType.RESTOCK] = "Restock",
24403
+ [CollectibleType.BURSTING_SACK] = "Bursting Sack",
24404
+ [CollectibleType.NUMBER_TWO] = "Number Two",
24405
+ [CollectibleType.PUPULA_DUPLEX] = "Pupula Duplex",
24406
+ [CollectibleType.PAY_TO_PLAY] = "Pay To Play",
24407
+ [CollectibleType.EDENS_BLESSING] = "Eden's Blessing",
24408
+ [CollectibleType.FRIEND_BALL] = "Friendly Ball",
24409
+ [CollectibleType.TEAR_DETONATOR] = "Tear Detonator",
24410
+ [CollectibleType.LIL_GURDY] = "Lil Gurdy",
24411
+ [CollectibleType.BUMBO] = "Bumbo",
24412
+ [CollectibleType.D12] = "D12",
24413
+ [CollectibleType.CENSER] = "Censer",
24414
+ [CollectibleType.KEY_BUM] = "Key Bum",
24415
+ [CollectibleType.RUNE_BAG] = "Rune Bag",
24416
+ [CollectibleType.SERAPHIM] = "Seraphim",
24417
+ [CollectibleType.BETRAYAL] = "Betrayal",
24418
+ [CollectibleType.ZODIAC] = "Zodiac",
24419
+ [CollectibleType.SERPENTS_KISS] = "Serpent's Kiss",
24420
+ [CollectibleType.MARKED] = "Marked",
24421
+ [CollectibleType.TECH_X] = "Tech X",
24422
+ [CollectibleType.VENTRICLE_RAZOR] = "Ventricle Razor",
24423
+ [CollectibleType.TRACTOR_BEAM] = "Tractor Beam",
24424
+ [CollectibleType.GODS_FLESH] = "God's Flesh",
24425
+ [CollectibleType.MAW_OF_THE_VOID] = "Maw of the Void",
24426
+ [CollectibleType.SPEAR_OF_DESTINY] = "Spear of Destiny",
24427
+ [CollectibleType.EXPLOSIVO] = "Explosivo",
24428
+ [CollectibleType.CHAOS] = "Chaos",
24429
+ [CollectibleType.SPIDER_MOD] = "Spider Mod",
24430
+ [CollectibleType.FARTING_BABY] = "Farting Baby",
24431
+ [CollectibleType.GB_BUG] = "GB Bug",
24432
+ [CollectibleType.D8] = "D8",
24433
+ [CollectibleType.PURITY] = "Purity",
24434
+ [CollectibleType.ATHAME] = "Athame",
24435
+ [CollectibleType.EMPTY_VESSEL] = "Empty Vessel",
24436
+ [CollectibleType.EVIL_EYE] = "Evil Eye",
24437
+ [CollectibleType.LUSTY_BLOOD] = "Lusty Blood",
24438
+ [CollectibleType.CAMBION_CONCEPTION] = "Cambion Conception",
24439
+ [CollectibleType.IMMACULATE_CONCEPTION] = "Immaculate Conception",
24440
+ [CollectibleType.MORE_OPTIONS] = "More Options",
24441
+ [CollectibleType.CROWN_OF_LIGHT] = "Crown of Light",
24442
+ [CollectibleType.DEEP_POCKETS] = "Deep Pockets",
24443
+ [CollectibleType.SUCCUBUS] = "Succubus",
24444
+ [CollectibleType.FRUIT_CAKE] = "Fruit Cake",
24445
+ [CollectibleType.TELEPORT_2] = "Teleport 2.0",
24446
+ [CollectibleType.BLACK_POWDER] = "Black Powder",
24447
+ [CollectibleType.KIDNEY_BEAN] = "Kidney Bean",
24448
+ [CollectibleType.GLOWING_HOUR_GLASS] = "Glowing Hourglass",
24449
+ [CollectibleType.CIRCLE_OF_PROTECTION] = "Circle of Protection",
24450
+ [CollectibleType.SACK_HEAD] = "Sack Head",
24451
+ [CollectibleType.NIGHT_LIGHT] = "Night Light",
24452
+ [CollectibleType.OBSESSED_FAN] = "Obsessed Fan",
24453
+ [CollectibleType.MINE_CRAFTER] = "Mine Crafter",
24454
+ [CollectibleType.PJS] = "PJs",
24455
+ [CollectibleType.HEAD_OF_THE_KEEPER] = "Head of the Keeper",
24456
+ [CollectibleType.PAPA_FLY] = "Papa Fly",
24457
+ [CollectibleType.MULTIDIMENSIONAL_BABY] = "Multidimensional Baby",
24458
+ [CollectibleType.GLITTER_BOMBS] = "Glitter Bombs",
24459
+ [CollectibleType.MY_SHADOW] = "My Shadow",
24460
+ [CollectibleType.JAR_OF_FLIES] = "Jar of Flies",
24461
+ [CollectibleType.LIL_LOKI] = "Lil Loki",
24462
+ [CollectibleType.MILK] = "Milk!",
24463
+ [CollectibleType.D7] = "D7",
24464
+ [CollectibleType.BINKY] = "Binky",
24465
+ [CollectibleType.MOMS_BOX] = "Mom's Box",
24466
+ [CollectibleType.KIDNEY_STONE] = "Kidney Stone",
24467
+ [CollectibleType.MEGA_BLAST] = "Mega Blast",
24468
+ [CollectibleType.DARK_PRINCES_CROWN] = "Dark Prince's Crown",
24469
+ [CollectibleType.APPLE] = "Apple!",
24470
+ [CollectibleType.LEAD_PENCIL] = "Lead Pencil",
24471
+ [CollectibleType.DOG_TOOTH] = "Dog Tooth",
24472
+ [CollectibleType.DEAD_TOOTH] = "Dead Tooth",
24473
+ [CollectibleType.LINGER_BEAN] = "Linger Bean",
24474
+ [CollectibleType.SHARD_OF_GLASS] = "Shard of Glass",
24475
+ [CollectibleType.METAL_PLATE] = "Metal Plate",
24476
+ [CollectibleType.EYE_OF_GREED] = "Eye of Greed",
24477
+ [CollectibleType.TAROT_CLOTH] = "Tarot Cloth",
24478
+ [CollectibleType.VARICOSE_VEINS] = "Varicose Veins",
24479
+ [CollectibleType.COMPOUND_FRACTURE] = "Compound Fracture",
24480
+ [CollectibleType.POLYDACTYLY] = "Polydactyly",
24481
+ [CollectibleType.DADS_LOST_COIN] = "Dad's Lost Coin",
24482
+ [CollectibleType.MIDNIGHT_SNACK] = "Midnight Snack",
24483
+ [CollectibleType.CONE_HEAD] = "Cone Head",
24484
+ [CollectibleType.BELLY_BUTTON] = "Belly Button",
24485
+ [CollectibleType.SINUS_INFECTION] = "Sinus Infection",
24486
+ [CollectibleType.GLAUCOMA] = "Glaucoma",
24487
+ [CollectibleType.PARASITOID] = "Parasitoid",
24488
+ [CollectibleType.EYE_OF_BELIAL] = "Eye of Belial",
24489
+ [CollectibleType.SULFURIC_ACID] = "Sulfuric Acid",
24490
+ [CollectibleType.GLYPH_OF_BALANCE] = "Glyph of Balance",
24491
+ [CollectibleType.ANALOG_STICK] = "Analog Stick",
24492
+ [CollectibleType.CONTAGION] = "Contagion",
24493
+ [CollectibleType.FINGER] = "Finger!",
24494
+ [CollectibleType.SHADE] = "Shade",
24495
+ [CollectibleType.DEPRESSION] = "Depression",
24496
+ [CollectibleType.HUSHY] = "Hushy",
24497
+ [CollectibleType.LIL_MONSTRO] = "Lil Monstro",
24498
+ [CollectibleType.KING_BABY] = "King Baby",
24499
+ [CollectibleType.BIG_CHUBBY] = "Big Chubby",
24500
+ [CollectibleType.BROKEN_GLASS_CANNON] = "Broken Glass Cannon",
24501
+ [CollectibleType.PLAN_C] = "Plan C",
24502
+ [CollectibleType.D1] = "D1",
24503
+ [CollectibleType.VOID] = "Void",
24504
+ [CollectibleType.PAUSE] = "Pause",
24505
+ [CollectibleType.SMELTER] = "Smelter",
24506
+ [CollectibleType.COMPOST] = "Compost",
24507
+ [CollectibleType.DATAMINER] = "Dataminer",
24508
+ [CollectibleType.CLICKER] = "Clicker",
24509
+ [CollectibleType.MAMA_MEGA] = "Mama Mega!",
24510
+ [CollectibleType.WAIT_WHAT] = "Wait What?",
24511
+ [CollectibleType.CROOKED_PENNY] = "Crooked Penny",
24512
+ [CollectibleType.DULL_RAZOR] = "Dull Razor",
24513
+ [CollectibleType.POTATO_PEELER] = "Potato Peeler",
24514
+ [CollectibleType.METRONOME] = "Metronome",
24515
+ [CollectibleType.D_INFINITY] = "D infinity",
24516
+ [CollectibleType.EDENS_SOUL] = "Eden's Soul",
24517
+ [CollectibleType.ACID_BABY] = "Acid Baby",
24518
+ [CollectibleType.YO_LISTEN] = "YO LISTEN!",
24519
+ [CollectibleType.ADRENALINE] = "Adrenaline",
24520
+ [CollectibleType.JACOBS_LADDER] = "Jacob's Ladder",
24521
+ [CollectibleType.GHOST_PEPPER] = "Ghost Pepper",
24522
+ [CollectibleType.EUTHANASIA] = "Euthanasia",
24523
+ [CollectibleType.CAMO_UNDIES] = "Camo Undies",
24524
+ [CollectibleType.DUALITY] = "Duality",
24525
+ [CollectibleType.EUCHARIST] = "Eucharist",
24526
+ [CollectibleType.SACK_OF_SACKS] = "Sack of Sacks",
24527
+ [CollectibleType.GREEDS_GULLET] = "Greed's Gullet",
24528
+ [CollectibleType.LARGE_ZIT] = "Large Zit",
24529
+ [CollectibleType.LITTLE_HORN] = "Little Horn",
24530
+ [CollectibleType.BROWN_NUGGET] = "Brown Nugget",
24531
+ [CollectibleType.POKE_GO] = "Poke Go",
24532
+ [CollectibleType.BACKSTABBER] = "Backstabber",
24533
+ [CollectibleType.SHARP_STRAW] = "Sharp Straw",
24534
+ [CollectibleType.MOMS_RAZOR] = "Mom's Razor",
24535
+ [CollectibleType.BLOODSHOT_EYE] = "Bloodshot Eye",
24536
+ [CollectibleType.DELIRIOUS] = "Delirious",
24537
+ [CollectibleType.ANGRY_FLY] = "Angry Fly",
24538
+ [CollectibleType.BLACK_HOLE] = "Black Hole",
24539
+ [CollectibleType.BOZO] = "Bozo",
24540
+ [CollectibleType.BROKEN_MODEM] = "Broken Modem",
24541
+ [CollectibleType.MYSTERY_GIFT] = "Mystery Gift",
24542
+ [CollectibleType.SPRINKLER] = "Sprinkler",
24543
+ [CollectibleType.FAST_BOMBS] = "Fast Bombs",
24544
+ [CollectibleType.BUDDY_IN_A_BOX] = "Buddy in a Box",
24545
+ [CollectibleType.LIL_DELIRIUM] = "Lil Delirium",
24546
+ [CollectibleType.JUMPER_CABLES] = "Jumper Cables",
24547
+ [CollectibleType.COUPON] = "Coupon",
24548
+ [CollectibleType.TELEKINESIS] = "Telekinesis",
24549
+ [CollectibleType.MOVING_BOX] = "Moving Box",
24550
+ [CollectibleType.TECHNOLOGY_ZERO] = "Technology Zero",
24551
+ [CollectibleType.LEPROSY] = "Leprosy",
24552
+ [CollectibleType.SEVEN_SEALS] = "7 Seals",
24553
+ [CollectibleType.MR_ME] = "Mr. ME!",
24554
+ [CollectibleType.ANGELIC_PRISM] = "Angelic Prism",
24555
+ [CollectibleType.POP] = "Pop!",
24556
+ [CollectibleType.DEATHS_LIST] = "Death's List",
24557
+ [CollectibleType.HAEMOLACRIA] = "Haemolacria",
24558
+ [CollectibleType.LACHRYPHAGY] = "Lachryphagy",
24559
+ [CollectibleType.TRISAGION] = "Trisagion",
24560
+ [CollectibleType.SCHOOLBAG] = "Schoolbag",
24561
+ [CollectibleType.BLANKET] = "Blanket",
24562
+ [CollectibleType.SACRIFICIAL_ALTAR] = "Sacrificial Altar",
24563
+ [CollectibleType.LIL_SPEWER] = "Lil Spewer",
24564
+ [CollectibleType.MARBLES] = "Marbles",
24565
+ [CollectibleType.MYSTERY_EGG] = "Mystery Egg",
24566
+ [CollectibleType.FLAT_STONE] = "Flat Stone",
24567
+ [CollectibleType.MARROW] = "Marrow",
24568
+ [CollectibleType.SLIPPED_RIB] = "Slipped Rib",
24569
+ [CollectibleType.HALLOWED_GROUND] = "Hallowed Ground",
24570
+ [CollectibleType.POINTY_RIB] = "Pointy Rib",
24571
+ [CollectibleType.BOOK_OF_THE_DEAD] = "Book of the Dead",
24572
+ [CollectibleType.DADS_RING] = "Dad's Ring",
24573
+ [CollectibleType.DIVORCE_PAPERS] = "Divorce Papers",
24574
+ [CollectibleType.JAW_BONE] = "Jaw Bone",
24575
+ [CollectibleType.BRITTLE_BONES] = "Brittle Bones",
24576
+ [CollectibleType.BROKEN_SHOVEL_1] = "Broken Shovel",
24577
+ [CollectibleType.BROKEN_SHOVEL_2] = "Broken Shovel",
24578
+ [CollectibleType.MOMS_SHOVEL] = "Mom's Shovel",
24579
+ [CollectibleType.MUCORMYCOSIS] = "Mucormycosis",
24580
+ [CollectibleType.TWO_SPOOKY] = "2Spooky",
24581
+ [CollectibleType.GOLDEN_RAZOR] = "Golden Razor",
24582
+ [CollectibleType.SULFUR] = "Sulfur",
24583
+ [CollectibleType.FORTUNE_COOKIE] = "Fortune Cookie",
24584
+ [CollectibleType.EYE_SORE] = "Eye Sore",
24585
+ [CollectibleType.ONE_HUNDRED_TWENTY_VOLT] = "120 Volt",
24586
+ [CollectibleType.IT_HURTS] = "It Hurts",
24587
+ [CollectibleType.ALMOND_MILK] = "Almond Milk",
24588
+ [CollectibleType.ROCK_BOTTOM] = "Rock Bottom",
24589
+ [CollectibleType.NANCY_BOMBS] = "Nancy Bombs",
24590
+ [CollectibleType.BAR_OF_SOAP] = "A Bar of Soap",
24591
+ [CollectibleType.BLOOD_PUPPY] = "Blood Puppy",
24592
+ [CollectibleType.DREAM_CATCHER] = "Dream Catcher",
24593
+ [CollectibleType.PASCHAL_CANDLE] = "Paschal Candle",
24594
+ [CollectibleType.DIVINE_INTERVENTION] = "Divine Intervention",
24595
+ [CollectibleType.BLOOD_OATH] = "Blood Oath",
24596
+ [CollectibleType.PLAYDOUGH_COOKIE] = "Playdough Cookie",
24597
+ [CollectibleType.SOCKS] = "Orphan Socks",
24598
+ [CollectibleType.EYE_OF_THE_OCCULT] = "Eye of the Occult",
24599
+ [CollectibleType.IMMACULATE_HEART] = "Immaculate Heart",
24600
+ [CollectibleType.MONSTRANCE] = "Monstrance",
24601
+ [CollectibleType.INTRUDER] = "The Intruder",
24602
+ [CollectibleType.DIRTY_MIND] = "Dirty Mind",
24603
+ [CollectibleType.DAMOCLES] = "Damocles",
24604
+ [CollectibleType.FREE_LEMONADE] = "Free Lemonade",
24605
+ [CollectibleType.SPIRIT_SWORD] = "Spirit Sword",
24606
+ [CollectibleType.RED_KEY] = "Red Key",
24607
+ [CollectibleType.PSY_FLY] = "Psy Fly",
24608
+ [CollectibleType.WAVY_CAP] = "Wavy Cap",
24609
+ [CollectibleType.ROCKET_IN_A_JAR] = "Rocket in a Jar",
24610
+ [CollectibleType.BOOK_OF_VIRTUES] = "Book of Virtues",
24611
+ [CollectibleType.ALABASTER_BOX] = "Alabaster Box",
24612
+ [CollectibleType.STAIRWAY] = "The Stairway",
24613
+ [CollectibleType.SOL] = "Sol",
24614
+ [CollectibleType.LUNA] = "Luna",
24615
+ [CollectibleType.MERCURIUS] = "Mercurius",
24616
+ [CollectibleType.VENUS] = "Venus",
24617
+ [CollectibleType.TERRA] = "Terra",
24618
+ [CollectibleType.MARS] = "Mars",
24619
+ [CollectibleType.JUPITER] = "Jupiter",
24620
+ [CollectibleType.SATURNUS] = "Saturnus",
24621
+ [CollectibleType.URANUS] = "Uranus",
24622
+ [CollectibleType.NEPTUNUS] = "Neptunus",
24623
+ [CollectibleType.PLUTO] = "Pluto",
24624
+ [CollectibleType.VOODOO_HEAD] = "Voodoo Head",
24625
+ [CollectibleType.EYE_DROPS] = "Eye Drops",
24626
+ [CollectibleType.ACT_OF_CONTRITION] = "Act of Contrition",
24627
+ [CollectibleType.MEMBER_CARD] = "Member Card",
24628
+ [CollectibleType.BATTERY_PACK] = "Battery Pack",
24629
+ [CollectibleType.MOMS_BRACELET] = "Mom's Bracelet",
24630
+ [CollectibleType.SCOOPER] = "The Scooper",
24631
+ [CollectibleType.OCULAR_RIFT] = "Ocular Rift",
24632
+ [CollectibleType.BOILED_BABY] = "Boiled Baby",
24633
+ [CollectibleType.FREEZER_BABY] = "Freezer Baby",
24634
+ [CollectibleType.ETERNAL_D6] = "Eternal D6",
24635
+ [CollectibleType.BIRD_CAGE] = "Bird Cage",
24636
+ [CollectibleType.LARYNX] = "Larynx",
24637
+ [CollectibleType.LOST_SOUL] = "Lost Soul",
24638
+ [CollectibleType.BLOOD_BOMBS] = "Blood Bombs",
24639
+ [CollectibleType.LIL_DUMPY] = "Lil Dumpy",
24640
+ [CollectibleType.BIRDS_EYE] = "Bird's Eye",
24641
+ [CollectibleType.LODESTONE] = "Lodestone",
24642
+ [CollectibleType.ROTTEN_TOMATO] = "Rotten Tomato",
24643
+ [CollectibleType.BIRTHRIGHT] = "Birthright",
24644
+ [CollectibleType.RED_STEW] = "Red Stew",
24645
+ [CollectibleType.GENESIS] = "Genesis",
24646
+ [CollectibleType.SHARP_KEY] = "Sharp Key",
24647
+ [CollectibleType.BOOSTER_PACK] = "Booster Pack",
24648
+ [CollectibleType.MEGA_MUSH] = "Mega Mush",
24649
+ [CollectibleType.KNIFE_PIECE_1] = "Knife Piece 1",
24650
+ [CollectibleType.KNIFE_PIECE_2] = "Knife Piece 2",
24651
+ [CollectibleType.DEATH_CERTIFICATE] = "Death Certificate",
24652
+ [CollectibleType.BOT_FLY] = "Bot Fly",
24653
+ [CollectibleType.MEAT_CLEAVER] = "Meat Cleaver",
24654
+ [CollectibleType.EVIL_CHARM] = "Evil Charm",
24655
+ [CollectibleType.DOGMA] = "Dogma",
24656
+ [CollectibleType.PURGATORY] = "Purgatory",
24657
+ [CollectibleType.STITCHES] = "Stitches",
24658
+ [CollectibleType.R_KEY] = "R Key",
24659
+ [CollectibleType.KNOCKOUT_DROPS] = "Knockout Drops",
24660
+ [CollectibleType.ERASER] = "Eraser",
24661
+ [CollectibleType.YUCK_HEART] = "Yuck Heart",
24662
+ [CollectibleType.URN_OF_SOULS] = "Urn of Souls",
24663
+ [CollectibleType.AKELDAMA] = "Akeldama",
24664
+ [CollectibleType.MAGIC_SKIN] = "Magic Skin",
24665
+ [CollectibleType.REVELATION] = "Revelation",
24666
+ [CollectibleType.CONSOLATION_PRIZE] = "Consolation Prize",
24667
+ [CollectibleType.TINYTOMA] = "Tinytoma",
24668
+ [CollectibleType.BRIMSTONE_BOMBS] = "Brimstone Bombs",
24669
+ [CollectibleType.FOUR_FIVE_VOLT] = "4.5 Volt",
24670
+ [CollectibleType.FRUITY_PLUM] = "Fruity Plum",
24671
+ [CollectibleType.PLUM_FLUTE] = "Plum Flute",
24672
+ [CollectibleType.STAR_OF_BETHLEHEM] = "Star of Bethlehem",
24673
+ [CollectibleType.CUBE_BABY] = "Cube Baby",
24674
+ [CollectibleType.VADE_RETRO] = "Vade Retro",
24675
+ [CollectibleType.FALSE_PHD] = "False PHD",
24676
+ [CollectibleType.SPIN_TO_WIN] = "Spin to Win",
24677
+ [CollectibleType.DAMOCLES_PASSIVE] = "Damocles (Passive)",
24678
+ [CollectibleType.VASCULITIS] = "Vasculitis",
24679
+ [CollectibleType.GIANT_CELL] = "Giant Cell",
24680
+ [CollectibleType.TROPICAMIDE] = "Tropicamide",
24681
+ [CollectibleType.CARD_READING] = "Card Reading",
24682
+ [CollectibleType.QUINTS] = "Quints",
24683
+ [CollectibleType.TOOTH_AND_NAIL] = "Tooth and Nail",
24684
+ [CollectibleType.BINGE_EATER] = "Binge Eater",
24685
+ [CollectibleType.GUPPYS_EYE] = "Guppy's Eye",
24686
+ [CollectibleType.STRAWMAN] = "Strawman",
24687
+ [CollectibleType.DADS_NOTE] = "Dad's Note",
24688
+ [CollectibleType.SAUSAGE] = "Sausage",
24689
+ [CollectibleType.OPTIONS] = "Options?",
24690
+ [CollectibleType.CANDY_HEART] = "Candy Heart",
24691
+ [CollectibleType.POUND_OF_FLESH] = "A Pound of Flesh",
24692
+ [CollectibleType.REDEMPTION] = "Redemption",
24693
+ [CollectibleType.SPIRIT_SHACKLES] = "Spirit Shackles",
24694
+ [CollectibleType.CRACKED_ORB] = "Cracked Orb",
24695
+ [CollectibleType.EMPTY_HEART] = "Empty Heart",
24696
+ [CollectibleType.ASTRAL_PROJECTION] = "Astral Projection",
24697
+ [CollectibleType.C_SECTION] = "C Section",
24698
+ [CollectibleType.LIL_ABADDON] = "Lil Abaddon",
24699
+ [CollectibleType.MONTEZUMAS_REVENGE] = "Montezuma's Revenge",
24700
+ [CollectibleType.LIL_PORTAL] = "Lil Portal",
24701
+ [CollectibleType.WORM_FRIEND] = "Worm Friend",
24702
+ [CollectibleType.BONE_SPURS] = "Bone Spurs",
24703
+ [CollectibleType.HUNGRY_SOUL] = "Hungry Soul",
24704
+ [CollectibleType.JAR_OF_WISPS] = "Jar of Wisps",
24705
+ [CollectibleType.SOUL_LOCKET] = "Soul Locket",
24706
+ [CollectibleType.FRIEND_FINDER] = "Friend Finder",
24707
+ [CollectibleType.INNER_CHILD] = "Inner Child",
24708
+ [CollectibleType.GLITCHED_CROWN] = "Glitched Crown",
24709
+ [CollectibleType.JELLY_BELLY] = "Belly Jelly",
24710
+ [CollectibleType.SACRED_ORB] = "Sacred Orb",
24711
+ [CollectibleType.SANGUINE_BOND] = "Sanguine Bond",
24712
+ [CollectibleType.SWARM] = "The Swarm",
24713
+ [CollectibleType.HEARTBREAK] = "Heartbreak",
24714
+ [CollectibleType.BLOODY_GUST] = "Bloody Gust",
24715
+ [CollectibleType.SALVATION] = "Salvation",
24716
+ [CollectibleType.VANISHING_TWIN] = "Vanishing Twin",
24717
+ [CollectibleType.TWISTED_PAIR] = "Twisted Pair",
24718
+ [CollectibleType.AZAZELS_RAGE] = "Azazel's Rage",
24719
+ [CollectibleType.ECHO_CHAMBER] = "Echo Chamber",
24720
+ [CollectibleType.ISAACS_TOMB] = "Isaac's Tomb",
24721
+ [CollectibleType.VENGEFUL_SPIRIT] = "Vengeful Spirit",
24722
+ [CollectibleType.ESAU_JR] = "Esau Jr.",
24723
+ [CollectibleType.BERSERK] = "Berserk!",
24724
+ [CollectibleType.DARK_ARTS] = "Dark Arts",
24725
+ [CollectibleType.ABYSS] = "Abyss",
24726
+ [CollectibleType.SUPPER] = "Supper",
24727
+ [CollectibleType.STAPLER] = "Stapler",
24728
+ [CollectibleType.SUPLEX] = "Suplex!",
24729
+ [CollectibleType.BAG_OF_CRAFTING] = "Bag of Crafting",
24730
+ [CollectibleType.FLIP] = "Flip",
24731
+ [CollectibleType.LEMEGETON] = "Lemegeton",
24732
+ [CollectibleType.SUMPTORIUM] = "Sumptorium",
24733
+ [CollectibleType.RECALL] = "Recall",
24734
+ [CollectibleType.HOLD] = "Hold",
24735
+ [CollectibleType.KEEPERS_SACK] = "Keeper's Sack",
24736
+ [CollectibleType.KEEPERS_KIN] = "Keeper's Kin",
24737
+ [CollectibleType.KEEPERS_BOX] = "Keeper's Box",
24738
+ [CollectibleType.EVERYTHING_JAR] = "Everything Jar",
24739
+ [CollectibleType.TMTRAINER] = "TMTRAINER",
24740
+ [CollectibleType.ANIMA_SOLA] = "Anima Sola",
24741
+ [CollectibleType.SPINDOWN_DICE] = "Spindown Dice",
24742
+ [CollectibleType.HYPERCOAGULATION] = "Hypercoagulation",
24743
+ [CollectibleType.IBS] = "IBS",
24744
+ [CollectibleType.HEMOPTYSIS] = "Hemoptysis",
24745
+ [CollectibleType.GHOST_BOMBS] = "Ghost Bombs",
24746
+ [CollectibleType.GELLO] = "Gello",
24747
+ [CollectibleType.DECAP_ATTACK] = "Decap Attack",
24748
+ [CollectibleType.GLASS_EYE] = "Glass Eye",
24749
+ [CollectibleType.STYE] = "Stye",
24750
+ [CollectibleType.MOMS_RING] = "Mom's Ring"
24751
+ }
24763
24752
  return ____exports
24764
24753
  end,
24765
24754
  ["src.sets.singleUseActiveCollectibleTypesSet"] = function(...)
@@ -24850,12 +24839,12 @@ local ____constantsFirstLast = require("src.core.constantsFirstLast")
24850
24839
  local LAST_VANILLA_COLLECTIBLE_TYPE = ____constantsFirstLast.LAST_VANILLA_COLLECTIBLE_TYPE
24851
24840
  local ____constantsVanilla = require("src.core.constantsVanilla")
24852
24841
  local VANILLA_COLLECTIBLE_TYPES = ____constantsVanilla.VANILLA_COLLECTIBLE_TYPES
24853
- local ____collectibleDescriptionMap = require("src.maps.collectibleDescriptionMap")
24854
- local COLLECTIBLE_DESCRIPTION_MAP = ____collectibleDescriptionMap.COLLECTIBLE_DESCRIPTION_MAP
24855
- local DEFAULT_COLLECTIBLE_DESCRIPTION = ____collectibleDescriptionMap.DEFAULT_COLLECTIBLE_DESCRIPTION
24856
- local ____collectibleTypeToNameMap = require("src.maps.collectibleTypeToNameMap")
24857
- local COLLECTIBLE_TYPE_TO_NAME_MAP = ____collectibleTypeToNameMap.COLLECTIBLE_TYPE_TO_NAME_MAP
24858
- local DEFAULT_COLLECTIBLE_NAME = ____collectibleTypeToNameMap.DEFAULT_COLLECTIBLE_NAME
24842
+ local ____collectibleDescriptions = require("src.objects.collectibleDescriptions")
24843
+ local COLLECTIBLE_DESCRIPTIONS = ____collectibleDescriptions.COLLECTIBLE_DESCRIPTIONS
24844
+ local DEFAULT_COLLECTIBLE_DESCRIPTION = ____collectibleDescriptions.DEFAULT_COLLECTIBLE_DESCRIPTION
24845
+ local ____collectibleNames = require("src.objects.collectibleNames")
24846
+ local COLLECTIBLE_NAMES = ____collectibleNames.COLLECTIBLE_NAMES
24847
+ local DEFAULT_COLLECTIBLE_NAME = ____collectibleNames.DEFAULT_COLLECTIBLE_NAME
24859
24848
  local ____singleUseActiveCollectibleTypesSet = require("src.sets.singleUseActiveCollectibleTypesSet")
24860
24849
  local SINGLE_USE_ACTIVE_COLLECTIBLE_TYPES_SET = ____singleUseActiveCollectibleTypesSet.SINGLE_USE_ACTIVE_COLLECTIBLE_TYPES_SET
24861
24850
  local ____entities = require("src.functions.entities")
@@ -25001,7 +24990,7 @@ function ____exports.getCollectibleChargeType(self, collectibleOrCollectibleType
25001
24990
  end
25002
24991
  function ____exports.getCollectibleDescription(self, collectibleOrCollectibleType)
25003
24992
  local collectibleType = getCollectibleTypeFromArg(nil, collectibleOrCollectibleType, "getCollectibleDescription")
25004
- local collectibleDescription = COLLECTIBLE_DESCRIPTION_MAP:get(collectibleType)
24993
+ local collectibleDescription = COLLECTIBLE_DESCRIPTIONS[collectibleType]
25005
24994
  if collectibleDescription ~= nil then
25006
24995
  return collectibleDescription
25007
24996
  end
@@ -25076,7 +25065,7 @@ function ____exports.getCollectibleMaxCharges(self, collectibleOrCollectibleType
25076
25065
  end
25077
25066
  function ____exports.getCollectibleName(self, collectibleOrCollectibleType)
25078
25067
  local collectibleType = getCollectibleTypeFromArg(nil, collectibleOrCollectibleType, "getCollectibleName")
25079
- local collectibleName = COLLECTIBLE_TYPE_TO_NAME_MAP:get(collectibleType)
25068
+ local collectibleName = COLLECTIBLE_NAMES[collectibleType]
25080
25069
  if collectibleName ~= nil then
25081
25070
  return collectibleName
25082
25071
  end
@@ -25882,6 +25871,13 @@ ____exports.ROOM_SHAPE_TO_BOTTOM_RIGHT_POSITION = {
25882
25871
  [RoomShape.LBL] = TWO_BY_TWO_BOTTOM_RIGHT_POSITION,
25883
25872
  [RoomShape.LBR] = ONE_BY_TWO_VERTICAL_BOTTOM_RIGHT_POSITION
25884
25873
  }
25874
+ return ____exports
25875
+ end,
25876
+ ["src.types.ReadonlyMap"] = function(...)
25877
+ local ____lualib = require("lualib_bundle")
25878
+ local Map = ____lualib.Map
25879
+ local ____exports = {}
25880
+ ____exports.ReadonlyMap = Map
25885
25881
  return ____exports
25886
25882
  end,
25887
25883
  ["src.objects.roomShapeToDoorSlotsToGridIndexDelta"] = function(...)
@@ -31096,402 +31092,400 @@ return ____exports
31096
31092
  local ____exports = {}
31097
31093
  return ____exports
31098
31094
  end,
31099
- ["src.maps.trinketDescriptionMap"] = function(...)
31100
- local ____lualib = require("lualib_bundle")
31101
- local __TS__New = ____lualib.__TS__New
31095
+ ["src.objects.trinketDescriptions"] = function(...)
31102
31096
  local ____exports = {}
31103
- local ____ReadonlyMap = require("src.types.ReadonlyMap")
31104
- local ReadonlyMap = ____ReadonlyMap.ReadonlyMap
31097
+ local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
31098
+ local TrinketType = ____isaac_2Dtypescript_2Ddefinitions.TrinketType
31105
31099
  ____exports.DEFAULT_TRINKET_DESCRIPTION = "Unknown"
31106
- ____exports.TRINKET_DESCRIPTION_MAP = __TS__New(ReadonlyMap, {
31107
- {1, "Gulp!"},
31108
- {2, "It feels lucky?"},
31109
- {3, "Trickle charge"},
31110
- {4, "It's broken"},
31111
- {5, "Challenge up"},
31112
- {6, "It kinda works"},
31113
- {7, "Faith up"},
31114
- {8, "I remember these"},
31115
- {9, "Wub wub!"},
31116
- {10, "Wiggle waggle!"},
31117
- {11, "Woop woop!"},
31118
- {12, "Blub blub!"},
31119
- {13, "YES!"},
31120
- {14, "Your feet feel stronger"},
31121
- {15, "There's something inside it"},
31122
- {16, "???"},
31123
- {17, "Evil up"},
31124
- {18, "Faith up"},
31125
- {19, "Master of lockpicking"},
31126
- {20, "Wish granted"},
31127
- {21, "???"},
31128
- {22, "Evil up"},
31129
- {23, "???"},
31130
- {24, "Wealth of gas"},
31131
- {25, "Uh-oh!"},
31132
- {26, "Zip zoop!"},
31133
- {27, "Wooosh!"},
31134
- {28, "Eternal life?"},
31135
- {29, "It stinks"},
31136
- {30, "Poison shots"},
31137
- {31, "Piercing shots"},
31138
- {32, "Touch fuzzy, get dizzy"},
31139
- {33, "Fetal protection"},
31140
- {34, "It calls out to its brothers"},
31141
- {35, "DMG up"},
31142
- {36, "It feels lucky?"},
31143
- {37, "Speed up"},
31144
- {38, "It emanates purity "},
31145
- {39, "Yay, cancer!"},
31146
- {40, "Your rage grows"},
31147
- {41, "Tastes like burning"},
31148
- {42, "Luck up!"},
31149
- {43, "Cursed?"},
31150
- {44, "Don't swallow it"},
31151
- {45, "Luck of the draw"},
31152
- {46, "Consume thy enemy"},
31153
- {48, "It glows with power"},
31154
- {49, "Wealth of health"},
31155
- {50, "Wealth of chaos"},
31156
- {51, "Wealth of answers"},
31157
- {52, "Wealth of wealth"},
31158
- {53, "Well, that's not coming off"},
31159
- {54, "Dead friend"},
31160
- {55, "Faith's reward"},
31161
- {56, "Payment received "},
31162
- {57, "Imaginary friend"},
31163
- {58, "Your rage grows"},
31164
- {59, "May you see your destination"},
31165
- {60, "Revenge from beyond"},
31166
- {61, "The left-hand path reaps dark rewards"},
31167
- {62, "It shines for its brothers"},
31168
- {63, "Fuse cutter"},
31169
- {64, "Bleep bloop blop"},
31170
- {65, "Floooooooooop!"},
31171
- {66, "Pft"},
31172
- {67, "You feel cursed... kinda."},
31173
- {68, "It pulls"},
31174
- {69, "You feel faded"},
31175
- {70, "Itchy, tasty..."},
31176
- {71, "Creepy bombs"},
31177
- {72, "Lil charge"},
31178
- {73, "Pop! Pop!"},
31179
- {74, "The ground below feels hollow..."},
31180
- {75, "Effect not found?"},
31181
- {76, "It's double down time!"},
31182
- {77, "Bounce back!"},
31183
- {78, "Extended stat effect time!"},
31184
- {79, "I'm stuck in a loop..."},
31185
- {80, "With darkness comes power"},
31186
- {81, "Blind to damage"},
31187
- {82, "Feel lucky?"},
31188
- {83, "Stores are open"},
31189
- {84, "Feels greedy"},
31190
- {85, "Karma up"},
31191
- {86, "The poop is moving..."},
31192
- {87, "You feel her love"},
31193
- {88, "Never again!"},
31194
- {89, "Keep your friends close..."},
31195
- {90, "Fartoom!"},
31196
- {91, "Eww"},
31197
- {92, "Stat booster"},
31198
- {93, "You stink"},
31199
- {94, "It also stinks!"},
31200
- {95, "It looks dead"},
31201
- {96, "Foop foop!"},
31202
- {97, "Sick..."},
31203
- {98, "Seems magic..."},
31204
- {99, "Boing!"},
31205
- {100, "It needs power"},
31206
- {101, "I think it's broken"},
31207
- {102, "Double moon"},
31208
- {103, "="},
31209
- {104, "Make a wish"},
31210
- {105, "I wonder what it is"},
31211
- {106, "Uncorked"},
31212
- {107, "Drain me"},
31213
- {108, "That's a hard nut to crack!"},
31214
- {109, "Stuck!"},
31215
- {110, "Feels lucky..."},
31216
- {111, "Drips with blood..."},
31217
- {112, "..."},
31218
- {113, "I bring War"},
31219
- {114, "I bring Pestilence"},
31220
- {115, "I bring Famine"},
31221
- {116, "I bring Death"},
31222
- {117, "I bring Conquest"},
31223
- {118, "They are growing..."},
31224
- {119, "Regen!"},
31225
- {120, "Danger charge"},
31226
- {121, "My faith protects me"},
31227
- {122, "Can't hold it!"},
31228
- {123, "Angelic spoils"},
31229
- {124, "Hold the door"},
31230
- {125, "Charged friends"},
31231
- {126, "Wealth of flies"},
31232
- {127, "Feed them magic!"},
31233
- {128, "It looks brittle"},
31234
- {129, "Don't chew on it"},
31235
- {130, "It's leaking"},
31236
- {131, "Wealth of purity"},
31237
- {132, "Mystery medicine"},
31238
- {133, "Faster explosions"},
31239
- {134, "Mega farts"},
31240
- {135, "Watch the world burn"},
31241
- {136, "Bombs are key"},
31242
- {137, "Forget me not..."},
31243
- {138, "t's broken9Reroll your dest "},
31244
- {139, "It feels lucky"},
31245
- {140, "It feels empty"},
31246
- {141, "Sing for your friends"},
31247
- {142, "My faith protects me"},
31248
- {143, "Voltage starving"},
31249
- {144, "Ding!"},
31250
- {145, "Luck way up. Don't lose it!"},
31251
- {146, "His special customer"},
31252
- {147, "Wealth of power"},
31253
- {148, "Gather round"},
31254
- {149, "Push in case of emergency"},
31255
- {150, "Look between the rooms"},
31256
- {151, "No more spikes"},
31257
- {152, "Seek the stars"},
31258
- {153, "A piece of her love"},
31259
- {154, "Bonus roll"},
31260
- {155, "Walk the path of the saint"},
31261
- {156, "HP up"},
31262
- {157, "Death awaits"},
31263
- {158, "A hole in your pocket"},
31264
- {159, "Less is more"},
31265
- {160, "Free goodies!"},
31266
- {161, "Walk the path of the wicked"},
31267
- {162, "Unleash your inner demon"},
31268
- {163, "Oops!"},
31269
- {164, "Twice the bang!"},
31270
- {165, "Don't want!"},
31271
- {166, "???"},
31272
- {167, "Friends from beyond"},
31273
- {168, "A brittle blessing"},
31274
- {169, "Looks familiar..."},
31275
- {170, "Call to the other side"},
31276
- {171, "Money talks"},
31277
- {172, "Wealth of misery"},
31278
- {173, "Give it to me"},
31279
- {174, "6"},
31280
- {175, "What could it open?"},
31281
- {176, "Mini friend"},
31282
- {177, "You feel braver"},
31283
- {178, "Bang!"},
31284
- {179, "Controllable buddies!"},
31285
- {180, "Finally!"},
31286
- {181, "Fun extras"},
31287
- {182, "Virtue's reward"},
31288
- {183, "I'm seeing double..."},
31289
- {184, "Give them a home"},
31290
- {185, "Infested"},
31291
- {186, "Attack buddy"},
31292
- {187, "Double vision?"},
31293
- {188, "Stay frosty"},
31294
- {189, "Revel in death"}
31295
- })
31100
+ ____exports.TRINKET_DESCRIPTIONS = {
31101
+ [TrinketType.NULL] = ____exports.DEFAULT_TRINKET_DESCRIPTION,
31102
+ [TrinketType.SWALLOWED_PENNY] = "Gulp!",
31103
+ [TrinketType.PETRIFIED_POOP] = "It feels lucky?",
31104
+ [TrinketType.AAA_BATTERY] = "Trickle charge",
31105
+ [TrinketType.BROKEN_REMOTE] = "It's broken",
31106
+ [TrinketType.PURPLE_HEART] = "Challenge up",
31107
+ [TrinketType.BROKEN_MAGNET] = "It kinda works",
31108
+ [TrinketType.ROSARY_BEAD] = "Faith up",
31109
+ [TrinketType.CARTRIDGE] = "I remember these",
31110
+ [TrinketType.PULSE_WORM] = "Wub wub!",
31111
+ [TrinketType.WIGGLE_WORM] = "Wiggle waggle!",
31112
+ [TrinketType.RING_WORM] = "Woop woop!",
31113
+ [TrinketType.FLAT_WORM] = "Blub blub!",
31114
+ [TrinketType.STORE_CREDIT] = "YES!",
31115
+ [TrinketType.CALLUS] = "Your feet feel stronger",
31116
+ [TrinketType.LUCKY_ROCK] = "There's something inside it",
31117
+ [TrinketType.MOMS_TOENAIL] = "???",
31118
+ [TrinketType.BLACK_LIPSTICK] = "Evil up",
31119
+ [TrinketType.BIBLE_TRACT] = "Faith up",
31120
+ [TrinketType.PAPER_CLIP] = "Master of lockpicking",
31121
+ [TrinketType.MONKEY_PAW] = "Wish granted",
31122
+ [TrinketType.MYSTERIOUS_PAPER] = "???",
31123
+ [TrinketType.DAEMONS_TAIL] = "Evil up",
31124
+ [TrinketType.MISSING_POSTER] = "???",
31125
+ [TrinketType.BUTT_PENNY] = "Wealth of gas",
31126
+ [TrinketType.MYSTERIOUS_CANDY] = "Uh-oh!",
31127
+ [TrinketType.HOOK_WORM] = "Zip zoop!",
31128
+ [TrinketType.WHIP_WORM] = "Wooosh!",
31129
+ [TrinketType.BROKEN_ANKH] = "Eternal life?",
31130
+ [TrinketType.FISH_HEAD] = "It stinks",
31131
+ [TrinketType.PINKY_EYE] = "Poison shots",
31132
+ [TrinketType.PUSH_PIN] = "Piercing shots",
31133
+ [TrinketType.LIBERTY_CAP] = "Touch fuzzy, get dizzy",
31134
+ [TrinketType.UMBILICAL_CORD] = "Fetal protection",
31135
+ [TrinketType.CHILDS_HEART] = "It calls out to its brothers",
31136
+ [TrinketType.CURVED_HORN] = "DMG up",
31137
+ [TrinketType.RUSTED_KEY] = "It feels lucky?",
31138
+ [TrinketType.GOAT_HOOF] = "Speed up",
31139
+ [TrinketType.MOMS_PEARL] = "It emanates purity ",
31140
+ [TrinketType.CANCER] = "Yay, cancer!",
31141
+ [TrinketType.RED_PATCH] = "Your rage grows",
31142
+ [TrinketType.MATCH_STICK] = "Tastes like burning",
31143
+ [TrinketType.LUCKY_TOE] = "Luck up!",
31144
+ [TrinketType.CURSED_SKULL] = "Cursed?",
31145
+ [TrinketType.SAFETY_CAP] = "Don't swallow it",
31146
+ [TrinketType.ACE_OF_SPADES] = "Luck of the draw",
31147
+ [TrinketType.ISAACS_FORK] = "Consume thy enemy",
31148
+ [TrinketType.MISSING_PAGE] = "It glows with power",
31149
+ [TrinketType.BLOODY_PENNY] = "Wealth of health",
31150
+ [TrinketType.BURNT_PENNY] = "Wealth of chaos",
31151
+ [TrinketType.FLAT_PENNY] = "Wealth of answers",
31152
+ [TrinketType.COUNTERFEIT_PENNY] = "Wealth of wealth",
31153
+ [TrinketType.TICK] = "Well, that's not coming off",
31154
+ [TrinketType.ISAACS_HEAD] = "Dead friend",
31155
+ [TrinketType.MAGGYS_FAITH] = "Faith's reward",
31156
+ [TrinketType.JUDAS_TONGUE] = "Payment received ",
31157
+ [TrinketType.BLUE_BABYS_SOUL] = "Imaginary friend",
31158
+ [TrinketType.SAMSONS_LOCK] = "Your rage grows",
31159
+ [TrinketType.CAINS_EYE] = "May you see your destination",
31160
+ [TrinketType.EVES_BIRD_FOOT] = "Revenge from beyond",
31161
+ [TrinketType.LEFT_HAND] = "The left-hand path reaps dark rewards",
31162
+ [TrinketType.SHINY_ROCK] = "It shines for its brothers",
31163
+ [TrinketType.SAFETY_SCISSORS] = "Fuse cutter",
31164
+ [TrinketType.RAINBOW_WORM] = "Bleep bloop blop",
31165
+ [TrinketType.TAPE_WORM] = "Floooooooooop!",
31166
+ [TrinketType.LAZY_WORM] = "Pft",
31167
+ [TrinketType.CRACKED_DICE] = "You feel cursed... kinda.",
31168
+ [TrinketType.SUPER_MAGNET] = "It pulls",
31169
+ [TrinketType.FADED_POLAROID] = "You feel faded",
31170
+ [TrinketType.LOUSE] = "Itchy, tasty...",
31171
+ [TrinketType.BOBS_BLADDER] = "Creepy bombs",
31172
+ [TrinketType.WATCH_BATTERY] = "Lil charge",
31173
+ [TrinketType.BLASTING_CAP] = "Pop! Pop!",
31174
+ [TrinketType.STUD_FINDER] = "The ground below feels hollow...",
31175
+ [TrinketType.ERROR] = "Effect not found?",
31176
+ [TrinketType.POKER_CHIP] = "It's double down time!",
31177
+ [TrinketType.BLISTER] = "Bounce back!",
31178
+ [TrinketType.SECOND_HAND] = "Extended stat effect time!",
31179
+ [TrinketType.ENDLESS_NAMELESS] = "I'm stuck in a loop...",
31180
+ [TrinketType.BLACK_FEATHER] = "With darkness comes power",
31181
+ [TrinketType.BLIND_RAGE] = "Blind to damage",
31182
+ [TrinketType.GOLDEN_HORSE_SHOE] = "Feel lucky?",
31183
+ [TrinketType.STORE_KEY] = "Stores are open",
31184
+ [TrinketType.RIB_OF_GREED] = "Feels greedy",
31185
+ [TrinketType.KARMA] = "Karma up",
31186
+ [TrinketType.LIL_LARVA] = "The poop is moving...",
31187
+ [TrinketType.MOMS_LOCKET] = "You feel her love",
31188
+ [TrinketType.NO] = "Never again!",
31189
+ [TrinketType.CHILD_LEASH] = "Keep your friends close...",
31190
+ [TrinketType.BROWN_CAP] = "Fartoom!",
31191
+ [TrinketType.MECONIUM] = "Eww",
31192
+ [TrinketType.CRACKED_CROWN] = "Stat booster",
31193
+ [TrinketType.USED_DIAPER] = "You stink",
31194
+ [TrinketType.FISH_TAIL] = "It also stinks!",
31195
+ [TrinketType.BLACK_TOOTH] = "It looks dead",
31196
+ [TrinketType.OUROBOROS_WORM] = "Foop foop!",
31197
+ [TrinketType.TONSIL] = "Sick...",
31198
+ [TrinketType.NOSE_GOBLIN] = "Seems magic...",
31199
+ [TrinketType.SUPER_BALL] = "Boing!",
31200
+ [TrinketType.VIBRANT_BULB] = "It needs power",
31201
+ [TrinketType.DIM_BULB] = "I think it's broken",
31202
+ [TrinketType.FRAGMENTED_CARD] = "Double moon",
31203
+ [TrinketType.EQUALITY] = "=",
31204
+ [TrinketType.WISH_BONE] = "Make a wish",
31205
+ [TrinketType.BAG_LUNCH] = "I wonder what it is",
31206
+ [TrinketType.LOST_CORK] = "Uncorked",
31207
+ [TrinketType.CROW_HEART] = "Drain me",
31208
+ [TrinketType.WALNUT] = "That's a hard nut to crack!",
31209
+ [TrinketType.DUCT_TAPE] = "Stuck!",
31210
+ [TrinketType.SILVER_DOLLAR] = "Feels lucky...",
31211
+ [TrinketType.BLOODY_CROWN] = "Drips with blood...",
31212
+ [TrinketType.PAY_TO_WIN] = "...",
31213
+ [TrinketType.LOCUST_OF_WRATH] = "I bring War",
31214
+ [TrinketType.LOCUST_OF_PESTILENCE] = "I bring Pestilence",
31215
+ [TrinketType.LOCUST_OF_FAMINE] = "I bring Famine",
31216
+ [TrinketType.LOCUST_OF_DEATH] = "I bring Death",
31217
+ [TrinketType.LOCUST_OF_CONQUEST] = "I bring Conquest",
31218
+ [TrinketType.BAT_WING] = "They are growing...",
31219
+ [TrinketType.STEM_CELL] = "Regen!",
31220
+ [TrinketType.HAIRPIN] = "Danger charge",
31221
+ [TrinketType.WOODEN_CROSS] = "My faith protects me",
31222
+ [TrinketType.BUTTER] = "Can't hold it!",
31223
+ [TrinketType.FILIGREE_FEATHERS] = "Angelic spoils",
31224
+ [TrinketType.DOOR_STOP] = "Hold the door",
31225
+ [TrinketType.EXTENSION_CORD] = "Charged friends",
31226
+ [TrinketType.ROTTEN_PENNY] = "Wealth of flies",
31227
+ [TrinketType.BABY_BENDER] = "Feed them magic!",
31228
+ [TrinketType.FINGER_BONE] = "It looks brittle",
31229
+ [TrinketType.JAW_BREAKER] = "Don't chew on it",
31230
+ [TrinketType.CHEWED_PEN] = "It's leaking",
31231
+ [TrinketType.BLESSED_PENNY] = "Wealth of purity",
31232
+ [TrinketType.BROKEN_SYRINGE] = "Mystery medicine",
31233
+ [TrinketType.SHORT_FUSE] = "Faster explosions",
31234
+ [TrinketType.GIGANTE_BEAN] = "Mega farts",
31235
+ [TrinketType.LIGHTER] = "Watch the world burn",
31236
+ [TrinketType.BROKEN_PADLOCK] = "Bombs are key",
31237
+ [TrinketType.MYOSOTIS] = "Forget me not...",
31238
+ [TrinketType.M] = "t's broken9Reroll your dest ",
31239
+ [TrinketType.TEARDROP_CHARM] = "It feels lucky",
31240
+ [TrinketType.APPLE_OF_SODOM] = "It feels empty",
31241
+ [TrinketType.FORGOTTEN_LULLABY] = "Sing for your friends",
31242
+ [TrinketType.BETHS_FAITH] = "My faith protects me",
31243
+ [TrinketType.OLD_CAPACITOR] = "Voltage starving",
31244
+ [TrinketType.BRAIN_WORM] = "Ding!",
31245
+ [TrinketType.PERFECTION] = "Luck way up. Don't lose it!",
31246
+ [TrinketType.DEVILS_CROWN] = "His special customer",
31247
+ [TrinketType.CHARGED_PENNY] = "Wealth of power",
31248
+ [TrinketType.FRIENDSHIP_NECKLACE] = "Gather round",
31249
+ [TrinketType.PANIC_BUTTON] = "Push in case of emergency",
31250
+ [TrinketType.BLUE_KEY] = "Look between the rooms",
31251
+ [TrinketType.FLAT_FILE] = "No more spikes",
31252
+ [TrinketType.TELESCOPE_LENS] = "Seek the stars",
31253
+ [TrinketType.MOMS_LOCK] = "A piece of her love",
31254
+ [TrinketType.DICE_BAG] = "Bonus roll",
31255
+ [TrinketType.HOLY_CROWN] = "Walk the path of the saint",
31256
+ [TrinketType.MOTHERS_KISS] = "HP up",
31257
+ [TrinketType.TORN_CARD] = "Death awaits",
31258
+ [TrinketType.TORN_POCKET] = "A hole in your pocket",
31259
+ [TrinketType.GILDED_KEY] = "Less is more",
31260
+ [TrinketType.LUCKY_SACK] = "Free goodies!",
31261
+ [TrinketType.WICKED_CROWN] = "Walk the path of the wicked",
31262
+ [TrinketType.AZAZELS_STUMP] = "Unleash your inner demon",
31263
+ [TrinketType.DINGLE_BERRY] = "Oops!",
31264
+ [TrinketType.RING_CAP] = "Twice the bang!",
31265
+ [TrinketType.NUH_UH] = "Don't want!",
31266
+ [TrinketType.MODELING_CLAY] = "???",
31267
+ [TrinketType.POLISHED_BONE] = "Friends from beyond",
31268
+ [TrinketType.HOLLOW_HEART] = "A brittle blessing",
31269
+ [TrinketType.KIDS_DRAWING] = "Looks familiar...",
31270
+ [TrinketType.CRYSTAL_KEY] = "Call to the other side",
31271
+ [TrinketType.KEEPERS_BARGAIN] = "Money talks",
31272
+ [TrinketType.CURSED_PENNY] = "Wealth of misery",
31273
+ [TrinketType.YOUR_SOUL] = "Give it to me",
31274
+ [TrinketType.NUMBER_MAGNET] = "6",
31275
+ [TrinketType.STRANGE_KEY] = "What could it open?",
31276
+ [TrinketType.LIL_CLOT] = "Mini friend",
31277
+ [TrinketType.TEMPORARY_TATTOO] = "You feel braver",
31278
+ [TrinketType.SWALLOWED_M80] = "Bang!",
31279
+ [TrinketType.RC_REMOTE] = "Controllable buddies!",
31280
+ [TrinketType.FOUND_SOUL] = "Finally!",
31281
+ [TrinketType.EXPANSION_PACK] = "Fun extras",
31282
+ [TrinketType.BETHS_ESSENCE] = "Virtue's reward",
31283
+ [TrinketType.TWINS] = "I'm seeing double...",
31284
+ [TrinketType.ADOPTION_PAPERS] = "Give them a home",
31285
+ [TrinketType.CRICKET_LEG] = "Infested",
31286
+ [TrinketType.APOLLYONS_BEST_FRIEND] = "Attack buddy",
31287
+ [TrinketType.BROKEN_GLASSES] = "Double vision?",
31288
+ [TrinketType.ICE_CUBE] = "Stay frosty",
31289
+ [TrinketType.SIGIL_OF_BAPHOMET] = "Revel in death"
31290
+ }
31296
31291
  return ____exports
31297
31292
  end,
31298
- ["src.maps.trinketTypeToNameMap"] = function(...)
31299
- local ____lualib = require("lualib_bundle")
31300
- local __TS__New = ____lualib.__TS__New
31293
+ ["src.objects.trinketNames"] = function(...)
31301
31294
  local ____exports = {}
31302
- local ____ReadonlyMap = require("src.types.ReadonlyMap")
31303
- local ReadonlyMap = ____ReadonlyMap.ReadonlyMap
31295
+ local ____isaac_2Dtypescript_2Ddefinitions = require("lua_modules.isaac-typescript-definitions.dist.src.index")
31296
+ local TrinketType = ____isaac_2Dtypescript_2Ddefinitions.TrinketType
31304
31297
  ____exports.DEFAULT_TRINKET_NAME = "Unknown"
31305
- ____exports.TRINKET_TYPE_TO_NAME_MAP = __TS__New(ReadonlyMap, {
31306
- {1, "Swallowed Penny"},
31307
- {2, "Petrified Poop"},
31308
- {3, "AAA Battery"},
31309
- {4, "Broken Remote"},
31310
- {5, "Purple Heart"},
31311
- {6, "Broken Magnet"},
31312
- {7, "Rosary Bead"},
31313
- {8, "Cartridge"},
31314
- {9, "Pulse Worm"},
31315
- {10, "Wiggle Worm"},
31316
- {11, "Ring Worm"},
31317
- {12, "Flat Worm"},
31318
- {13, "Store Credit"},
31319
- {14, "Callus"},
31320
- {15, "Lucky Rock"},
31321
- {16, "Mom's Toenail"},
31322
- {17, "Black Lipstick"},
31323
- {18, "Bible Tract"},
31324
- {19, "Paper Clip"},
31325
- {20, "Monkey Paw"},
31326
- {21, "Mysterious Paper"},
31327
- {22, "Daemon's Tail"},
31328
- {23, "Missing Poster"},
31329
- {24, "Butt Penny"},
31330
- {25, "Mysterious Candy"},
31331
- {26, "Hook Worm"},
31332
- {27, "Whip Worm"},
31333
- {28, "Broken Ankh"},
31334
- {29, "Fish Head"},
31335
- {30, "Pinky Eye"},
31336
- {31, "Push Pin"},
31337
- {32, "Liberty Cap"},
31338
- {33, "Umbilical Cord"},
31339
- {34, "Child's Heart"},
31340
- {35, "Curved Horn"},
31341
- {36, "Rusted Key"},
31342
- {37, "Goat Hoof"},
31343
- {38, "Mom's Pearl"},
31344
- {39, "Cancer"},
31345
- {40, "Red Patch"},
31346
- {41, "Match Stick"},
31347
- {42, "Lucky Toe"},
31348
- {43, "Cursed Skull"},
31349
- {44, "Safety Cap"},
31350
- {45, "Ace of Spades"},
31351
- {46, "Isaac's Fork"},
31352
- {48, "A Missing Page"},
31353
- {49, "Bloody Penny"},
31354
- {50, "Burnt Penny"},
31355
- {51, "Flat Penny"},
31356
- {52, "Counterfeit Penny"},
31357
- {53, "Tick"},
31358
- {54, "Isaac's Head"},
31359
- {55, "Maggy's Faith"},
31360
- {56, "Judas' Tongue"},
31361
- {57, "???'s Soul"},
31362
- {58, "Samson's Lock"},
31363
- {59, "Cain's Eye"},
31364
- {60, "Eve's Bird Foot"},
31365
- {61, "The Left Hand"},
31366
- {62, "Shiny Rock"},
31367
- {63, "Safety Scissors"},
31368
- {64, "Rainbow Worm"},
31369
- {65, "Tape Worm"},
31370
- {66, "Lazy Worm"},
31371
- {67, "Cracked Dice"},
31372
- {68, "Super Magnet"},
31373
- {69, "Faded Polaroid"},
31374
- {70, "Louse"},
31375
- {71, "Bob's Bladder"},
31376
- {72, "Watch Battery"},
31377
- {73, "Blasting Cap"},
31378
- {74, "Stud Finder"},
31379
- {75, "Error"},
31380
- {76, "Poker Chip"},
31381
- {77, "Blister"},
31382
- {78, "Second Hand"},
31383
- {79, "Endless Nameless"},
31384
- {80, "Black Feather"},
31385
- {81, "Blind Rage"},
31386
- {82, "Golden Horse Shoe"},
31387
- {83, "Store Key"},
31388
- {84, "Rib of Greed"},
31389
- {85, "Karma"},
31390
- {86, "Lil Larva"},
31391
- {87, "Mom's Locket"},
31392
- {88, "NO!"},
31393
- {89, "Child Leash"},
31394
- {90, "Brown Cap"},
31395
- {91, "Meconium"},
31396
- {92, "Cracked Crown"},
31397
- {93, "Used Diaper"},
31398
- {94, "Fish Tail"},
31399
- {95, "Black Tooth"},
31400
- {96, "Ouroboros Worm"},
31401
- {97, "Tonsil"},
31402
- {98, "Nose Goblin"},
31403
- {99, "Super Ball"},
31404
- {100, "Vibrant Bulb"},
31405
- {101, "Dim Bulb"},
31406
- {102, "Fragmented Card"},
31407
- {103, "Equality!"},
31408
- {104, "Wish Bone"},
31409
- {105, "Bag Lunch"},
31410
- {106, "Lost Cork"},
31411
- {107, "Crow Heart"},
31412
- {108, "Walnut"},
31413
- {109, "Duct Tape"},
31414
- {110, "Silver Dollar"},
31415
- {111, "Bloody Crown"},
31416
- {112, "Pay To Win"},
31417
- {113, "Locust of War"},
31418
- {114, "Locust of Pestilence"},
31419
- {115, "Locust of Famine"},
31420
- {116, "Locust of Death"},
31421
- {117, "Locust of Conquest"},
31422
- {118, "Bat Wing"},
31423
- {119, "Stem Cell"},
31424
- {120, "Hairpin"},
31425
- {121, "Wooden Cross"},
31426
- {122, "Butter!"},
31427
- {123, "Filigree Feather"},
31428
- {124, "Door Stop"},
31429
- {125, "Extension Cord"},
31430
- {126, "Rotten Penny"},
31431
- {127, "Baby-Bender"},
31432
- {128, "Finger Bone"},
31433
- {129, "Jawbreaker"},
31434
- {130, "Chewed Pen"},
31435
- {131, "Blessed Penny"},
31436
- {132, "Broken Syringe"},
31437
- {133, "Short Fuse"},
31438
- {134, "Gigante Bean"},
31439
- {135, "A Lighter"},
31440
- {136, "Broken Padlock"},
31441
- {137, "Myosotis"},
31442
- {138, " 'M"},
31443
- {139, "Teardrop Charm"},
31444
- {140, "Apple of Sodom"},
31445
- {141, "Forgotten Lullaby"},
31446
- {142, "Beth's Faith"},
31447
- {143, "Old Capacitor"},
31448
- {144, "Brain Worm"},
31449
- {145, "Perfection"},
31450
- {146, "Devil's Crown"},
31451
- {147, "Charged Penny"},
31452
- {148, "Friendship Necklace"},
31453
- {149, "Panic Button"},
31454
- {150, "Blue Key"},
31455
- {151, "Flat File"},
31456
- {152, "Telescope Lens"},
31457
- {153, "Mom's Lock"},
31458
- {154, "Dice Bag"},
31459
- {155, "Holy Crown"},
31460
- {156, "Mother's Kiss"},
31461
- {157, "Torn Card"},
31462
- {158, "Torn Pocket"},
31463
- {159, "Gilded Key"},
31464
- {160, "Lucky Sack"},
31465
- {161, "Wicked Crown"},
31466
- {162, "Azazel's Stump"},
31467
- {163, "Dingle Berry"},
31468
- {164, "Ring Cap"},
31469
- {165, "Nuh Uh!"},
31470
- {166, "Modeling Clay"},
31471
- {167, "Polished Bone"},
31472
- {168, "Hollow Heart"},
31473
- {169, "Kid's Drawing"},
31474
- {170, "Crystal Key"},
31475
- {171, "Keeper's Bargain"},
31476
- {172, "Cursed Penny"},
31477
- {173, "Your Soul"},
31478
- {174, "Number Magnet"},
31479
- {175, "Strange Key"},
31480
- {176, "Lil Clot"},
31481
- {177, "Temporary Tattoo"},
31482
- {178, "Swallowed M80"},
31483
- {179, "RC Remote"},
31484
- {180, "Found Soul"},
31485
- {181, "Expansion Pack"},
31486
- {182, "Beth's Essence"},
31487
- {183, "The Twins"},
31488
- {184, "Adoption Papers"},
31489
- {185, "Cricket Leg"},
31490
- {186, "Apollyon's Best Friend"},
31491
- {187, "Broken Glasses"},
31492
- {188, "Ice Cube"},
31493
- {189, "Sigil of Baphomet"}
31494
- })
31298
+ ____exports.TRINKET_NAMES = {
31299
+ [TrinketType.NULL] = ____exports.DEFAULT_TRINKET_NAME,
31300
+ [TrinketType.SWALLOWED_PENNY] = "Swallowed Penny",
31301
+ [TrinketType.PETRIFIED_POOP] = "Petrified Poop",
31302
+ [TrinketType.AAA_BATTERY] = "AAA Battery",
31303
+ [TrinketType.BROKEN_REMOTE] = "Broken Remote",
31304
+ [TrinketType.PURPLE_HEART] = "Purple Heart",
31305
+ [TrinketType.BROKEN_MAGNET] = "Broken Magnet",
31306
+ [TrinketType.ROSARY_BEAD] = "Rosary Bead",
31307
+ [TrinketType.CARTRIDGE] = "Cartridge",
31308
+ [TrinketType.PULSE_WORM] = "Pulse Worm",
31309
+ [TrinketType.WIGGLE_WORM] = "Wiggle Worm",
31310
+ [TrinketType.RING_WORM] = "Ring Worm",
31311
+ [TrinketType.FLAT_WORM] = "Flat Worm",
31312
+ [TrinketType.STORE_CREDIT] = "Store Credit",
31313
+ [TrinketType.CALLUS] = "Callus",
31314
+ [TrinketType.LUCKY_ROCK] = "Lucky Rock",
31315
+ [TrinketType.MOMS_TOENAIL] = "Mom's Toenail",
31316
+ [TrinketType.BLACK_LIPSTICK] = "Black Lipstick",
31317
+ [TrinketType.BIBLE_TRACT] = "Bible Tract",
31318
+ [TrinketType.PAPER_CLIP] = "Paper Clip",
31319
+ [TrinketType.MONKEY_PAW] = "Monkey Paw",
31320
+ [TrinketType.MYSTERIOUS_PAPER] = "Mysterious Paper",
31321
+ [TrinketType.DAEMONS_TAIL] = "Daemon's Tail",
31322
+ [TrinketType.MISSING_POSTER] = "Missing Poster",
31323
+ [TrinketType.BUTT_PENNY] = "Butt Penny",
31324
+ [TrinketType.MYSTERIOUS_CANDY] = "Mysterious Candy",
31325
+ [TrinketType.HOOK_WORM] = "Hook Worm",
31326
+ [TrinketType.WHIP_WORM] = "Whip Worm",
31327
+ [TrinketType.BROKEN_ANKH] = "Broken Ankh",
31328
+ [TrinketType.FISH_HEAD] = "Fish Head",
31329
+ [TrinketType.PINKY_EYE] = "Pinky Eye",
31330
+ [TrinketType.PUSH_PIN] = "Push Pin",
31331
+ [TrinketType.LIBERTY_CAP] = "Liberty Cap",
31332
+ [TrinketType.UMBILICAL_CORD] = "Umbilical Cord",
31333
+ [TrinketType.CHILDS_HEART] = "Child's Heart",
31334
+ [TrinketType.CURVED_HORN] = "Curved Horn",
31335
+ [TrinketType.RUSTED_KEY] = "Rusted Key",
31336
+ [TrinketType.GOAT_HOOF] = "Goat Hoof",
31337
+ [TrinketType.MOMS_PEARL] = "Mom's Pearl",
31338
+ [TrinketType.CANCER] = "Cancer",
31339
+ [TrinketType.RED_PATCH] = "Red Patch",
31340
+ [TrinketType.MATCH_STICK] = "Match Stick",
31341
+ [TrinketType.LUCKY_TOE] = "Lucky Toe",
31342
+ [TrinketType.CURSED_SKULL] = "Cursed Skull",
31343
+ [TrinketType.SAFETY_CAP] = "Safety Cap",
31344
+ [TrinketType.ACE_OF_SPADES] = "Ace of Spades",
31345
+ [TrinketType.ISAACS_FORK] = "Isaac's Fork",
31346
+ [TrinketType.MISSING_PAGE] = "A Missing Page",
31347
+ [TrinketType.BLOODY_PENNY] = "Bloody Penny",
31348
+ [TrinketType.BURNT_PENNY] = "Burnt Penny",
31349
+ [TrinketType.FLAT_PENNY] = "Flat Penny",
31350
+ [TrinketType.COUNTERFEIT_PENNY] = "Counterfeit Penny",
31351
+ [TrinketType.TICK] = "Tick",
31352
+ [TrinketType.ISAACS_HEAD] = "Isaac's Head",
31353
+ [TrinketType.MAGGYS_FAITH] = "Maggy's Faith",
31354
+ [TrinketType.JUDAS_TONGUE] = "Judas' Tongue",
31355
+ [TrinketType.BLUE_BABYS_SOUL] = "???'s Soul",
31356
+ [TrinketType.SAMSONS_LOCK] = "Samson's Lock",
31357
+ [TrinketType.CAINS_EYE] = "Cain's Eye",
31358
+ [TrinketType.EVES_BIRD_FOOT] = "Eve's Bird Foot",
31359
+ [TrinketType.LEFT_HAND] = "The Left Hand",
31360
+ [TrinketType.SHINY_ROCK] = "Shiny Rock",
31361
+ [TrinketType.SAFETY_SCISSORS] = "Safety Scissors",
31362
+ [TrinketType.RAINBOW_WORM] = "Rainbow Worm",
31363
+ [TrinketType.TAPE_WORM] = "Tape Worm",
31364
+ [TrinketType.LAZY_WORM] = "Lazy Worm",
31365
+ [TrinketType.CRACKED_DICE] = "Cracked Dice",
31366
+ [TrinketType.SUPER_MAGNET] = "Super Magnet",
31367
+ [TrinketType.FADED_POLAROID] = "Faded Polaroid",
31368
+ [TrinketType.LOUSE] = "Louse",
31369
+ [TrinketType.BOBS_BLADDER] = "Bob's Bladder",
31370
+ [TrinketType.WATCH_BATTERY] = "Watch Battery",
31371
+ [TrinketType.BLASTING_CAP] = "Blasting Cap",
31372
+ [TrinketType.STUD_FINDER] = "Stud Finder",
31373
+ [TrinketType.ERROR] = "Error",
31374
+ [TrinketType.POKER_CHIP] = "Poker Chip",
31375
+ [TrinketType.BLISTER] = "Blister",
31376
+ [TrinketType.SECOND_HAND] = "Second Hand",
31377
+ [TrinketType.ENDLESS_NAMELESS] = "Endless Nameless",
31378
+ [TrinketType.BLACK_FEATHER] = "Black Feather",
31379
+ [TrinketType.BLIND_RAGE] = "Blind Rage",
31380
+ [TrinketType.GOLDEN_HORSE_SHOE] = "Golden Horse Shoe",
31381
+ [TrinketType.STORE_KEY] = "Store Key",
31382
+ [TrinketType.RIB_OF_GREED] = "Rib of Greed",
31383
+ [TrinketType.KARMA] = "Karma",
31384
+ [TrinketType.LIL_LARVA] = "Lil Larva",
31385
+ [TrinketType.MOMS_LOCKET] = "Mom's Locket",
31386
+ [TrinketType.NO] = "NO!",
31387
+ [TrinketType.CHILD_LEASH] = "Child Leash",
31388
+ [TrinketType.BROWN_CAP] = "Brown Cap",
31389
+ [TrinketType.MECONIUM] = "Meconium",
31390
+ [TrinketType.CRACKED_CROWN] = "Cracked Crown",
31391
+ [TrinketType.USED_DIAPER] = "Used Diaper",
31392
+ [TrinketType.FISH_TAIL] = "Fish Tail",
31393
+ [TrinketType.BLACK_TOOTH] = "Black Tooth",
31394
+ [TrinketType.OUROBOROS_WORM] = "Ouroboros Worm",
31395
+ [TrinketType.TONSIL] = "Tonsil",
31396
+ [TrinketType.NOSE_GOBLIN] = "Nose Goblin",
31397
+ [TrinketType.SUPER_BALL] = "Super Ball",
31398
+ [TrinketType.VIBRANT_BULB] = "Vibrant Bulb",
31399
+ [TrinketType.DIM_BULB] = "Dim Bulb",
31400
+ [TrinketType.FRAGMENTED_CARD] = "Fragmented Card",
31401
+ [TrinketType.EQUALITY] = "Equality!",
31402
+ [TrinketType.WISH_BONE] = "Wish Bone",
31403
+ [TrinketType.BAG_LUNCH] = "Bag Lunch",
31404
+ [TrinketType.LOST_CORK] = "Lost Cork",
31405
+ [TrinketType.CROW_HEART] = "Crow Heart",
31406
+ [TrinketType.WALNUT] = "Walnut",
31407
+ [TrinketType.DUCT_TAPE] = "Duct Tape",
31408
+ [TrinketType.SILVER_DOLLAR] = "Silver Dollar",
31409
+ [TrinketType.BLOODY_CROWN] = "Bloody Crown",
31410
+ [TrinketType.PAY_TO_WIN] = "Pay To Win",
31411
+ [TrinketType.LOCUST_OF_WRATH] = "Locust of War",
31412
+ [TrinketType.LOCUST_OF_PESTILENCE] = "Locust of Pestilence",
31413
+ [TrinketType.LOCUST_OF_FAMINE] = "Locust of Famine",
31414
+ [TrinketType.LOCUST_OF_DEATH] = "Locust of Death",
31415
+ [TrinketType.LOCUST_OF_CONQUEST] = "Locust of Conquest",
31416
+ [TrinketType.BAT_WING] = "Bat Wing",
31417
+ [TrinketType.STEM_CELL] = "Stem Cell",
31418
+ [TrinketType.HAIRPIN] = "Hairpin",
31419
+ [TrinketType.WOODEN_CROSS] = "Wooden Cross",
31420
+ [TrinketType.BUTTER] = "Butter!",
31421
+ [TrinketType.FILIGREE_FEATHERS] = "Filigree Feather",
31422
+ [TrinketType.DOOR_STOP] = "Door Stop",
31423
+ [TrinketType.EXTENSION_CORD] = "Extension Cord",
31424
+ [TrinketType.ROTTEN_PENNY] = "Rotten Penny",
31425
+ [TrinketType.BABY_BENDER] = "Baby-Bender",
31426
+ [TrinketType.FINGER_BONE] = "Finger Bone",
31427
+ [TrinketType.JAW_BREAKER] = "Jawbreaker",
31428
+ [TrinketType.CHEWED_PEN] = "Chewed Pen",
31429
+ [TrinketType.BLESSED_PENNY] = "Blessed Penny",
31430
+ [TrinketType.BROKEN_SYRINGE] = "Broken Syringe",
31431
+ [TrinketType.SHORT_FUSE] = "Short Fuse",
31432
+ [TrinketType.GIGANTE_BEAN] = "Gigante Bean",
31433
+ [TrinketType.LIGHTER] = "A Lighter",
31434
+ [TrinketType.BROKEN_PADLOCK] = "Broken Padlock",
31435
+ [TrinketType.MYOSOTIS] = "Myosotis",
31436
+ [TrinketType.M] = " 'M",
31437
+ [TrinketType.TEARDROP_CHARM] = "Teardrop Charm",
31438
+ [TrinketType.APPLE_OF_SODOM] = "Apple of Sodom",
31439
+ [TrinketType.FORGOTTEN_LULLABY] = "Forgotten Lullaby",
31440
+ [TrinketType.BETHS_FAITH] = "Beth's Faith",
31441
+ [TrinketType.OLD_CAPACITOR] = "Old Capacitor",
31442
+ [TrinketType.BRAIN_WORM] = "Brain Worm",
31443
+ [TrinketType.PERFECTION] = "Perfection",
31444
+ [TrinketType.DEVILS_CROWN] = "Devil's Crown",
31445
+ [TrinketType.CHARGED_PENNY] = "Charged Penny",
31446
+ [TrinketType.FRIENDSHIP_NECKLACE] = "Friendship Necklace",
31447
+ [TrinketType.PANIC_BUTTON] = "Panic Button",
31448
+ [TrinketType.BLUE_KEY] = "Blue Key",
31449
+ [TrinketType.FLAT_FILE] = "Flat File",
31450
+ [TrinketType.TELESCOPE_LENS] = "Telescope Lens",
31451
+ [TrinketType.MOMS_LOCK] = "Mom's Lock",
31452
+ [TrinketType.DICE_BAG] = "Dice Bag",
31453
+ [TrinketType.HOLY_CROWN] = "Holy Crown",
31454
+ [TrinketType.MOTHERS_KISS] = "Mother's Kiss",
31455
+ [TrinketType.TORN_CARD] = "Torn Card",
31456
+ [TrinketType.TORN_POCKET] = "Torn Pocket",
31457
+ [TrinketType.GILDED_KEY] = "Gilded Key",
31458
+ [TrinketType.LUCKY_SACK] = "Lucky Sack",
31459
+ [TrinketType.WICKED_CROWN] = "Wicked Crown",
31460
+ [TrinketType.AZAZELS_STUMP] = "Azazel's Stump",
31461
+ [TrinketType.DINGLE_BERRY] = "Dingle Berry",
31462
+ [TrinketType.RING_CAP] = "Ring Cap",
31463
+ [TrinketType.NUH_UH] = "Nuh Uh!",
31464
+ [TrinketType.MODELING_CLAY] = "Modeling Clay",
31465
+ [TrinketType.POLISHED_BONE] = "Polished Bone",
31466
+ [TrinketType.HOLLOW_HEART] = "Hollow Heart",
31467
+ [TrinketType.KIDS_DRAWING] = "Kid's Drawing",
31468
+ [TrinketType.CRYSTAL_KEY] = "Crystal Key",
31469
+ [TrinketType.KEEPERS_BARGAIN] = "Keeper's Bargain",
31470
+ [TrinketType.CURSED_PENNY] = "Cursed Penny",
31471
+ [TrinketType.YOUR_SOUL] = "Your Soul",
31472
+ [TrinketType.NUMBER_MAGNET] = "Number Magnet",
31473
+ [TrinketType.STRANGE_KEY] = "Strange Key",
31474
+ [TrinketType.LIL_CLOT] = "Lil Clot",
31475
+ [TrinketType.TEMPORARY_TATTOO] = "Temporary Tattoo",
31476
+ [TrinketType.SWALLOWED_M80] = "Swallowed M80",
31477
+ [TrinketType.RC_REMOTE] = "RC Remote",
31478
+ [TrinketType.FOUND_SOUL] = "Found Soul",
31479
+ [TrinketType.EXPANSION_PACK] = "Expansion Pack",
31480
+ [TrinketType.BETHS_ESSENCE] = "Beth's Essence",
31481
+ [TrinketType.TWINS] = "The Twins",
31482
+ [TrinketType.ADOPTION_PAPERS] = "Adoption Papers",
31483
+ [TrinketType.CRICKET_LEG] = "Cricket Leg",
31484
+ [TrinketType.APOLLYONS_BEST_FRIEND] = "Apollyon's Best Friend",
31485
+ [TrinketType.BROKEN_GLASSES] = "Broken Glasses",
31486
+ [TrinketType.ICE_CUBE] = "Ice Cube",
31487
+ [TrinketType.SIGIL_OF_BAPHOMET] = "Sigil of Baphomet"
31488
+ }
31495
31489
  return ____exports
31496
31490
  end,
31497
31491
  ["src.functions.trinkets"] = function(...)
@@ -31507,12 +31501,12 @@ local ____constantsFirstLast = require("src.core.constantsFirstLast")
31507
31501
  local LAST_VANILLA_TRINKET_TYPE = ____constantsFirstLast.LAST_VANILLA_TRINKET_TYPE
31508
31502
  local ____MysteriousPaperEffect = require("src.enums.MysteriousPaperEffect")
31509
31503
  local MysteriousPaperEffect = ____MysteriousPaperEffect.MysteriousPaperEffect
31510
- local ____trinketDescriptionMap = require("src.maps.trinketDescriptionMap")
31511
- local DEFAULT_TRINKET_DESCRIPTION = ____trinketDescriptionMap.DEFAULT_TRINKET_DESCRIPTION
31512
- local TRINKET_DESCRIPTION_MAP = ____trinketDescriptionMap.TRINKET_DESCRIPTION_MAP
31513
- local ____trinketTypeToNameMap = require("src.maps.trinketTypeToNameMap")
31514
- local DEFAULT_TRINKET_NAME = ____trinketTypeToNameMap.DEFAULT_TRINKET_NAME
31515
- local TRINKET_TYPE_TO_NAME_MAP = ____trinketTypeToNameMap.TRINKET_TYPE_TO_NAME_MAP
31504
+ local ____trinketDescriptions = require("src.objects.trinketDescriptions")
31505
+ local DEFAULT_TRINKET_DESCRIPTION = ____trinketDescriptions.DEFAULT_TRINKET_DESCRIPTION
31506
+ local TRINKET_DESCRIPTIONS = ____trinketDescriptions.TRINKET_DESCRIPTIONS
31507
+ local ____trinketNames = require("src.objects.trinketNames")
31508
+ local DEFAULT_TRINKET_NAME = ____trinketNames.DEFAULT_TRINKET_NAME
31509
+ local TRINKET_NAMES = ____trinketNames.TRINKET_NAMES
31516
31510
  local ____entities = require("src.functions.entities")
31517
31511
  local getEntityID = ____entities.getEntityID
31518
31512
  local ____enums = require("src.functions.enums")
@@ -31551,7 +31545,7 @@ function ____exports.getNormalTrinketType(self, trinketType)
31551
31545
  return ____exports.isGoldenTrinketType(nil, trinketType) and asNumber(nil, trinketType) - GOLDEN_TRINKET_ADJUSTMENT or trinketType
31552
31546
  end
31553
31547
  function ____exports.getTrinketDescription(self, trinketType)
31554
- local trinketDescription = TRINKET_DESCRIPTION_MAP:get(trinketType)
31548
+ local trinketDescription = TRINKET_DESCRIPTIONS[trinketType]
31555
31549
  if trinketDescription ~= nil then
31556
31550
  return trinketDescription
31557
31551
  end
@@ -31569,7 +31563,7 @@ function ____exports.getTrinketGfxFilename(self, trinketType)
31569
31563
  return itemConfigItem.GfxFileName
31570
31564
  end
31571
31565
  function ____exports.getTrinketName(self, trinketType)
31572
- local trinketName = TRINKET_TYPE_TO_NAME_MAP:get(trinketType)
31566
+ local trinketName = TRINKET_NAMES[trinketType]
31573
31567
  if trinketName ~= nil then
31574
31568
  return trinketName
31575
31569
  end
@@ -33404,7 +33398,6 @@ function getPillEffectsOfType(self, matchingPillEffectType)
33404
33398
  )
33405
33399
  end
33406
33400
  ____exports.PILL_EFFECT_TYPE_TO_PILL_EFFECTS = {
33407
- [ItemConfigPillEffectType.NULL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NULL),
33408
33401
  [ItemConfigPillEffectType.POSITIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.POSITIVE),
33409
33402
  [ItemConfigPillEffectType.NEGATIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEGATIVE),
33410
33403
  [ItemConfigPillEffectType.NEUTRAL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEUTRAL),
@@ -50239,32 +50232,25 @@ return ____exports
50239
50232
  end,
50240
50233
  ["src.maps.collectibleNameToTypeMap"] = function(...)
50241
50234
  local ____lualib = require("lualib_bundle")
50242
- local __TS__Spread = ____lualib.__TS__Spread
50243
- local __TS__ArrayMap = ____lualib.__TS__ArrayMap
50235
+ local Map = ____lualib.Map
50244
50236
  local __TS__New = ____lualib.__TS__New
50237
+ local __TS__ObjectEntries = ____lualib.__TS__ObjectEntries
50245
50238
  local ____exports = {}
50246
50239
  local ____string = require("src.functions.string")
50247
50240
  local removeNonAlphanumericCharacters = ____string.removeNonAlphanumericCharacters
50248
- local ____ReadonlyMap = require("src.types.ReadonlyMap")
50249
- local ReadonlyMap = ____ReadonlyMap.ReadonlyMap
50250
- local ____collectibleTypeToNameMap = require("src.maps.collectibleTypeToNameMap")
50251
- local COLLECTIBLE_TYPE_TO_NAME_MAP = ____collectibleTypeToNameMap.COLLECTIBLE_TYPE_TO_NAME_MAP
50252
- ____exports.COLLECTIBLE_NAME_TO_TYPE_MAP = __TS__New(
50253
- ReadonlyMap,
50254
- __TS__ArrayMap(
50255
- {__TS__Spread(COLLECTIBLE_TYPE_TO_NAME_MAP:entries())},
50256
- function(____, ____bindingPattern0)
50257
- local collectibleName
50258
- local collectibleType
50259
- collectibleType = ____bindingPattern0[1]
50260
- collectibleName = ____bindingPattern0[2]
50261
- return {
50262
- removeNonAlphanumericCharacters(nil, collectibleName),
50263
- collectibleType
50264
- }
50265
- end
50266
- )
50267
- )
50241
+ local ____collectibleNames = require("src.objects.collectibleNames")
50242
+ local COLLECTIBLE_NAMES = ____collectibleNames.COLLECTIBLE_NAMES
50243
+ ____exports.COLLECTIBLE_NAME_TO_TYPE_MAP = (function()
50244
+ local collectibleNameToTypeMap = __TS__New(Map)
50245
+ for ____, ____value in ipairs(__TS__ObjectEntries(COLLECTIBLE_NAMES)) do
50246
+ local collectibleTypeString = ____value[1]
50247
+ local name = ____value[2]
50248
+ local collectibleType = collectibleTypeString
50249
+ local simpleString = removeNonAlphanumericCharacters(nil, name)
50250
+ collectibleNameToTypeMap:set(simpleString, collectibleType)
50251
+ end
50252
+ return collectibleNameToTypeMap
50253
+ end)(nil)
50268
50254
  return ____exports
50269
50255
  end,
50270
50256
  ["src.maps.pillNameToEffectMap"] = function(...)
@@ -50409,17 +50395,18 @@ return ____exports
50409
50395
  local ____lualib = require("lualib_bundle")
50410
50396
  local Map = ____lualib.Map
50411
50397
  local __TS__New = ____lualib.__TS__New
50412
- local __TS__Iterator = ____lualib.__TS__Iterator
50398
+ local __TS__ObjectEntries = ____lualib.__TS__ObjectEntries
50413
50399
  local ____exports = {}
50414
50400
  local ____string = require("src.functions.string")
50415
50401
  local removeNonAlphanumericCharacters = ____string.removeNonAlphanumericCharacters
50416
- local ____trinketTypeToNameMap = require("src.maps.trinketTypeToNameMap")
50417
- local TRINKET_TYPE_TO_NAME_MAP = ____trinketTypeToNameMap.TRINKET_TYPE_TO_NAME_MAP
50402
+ local ____trinketNames = require("src.objects.trinketNames")
50403
+ local TRINKET_NAMES = ____trinketNames.TRINKET_NAMES
50418
50404
  ____exports.TRINKET_NAME_TO_TYPE_MAP = (function()
50419
50405
  local trinketNameToTypeMap = __TS__New(Map)
50420
- for ____, ____value in __TS__Iterator(TRINKET_TYPE_TO_NAME_MAP) do
50421
- local trinketType = ____value[1]
50406
+ for ____, ____value in ipairs(__TS__ObjectEntries(TRINKET_NAMES)) do
50407
+ local trinketTypeString = ____value[1]
50422
50408
  local name = ____value[2]
50409
+ local trinketType = trinketTypeString
50423
50410
  local simpleString = removeNonAlphanumericCharacters(nil, name)
50424
50411
  trinketNameToTypeMap:set(simpleString, trinketType)
50425
50412
  end