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.
- package/dist/index.rollup.d.ts +2 -2
- package/dist/isaacscript-common.lua +1889 -1902
- package/dist/src/functions/collectibles.d.ts.map +1 -1
- package/dist/src/functions/collectibles.lua +8 -8
- package/dist/src/functions/frames.lua +2 -2
- package/dist/src/functions/trinkets.d.ts.map +1 -1
- package/dist/src/functions/trinkets.lua +8 -8
- package/dist/src/maps/collectibleNameToTypeMap.d.ts +3 -2
- package/dist/src/maps/collectibleNameToTypeMap.d.ts.map +1 -1
- package/dist/src/maps/collectibleNameToTypeMap.lua +16 -23
- package/dist/src/maps/trinketNameToTypeMap.d.ts +1 -1
- package/dist/src/maps/trinketNameToTypeMap.d.ts.map +1 -1
- package/dist/src/maps/trinketNameToTypeMap.lua +7 -6
- package/dist/src/objects/collectibleDescriptions.d.ts +727 -0
- package/dist/src/objects/collectibleDescriptions.d.ts.map +1 -0
- package/dist/src/objects/collectibleDescriptions.lua +730 -0
- package/dist/src/objects/collectibleNames.d.ts +731 -0
- package/dist/src/objects/collectibleNames.d.ts.map +1 -0
- package/dist/src/objects/collectibleNames.lua +732 -0
- package/dist/src/objects/pillEffectTypeToPillEffects.d.ts +0 -1
- package/dist/src/objects/pillEffectTypeToPillEffects.d.ts.map +1 -1
- package/dist/src/objects/pillEffectTypeToPillEffects.lua +0 -1
- package/dist/src/objects/trinketDescriptions.d.ts +194 -0
- package/dist/src/objects/trinketDescriptions.d.ts.map +1 -0
- package/dist/src/objects/trinketDescriptions.lua +197 -0
- package/dist/src/objects/trinketNames.d.ts +198 -0
- package/dist/src/objects/trinketNames.d.ts.map +1 -0
- package/dist/src/objects/trinketNames.lua +199 -0
- package/package.json +2 -2
- package/src/functions/collectibles.ts +10 -7
- package/src/functions/frames.ts +2 -2
- package/src/functions/trinkets.ts +10 -11
- package/src/maps/collectibleNameToTypeMap.ts +20 -11
- package/src/maps/trinketNameToTypeMap.ts +4 -3
- package/src/objects/collectibleDescriptions.ts +743 -0
- package/src/objects/collectibleNames.ts +744 -0
- package/src/objects/pillEffectTypeToPillEffects.ts +0 -5
- package/src/objects/trinketDescriptions.ts +199 -0
- package/src/objects/trinketNames.ts +201 -0
- package/dist/src/maps/collectibleDescriptionMap.d.ts +0 -10
- package/dist/src/maps/collectibleDescriptionMap.d.ts.map +0 -1
- package/dist/src/maps/collectibleDescriptionMap.lua +0 -733
- package/dist/src/maps/collectibleTypeToNameMap.d.ts +0 -12
- package/dist/src/maps/collectibleTypeToNameMap.d.ts.map +0 -1
- package/dist/src/maps/collectibleTypeToNameMap.lua +0 -735
- package/dist/src/maps/trinketDescriptionMap.d.ts +0 -10
- package/dist/src/maps/trinketDescriptionMap.d.ts.map +0 -1
- package/dist/src/maps/trinketDescriptionMap.lua +0 -201
- package/dist/src/maps/trinketTypeToNameMap.d.ts +0 -12
- package/dist/src/maps/trinketTypeToNameMap.d.ts.map +0 -1
- package/dist/src/maps/trinketTypeToNameMap.lua +0 -203
- package/src/maps/collectibleDescriptionMap.ts +0 -738
- package/src/maps/collectibleTypeToNameMap.ts +0 -738
- package/src/maps/trinketDescriptionMap.ts +0 -203
- package/src/maps/trinketTypeToNameMap.ts +0 -203
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common
|
|
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
|
|
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
|
|
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.
|
|
23297
|
-
local ____lualib = require("lualib_bundle")
|
|
23298
|
-
local Map = ____lualib.Map
|
|
23292
|
+
["src.objects.collectibleDescriptions"] = function(...)
|
|
23299
23293
|
local ____exports = {}
|
|
23300
|
-
|
|
23301
|
-
|
|
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.
|
|
23311
|
-
|
|
23312
|
-
|
|
23313
|
-
|
|
23314
|
-
|
|
23315
|
-
|
|
23316
|
-
|
|
23317
|
-
|
|
23318
|
-
|
|
23319
|
-
|
|
23320
|
-
|
|
23321
|
-
|
|
23322
|
-
|
|
23323
|
-
|
|
23324
|
-
|
|
23325
|
-
|
|
23326
|
-
|
|
23327
|
-
|
|
23328
|
-
|
|
23329
|
-
|
|
23330
|
-
|
|
23331
|
-
|
|
23332
|
-
|
|
23333
|
-
|
|
23334
|
-
|
|
23335
|
-
|
|
23336
|
-
|
|
23337
|
-
|
|
23338
|
-
|
|
23339
|
-
|
|
23340
|
-
|
|
23341
|
-
|
|
23342
|
-
|
|
23343
|
-
|
|
23344
|
-
|
|
23345
|
-
|
|
23346
|
-
|
|
23347
|
-
|
|
23348
|
-
|
|
23349
|
-
|
|
23350
|
-
|
|
23351
|
-
|
|
23352
|
-
|
|
23353
|
-
|
|
23354
|
-
|
|
23355
|
-
|
|
23356
|
-
|
|
23357
|
-
|
|
23358
|
-
|
|
23359
|
-
|
|
23360
|
-
|
|
23361
|
-
|
|
23362
|
-
|
|
23363
|
-
|
|
23364
|
-
|
|
23365
|
-
|
|
23366
|
-
|
|
23367
|
-
|
|
23368
|
-
|
|
23369
|
-
|
|
23370
|
-
|
|
23371
|
-
|
|
23372
|
-
|
|
23373
|
-
|
|
23374
|
-
|
|
23375
|
-
|
|
23376
|
-
|
|
23377
|
-
|
|
23378
|
-
|
|
23379
|
-
|
|
23380
|
-
|
|
23381
|
-
|
|
23382
|
-
|
|
23383
|
-
|
|
23384
|
-
|
|
23385
|
-
|
|
23386
|
-
|
|
23387
|
-
|
|
23388
|
-
|
|
23389
|
-
|
|
23390
|
-
|
|
23391
|
-
|
|
23392
|
-
|
|
23393
|
-
|
|
23394
|
-
|
|
23395
|
-
|
|
23396
|
-
|
|
23397
|
-
|
|
23398
|
-
|
|
23399
|
-
|
|
23400
|
-
|
|
23401
|
-
|
|
23402
|
-
|
|
23403
|
-
|
|
23404
|
-
|
|
23405
|
-
|
|
23406
|
-
|
|
23407
|
-
|
|
23408
|
-
|
|
23409
|
-
|
|
23410
|
-
|
|
23411
|
-
|
|
23412
|
-
|
|
23413
|
-
|
|
23414
|
-
|
|
23415
|
-
|
|
23416
|
-
|
|
23417
|
-
|
|
23418
|
-
|
|
23419
|
-
|
|
23420
|
-
|
|
23421
|
-
|
|
23422
|
-
|
|
23423
|
-
|
|
23424
|
-
|
|
23425
|
-
|
|
23426
|
-
|
|
23427
|
-
|
|
23428
|
-
|
|
23429
|
-
|
|
23430
|
-
|
|
23431
|
-
|
|
23432
|
-
|
|
23433
|
-
|
|
23434
|
-
|
|
23435
|
-
|
|
23436
|
-
|
|
23437
|
-
|
|
23438
|
-
|
|
23439
|
-
|
|
23440
|
-
|
|
23441
|
-
|
|
23442
|
-
|
|
23443
|
-
|
|
23444
|
-
|
|
23445
|
-
|
|
23446
|
-
|
|
23447
|
-
|
|
23448
|
-
|
|
23449
|
-
|
|
23450
|
-
|
|
23451
|
-
|
|
23452
|
-
|
|
23453
|
-
|
|
23454
|
-
|
|
23455
|
-
|
|
23456
|
-
|
|
23457
|
-
|
|
23458
|
-
|
|
23459
|
-
|
|
23460
|
-
|
|
23461
|
-
|
|
23462
|
-
|
|
23463
|
-
|
|
23464
|
-
|
|
23465
|
-
|
|
23466
|
-
|
|
23467
|
-
|
|
23468
|
-
|
|
23469
|
-
|
|
23470
|
-
|
|
23471
|
-
|
|
23472
|
-
|
|
23473
|
-
|
|
23474
|
-
|
|
23475
|
-
|
|
23476
|
-
|
|
23477
|
-
|
|
23478
|
-
|
|
23479
|
-
|
|
23480
|
-
|
|
23481
|
-
|
|
23482
|
-
|
|
23483
|
-
|
|
23484
|
-
|
|
23485
|
-
|
|
23486
|
-
|
|
23487
|
-
|
|
23488
|
-
|
|
23489
|
-
|
|
23490
|
-
|
|
23491
|
-
|
|
23492
|
-
|
|
23493
|
-
|
|
23494
|
-
|
|
23495
|
-
|
|
23496
|
-
|
|
23497
|
-
|
|
23498
|
-
|
|
23499
|
-
|
|
23500
|
-
|
|
23501
|
-
|
|
23502
|
-
|
|
23503
|
-
|
|
23504
|
-
|
|
23505
|
-
|
|
23506
|
-
|
|
23507
|
-
|
|
23508
|
-
|
|
23509
|
-
|
|
23510
|
-
|
|
23511
|
-
|
|
23512
|
-
|
|
23513
|
-
|
|
23514
|
-
|
|
23515
|
-
|
|
23516
|
-
|
|
23517
|
-
|
|
23518
|
-
|
|
23519
|
-
|
|
23520
|
-
|
|
23521
|
-
|
|
23522
|
-
|
|
23523
|
-
|
|
23524
|
-
|
|
23525
|
-
|
|
23526
|
-
|
|
23527
|
-
|
|
23528
|
-
|
|
23529
|
-
|
|
23530
|
-
|
|
23531
|
-
|
|
23532
|
-
|
|
23533
|
-
|
|
23534
|
-
|
|
23535
|
-
|
|
23536
|
-
|
|
23537
|
-
|
|
23538
|
-
|
|
23539
|
-
|
|
23540
|
-
|
|
23541
|
-
|
|
23542
|
-
|
|
23543
|
-
|
|
23544
|
-
|
|
23545
|
-
|
|
23546
|
-
|
|
23547
|
-
|
|
23548
|
-
|
|
23549
|
-
|
|
23550
|
-
|
|
23551
|
-
|
|
23552
|
-
|
|
23553
|
-
|
|
23554
|
-
|
|
23555
|
-
|
|
23556
|
-
|
|
23557
|
-
|
|
23558
|
-
|
|
23559
|
-
|
|
23560
|
-
|
|
23561
|
-
|
|
23562
|
-
|
|
23563
|
-
|
|
23564
|
-
|
|
23565
|
-
|
|
23566
|
-
|
|
23567
|
-
|
|
23568
|
-
|
|
23569
|
-
|
|
23570
|
-
|
|
23571
|
-
|
|
23572
|
-
|
|
23573
|
-
|
|
23574
|
-
|
|
23575
|
-
|
|
23576
|
-
|
|
23577
|
-
|
|
23578
|
-
|
|
23579
|
-
|
|
23580
|
-
|
|
23581
|
-
|
|
23582
|
-
|
|
23583
|
-
|
|
23584
|
-
|
|
23585
|
-
|
|
23586
|
-
|
|
23587
|
-
|
|
23588
|
-
|
|
23589
|
-
|
|
23590
|
-
|
|
23591
|
-
|
|
23592
|
-
|
|
23593
|
-
|
|
23594
|
-
|
|
23595
|
-
|
|
23596
|
-
|
|
23597
|
-
|
|
23598
|
-
|
|
23599
|
-
|
|
23600
|
-
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
|
|
23604
|
-
|
|
23605
|
-
|
|
23606
|
-
|
|
23607
|
-
|
|
23608
|
-
|
|
23609
|
-
|
|
23610
|
-
|
|
23611
|
-
|
|
23612
|
-
|
|
23613
|
-
|
|
23614
|
-
|
|
23615
|
-
|
|
23616
|
-
|
|
23617
|
-
|
|
23618
|
-
|
|
23619
|
-
|
|
23620
|
-
|
|
23621
|
-
|
|
23622
|
-
|
|
23623
|
-
|
|
23624
|
-
|
|
23625
|
-
|
|
23626
|
-
|
|
23627
|
-
|
|
23628
|
-
|
|
23629
|
-
|
|
23630
|
-
|
|
23631
|
-
|
|
23632
|
-
|
|
23633
|
-
|
|
23634
|
-
|
|
23635
|
-
|
|
23636
|
-
|
|
23637
|
-
|
|
23638
|
-
|
|
23639
|
-
|
|
23640
|
-
|
|
23641
|
-
|
|
23642
|
-
|
|
23643
|
-
|
|
23644
|
-
|
|
23645
|
-
|
|
23646
|
-
|
|
23647
|
-
|
|
23648
|
-
|
|
23649
|
-
|
|
23650
|
-
|
|
23651
|
-
|
|
23652
|
-
|
|
23653
|
-
|
|
23654
|
-
|
|
23655
|
-
|
|
23656
|
-
|
|
23657
|
-
|
|
23658
|
-
|
|
23659
|
-
|
|
23660
|
-
|
|
23661
|
-
|
|
23662
|
-
|
|
23663
|
-
|
|
23664
|
-
|
|
23665
|
-
|
|
23666
|
-
|
|
23667
|
-
|
|
23668
|
-
|
|
23669
|
-
|
|
23670
|
-
|
|
23671
|
-
|
|
23672
|
-
|
|
23673
|
-
|
|
23674
|
-
|
|
23675
|
-
|
|
23676
|
-
|
|
23677
|
-
|
|
23678
|
-
|
|
23679
|
-
|
|
23680
|
-
|
|
23681
|
-
|
|
23682
|
-
|
|
23683
|
-
|
|
23684
|
-
|
|
23685
|
-
|
|
23686
|
-
|
|
23687
|
-
|
|
23688
|
-
|
|
23689
|
-
|
|
23690
|
-
|
|
23691
|
-
|
|
23692
|
-
|
|
23693
|
-
|
|
23694
|
-
|
|
23695
|
-
|
|
23696
|
-
|
|
23697
|
-
|
|
23698
|
-
|
|
23699
|
-
|
|
23700
|
-
|
|
23701
|
-
|
|
23702
|
-
|
|
23703
|
-
|
|
23704
|
-
|
|
23705
|
-
|
|
23706
|
-
|
|
23707
|
-
|
|
23708
|
-
|
|
23709
|
-
|
|
23710
|
-
|
|
23711
|
-
|
|
23712
|
-
|
|
23713
|
-
|
|
23714
|
-
|
|
23715
|
-
|
|
23716
|
-
|
|
23717
|
-
|
|
23718
|
-
|
|
23719
|
-
|
|
23720
|
-
|
|
23721
|
-
|
|
23722
|
-
|
|
23723
|
-
|
|
23724
|
-
|
|
23725
|
-
|
|
23726
|
-
|
|
23727
|
-
|
|
23728
|
-
|
|
23729
|
-
|
|
23730
|
-
|
|
23731
|
-
|
|
23732
|
-
|
|
23733
|
-
|
|
23734
|
-
|
|
23735
|
-
|
|
23736
|
-
|
|
23737
|
-
|
|
23738
|
-
|
|
23739
|
-
|
|
23740
|
-
|
|
23741
|
-
|
|
23742
|
-
|
|
23743
|
-
|
|
23744
|
-
|
|
23745
|
-
|
|
23746
|
-
|
|
23747
|
-
|
|
23748
|
-
|
|
23749
|
-
|
|
23750
|
-
|
|
23751
|
-
|
|
23752
|
-
|
|
23753
|
-
|
|
23754
|
-
|
|
23755
|
-
|
|
23756
|
-
|
|
23757
|
-
|
|
23758
|
-
|
|
23759
|
-
|
|
23760
|
-
|
|
23761
|
-
|
|
23762
|
-
|
|
23763
|
-
|
|
23764
|
-
|
|
23765
|
-
|
|
23766
|
-
|
|
23767
|
-
|
|
23768
|
-
|
|
23769
|
-
|
|
23770
|
-
|
|
23771
|
-
|
|
23772
|
-
|
|
23773
|
-
|
|
23774
|
-
|
|
23775
|
-
|
|
23776
|
-
|
|
23777
|
-
|
|
23778
|
-
|
|
23779
|
-
|
|
23780
|
-
|
|
23781
|
-
|
|
23782
|
-
|
|
23783
|
-
|
|
23784
|
-
|
|
23785
|
-
|
|
23786
|
-
|
|
23787
|
-
|
|
23788
|
-
|
|
23789
|
-
|
|
23790
|
-
|
|
23791
|
-
|
|
23792
|
-
|
|
23793
|
-
|
|
23794
|
-
|
|
23795
|
-
|
|
23796
|
-
|
|
23797
|
-
|
|
23798
|
-
|
|
23799
|
-
|
|
23800
|
-
|
|
23801
|
-
|
|
23802
|
-
|
|
23803
|
-
|
|
23804
|
-
|
|
23805
|
-
|
|
23806
|
-
|
|
23807
|
-
|
|
23808
|
-
|
|
23809
|
-
|
|
23810
|
-
|
|
23811
|
-
|
|
23812
|
-
|
|
23813
|
-
|
|
23814
|
-
|
|
23815
|
-
|
|
23816
|
-
|
|
23817
|
-
|
|
23818
|
-
|
|
23819
|
-
|
|
23820
|
-
|
|
23821
|
-
|
|
23822
|
-
|
|
23823
|
-
|
|
23824
|
-
|
|
23825
|
-
|
|
23826
|
-
|
|
23827
|
-
|
|
23828
|
-
|
|
23829
|
-
|
|
23830
|
-
|
|
23831
|
-
|
|
23832
|
-
|
|
23833
|
-
|
|
23834
|
-
|
|
23835
|
-
|
|
23836
|
-
|
|
23837
|
-
|
|
23838
|
-
|
|
23839
|
-
|
|
23840
|
-
|
|
23841
|
-
|
|
23842
|
-
|
|
23843
|
-
|
|
23844
|
-
|
|
23845
|
-
|
|
23846
|
-
|
|
23847
|
-
|
|
23848
|
-
|
|
23849
|
-
|
|
23850
|
-
|
|
23851
|
-
|
|
23852
|
-
|
|
23853
|
-
|
|
23854
|
-
|
|
23855
|
-
|
|
23856
|
-
|
|
23857
|
-
|
|
23858
|
-
|
|
23859
|
-
|
|
23860
|
-
|
|
23861
|
-
|
|
23862
|
-
|
|
23863
|
-
|
|
23864
|
-
|
|
23865
|
-
|
|
23866
|
-
|
|
23867
|
-
|
|
23868
|
-
|
|
23869
|
-
|
|
23870
|
-
|
|
23871
|
-
|
|
23872
|
-
|
|
23873
|
-
|
|
23874
|
-
|
|
23875
|
-
|
|
23876
|
-
|
|
23877
|
-
|
|
23878
|
-
|
|
23879
|
-
|
|
23880
|
-
|
|
23881
|
-
|
|
23882
|
-
|
|
23883
|
-
|
|
23884
|
-
|
|
23885
|
-
|
|
23886
|
-
|
|
23887
|
-
|
|
23888
|
-
|
|
23889
|
-
|
|
23890
|
-
|
|
23891
|
-
|
|
23892
|
-
|
|
23893
|
-
|
|
23894
|
-
|
|
23895
|
-
|
|
23896
|
-
|
|
23897
|
-
|
|
23898
|
-
|
|
23899
|
-
|
|
23900
|
-
|
|
23901
|
-
|
|
23902
|
-
|
|
23903
|
-
|
|
23904
|
-
|
|
23905
|
-
|
|
23906
|
-
|
|
23907
|
-
|
|
23908
|
-
|
|
23909
|
-
|
|
23910
|
-
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23914
|
-
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23919
|
-
|
|
23920
|
-
|
|
23921
|
-
|
|
23922
|
-
|
|
23923
|
-
|
|
23924
|
-
|
|
23925
|
-
|
|
23926
|
-
|
|
23927
|
-
|
|
23928
|
-
|
|
23929
|
-
|
|
23930
|
-
|
|
23931
|
-
|
|
23932
|
-
|
|
23933
|
-
|
|
23934
|
-
|
|
23935
|
-
|
|
23936
|
-
|
|
23937
|
-
|
|
23938
|
-
|
|
23939
|
-
|
|
23940
|
-
|
|
23941
|
-
|
|
23942
|
-
|
|
23943
|
-
|
|
23944
|
-
|
|
23945
|
-
|
|
23946
|
-
|
|
23947
|
-
|
|
23948
|
-
|
|
23949
|
-
|
|
23950
|
-
|
|
23951
|
-
|
|
23952
|
-
|
|
23953
|
-
|
|
23954
|
-
|
|
23955
|
-
|
|
23956
|
-
|
|
23957
|
-
|
|
23958
|
-
|
|
23959
|
-
|
|
23960
|
-
|
|
23961
|
-
|
|
23962
|
-
|
|
23963
|
-
|
|
23964
|
-
|
|
23965
|
-
|
|
23966
|
-
|
|
23967
|
-
|
|
23968
|
-
|
|
23969
|
-
|
|
23970
|
-
|
|
23971
|
-
|
|
23972
|
-
|
|
23973
|
-
|
|
23974
|
-
|
|
23975
|
-
|
|
23976
|
-
|
|
23977
|
-
|
|
23978
|
-
|
|
23979
|
-
|
|
23980
|
-
|
|
23981
|
-
|
|
23982
|
-
|
|
23983
|
-
|
|
23984
|
-
|
|
23985
|
-
|
|
23986
|
-
|
|
23987
|
-
|
|
23988
|
-
|
|
23989
|
-
|
|
23990
|
-
|
|
23991
|
-
|
|
23992
|
-
|
|
23993
|
-
|
|
23994
|
-
|
|
23995
|
-
|
|
23996
|
-
|
|
23997
|
-
|
|
23998
|
-
|
|
23999
|
-
|
|
24000
|
-
|
|
24001
|
-
|
|
24002
|
-
|
|
24003
|
-
|
|
24004
|
-
|
|
24005
|
-
|
|
24006
|
-
|
|
24007
|
-
|
|
24008
|
-
|
|
24009
|
-
|
|
24010
|
-
|
|
24011
|
-
|
|
24012
|
-
|
|
24013
|
-
|
|
24014
|
-
|
|
24015
|
-
|
|
24016
|
-
|
|
24017
|
-
|
|
24018
|
-
|
|
24019
|
-
|
|
24020
|
-
|
|
24021
|
-
|
|
24022
|
-
|
|
24023
|
-
|
|
24024
|
-
|
|
24025
|
-
|
|
24026
|
-
|
|
24027
|
-
|
|
24028
|
-
|
|
24029
|
-
|
|
24030
|
-
|
|
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.
|
|
24035
|
-
local ____lualib = require("lualib_bundle")
|
|
24036
|
-
local __TS__New = ____lualib.__TS__New
|
|
24023
|
+
["src.objects.collectibleNames"] = function(...)
|
|
24037
24024
|
local ____exports = {}
|
|
24038
|
-
local
|
|
24039
|
-
local
|
|
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.
|
|
24042
|
-
|
|
24043
|
-
|
|
24044
|
-
|
|
24045
|
-
|
|
24046
|
-
|
|
24047
|
-
|
|
24048
|
-
|
|
24049
|
-
|
|
24050
|
-
|
|
24051
|
-
|
|
24052
|
-
|
|
24053
|
-
|
|
24054
|
-
|
|
24055
|
-
|
|
24056
|
-
|
|
24057
|
-
|
|
24058
|
-
|
|
24059
|
-
|
|
24060
|
-
|
|
24061
|
-
|
|
24062
|
-
|
|
24063
|
-
|
|
24064
|
-
|
|
24065
|
-
|
|
24066
|
-
|
|
24067
|
-
|
|
24068
|
-
|
|
24069
|
-
|
|
24070
|
-
|
|
24071
|
-
|
|
24072
|
-
|
|
24073
|
-
|
|
24074
|
-
|
|
24075
|
-
|
|
24076
|
-
|
|
24077
|
-
|
|
24078
|
-
|
|
24079
|
-
|
|
24080
|
-
|
|
24081
|
-
|
|
24082
|
-
|
|
24083
|
-
|
|
24084
|
-
|
|
24085
|
-
|
|
24086
|
-
|
|
24087
|
-
|
|
24088
|
-
|
|
24089
|
-
|
|
24090
|
-
|
|
24091
|
-
|
|
24092
|
-
|
|
24093
|
-
|
|
24094
|
-
|
|
24095
|
-
|
|
24096
|
-
|
|
24097
|
-
|
|
24098
|
-
|
|
24099
|
-
|
|
24100
|
-
|
|
24101
|
-
|
|
24102
|
-
|
|
24103
|
-
|
|
24104
|
-
|
|
24105
|
-
|
|
24106
|
-
|
|
24107
|
-
|
|
24108
|
-
|
|
24109
|
-
|
|
24110
|
-
|
|
24111
|
-
|
|
24112
|
-
|
|
24113
|
-
|
|
24114
|
-
|
|
24115
|
-
|
|
24116
|
-
|
|
24117
|
-
|
|
24118
|
-
|
|
24119
|
-
|
|
24120
|
-
|
|
24121
|
-
|
|
24122
|
-
|
|
24123
|
-
|
|
24124
|
-
|
|
24125
|
-
|
|
24126
|
-
|
|
24127
|
-
|
|
24128
|
-
|
|
24129
|
-
|
|
24130
|
-
|
|
24131
|
-
|
|
24132
|
-
|
|
24133
|
-
|
|
24134
|
-
|
|
24135
|
-
|
|
24136
|
-
|
|
24137
|
-
|
|
24138
|
-
|
|
24139
|
-
|
|
24140
|
-
|
|
24141
|
-
|
|
24142
|
-
|
|
24143
|
-
|
|
24144
|
-
|
|
24145
|
-
|
|
24146
|
-
|
|
24147
|
-
|
|
24148
|
-
|
|
24149
|
-
|
|
24150
|
-
|
|
24151
|
-
|
|
24152
|
-
|
|
24153
|
-
|
|
24154
|
-
|
|
24155
|
-
|
|
24156
|
-
|
|
24157
|
-
|
|
24158
|
-
|
|
24159
|
-
|
|
24160
|
-
|
|
24161
|
-
|
|
24162
|
-
|
|
24163
|
-
|
|
24164
|
-
|
|
24165
|
-
|
|
24166
|
-
|
|
24167
|
-
|
|
24168
|
-
|
|
24169
|
-
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
|
|
24184
|
-
|
|
24185
|
-
|
|
24186
|
-
|
|
24187
|
-
|
|
24188
|
-
|
|
24189
|
-
|
|
24190
|
-
|
|
24191
|
-
|
|
24192
|
-
|
|
24193
|
-
|
|
24194
|
-
|
|
24195
|
-
|
|
24196
|
-
|
|
24197
|
-
|
|
24198
|
-
|
|
24199
|
-
|
|
24200
|
-
|
|
24201
|
-
|
|
24202
|
-
|
|
24203
|
-
|
|
24204
|
-
|
|
24205
|
-
|
|
24206
|
-
|
|
24207
|
-
|
|
24208
|
-
|
|
24209
|
-
|
|
24210
|
-
|
|
24211
|
-
|
|
24212
|
-
|
|
24213
|
-
|
|
24214
|
-
|
|
24215
|
-
|
|
24216
|
-
|
|
24217
|
-
|
|
24218
|
-
|
|
24219
|
-
|
|
24220
|
-
|
|
24221
|
-
|
|
24222
|
-
|
|
24223
|
-
|
|
24224
|
-
|
|
24225
|
-
|
|
24226
|
-
|
|
24227
|
-
|
|
24228
|
-
|
|
24229
|
-
|
|
24230
|
-
|
|
24231
|
-
|
|
24232
|
-
|
|
24233
|
-
|
|
24234
|
-
|
|
24235
|
-
|
|
24236
|
-
|
|
24237
|
-
|
|
24238
|
-
|
|
24239
|
-
|
|
24240
|
-
|
|
24241
|
-
|
|
24242
|
-
|
|
24243
|
-
|
|
24244
|
-
|
|
24245
|
-
|
|
24246
|
-
|
|
24247
|
-
|
|
24248
|
-
|
|
24249
|
-
|
|
24250
|
-
|
|
24251
|
-
|
|
24252
|
-
|
|
24253
|
-
|
|
24254
|
-
|
|
24255
|
-
|
|
24256
|
-
|
|
24257
|
-
|
|
24258
|
-
|
|
24259
|
-
|
|
24260
|
-
|
|
24261
|
-
|
|
24262
|
-
|
|
24263
|
-
|
|
24264
|
-
|
|
24265
|
-
|
|
24266
|
-
|
|
24267
|
-
|
|
24268
|
-
|
|
24269
|
-
|
|
24270
|
-
|
|
24271
|
-
|
|
24272
|
-
|
|
24273
|
-
|
|
24274
|
-
|
|
24275
|
-
|
|
24276
|
-
|
|
24277
|
-
|
|
24278
|
-
|
|
24279
|
-
|
|
24280
|
-
|
|
24281
|
-
|
|
24282
|
-
|
|
24283
|
-
|
|
24284
|
-
|
|
24285
|
-
|
|
24286
|
-
|
|
24287
|
-
|
|
24288
|
-
|
|
24289
|
-
|
|
24290
|
-
|
|
24291
|
-
|
|
24292
|
-
|
|
24293
|
-
|
|
24294
|
-
|
|
24295
|
-
|
|
24296
|
-
|
|
24297
|
-
|
|
24298
|
-
|
|
24299
|
-
|
|
24300
|
-
|
|
24301
|
-
|
|
24302
|
-
|
|
24303
|
-
|
|
24304
|
-
|
|
24305
|
-
|
|
24306
|
-
|
|
24307
|
-
|
|
24308
|
-
|
|
24309
|
-
|
|
24310
|
-
|
|
24311
|
-
|
|
24312
|
-
|
|
24313
|
-
|
|
24314
|
-
|
|
24315
|
-
|
|
24316
|
-
|
|
24317
|
-
|
|
24318
|
-
|
|
24319
|
-
|
|
24320
|
-
|
|
24321
|
-
|
|
24322
|
-
|
|
24323
|
-
|
|
24324
|
-
|
|
24325
|
-
|
|
24326
|
-
|
|
24327
|
-
|
|
24328
|
-
|
|
24329
|
-
|
|
24330
|
-
|
|
24331
|
-
|
|
24332
|
-
|
|
24333
|
-
|
|
24334
|
-
|
|
24335
|
-
|
|
24336
|
-
|
|
24337
|
-
|
|
24338
|
-
|
|
24339
|
-
|
|
24340
|
-
|
|
24341
|
-
|
|
24342
|
-
|
|
24343
|
-
|
|
24344
|
-
|
|
24345
|
-
|
|
24346
|
-
|
|
24347
|
-
|
|
24348
|
-
|
|
24349
|
-
|
|
24350
|
-
|
|
24351
|
-
|
|
24352
|
-
|
|
24353
|
-
|
|
24354
|
-
|
|
24355
|
-
|
|
24356
|
-
|
|
24357
|
-
|
|
24358
|
-
|
|
24359
|
-
|
|
24360
|
-
|
|
24361
|
-
|
|
24362
|
-
|
|
24363
|
-
|
|
24364
|
-
|
|
24365
|
-
|
|
24366
|
-
|
|
24367
|
-
|
|
24368
|
-
|
|
24369
|
-
|
|
24370
|
-
|
|
24371
|
-
|
|
24372
|
-
|
|
24373
|
-
|
|
24374
|
-
|
|
24375
|
-
|
|
24376
|
-
|
|
24377
|
-
|
|
24378
|
-
|
|
24379
|
-
|
|
24380
|
-
|
|
24381
|
-
|
|
24382
|
-
|
|
24383
|
-
|
|
24384
|
-
|
|
24385
|
-
|
|
24386
|
-
|
|
24387
|
-
|
|
24388
|
-
|
|
24389
|
-
|
|
24390
|
-
|
|
24391
|
-
|
|
24392
|
-
|
|
24393
|
-
|
|
24394
|
-
|
|
24395
|
-
|
|
24396
|
-
|
|
24397
|
-
|
|
24398
|
-
|
|
24399
|
-
|
|
24400
|
-
|
|
24401
|
-
|
|
24402
|
-
|
|
24403
|
-
|
|
24404
|
-
|
|
24405
|
-
|
|
24406
|
-
|
|
24407
|
-
|
|
24408
|
-
|
|
24409
|
-
|
|
24410
|
-
|
|
24411
|
-
|
|
24412
|
-
|
|
24413
|
-
|
|
24414
|
-
|
|
24415
|
-
|
|
24416
|
-
|
|
24417
|
-
|
|
24418
|
-
|
|
24419
|
-
|
|
24420
|
-
|
|
24421
|
-
|
|
24422
|
-
|
|
24423
|
-
|
|
24424
|
-
|
|
24425
|
-
|
|
24426
|
-
|
|
24427
|
-
|
|
24428
|
-
|
|
24429
|
-
|
|
24430
|
-
|
|
24431
|
-
|
|
24432
|
-
|
|
24433
|
-
|
|
24434
|
-
|
|
24435
|
-
|
|
24436
|
-
|
|
24437
|
-
|
|
24438
|
-
|
|
24439
|
-
|
|
24440
|
-
|
|
24441
|
-
|
|
24442
|
-
|
|
24443
|
-
|
|
24444
|
-
|
|
24445
|
-
|
|
24446
|
-
|
|
24447
|
-
|
|
24448
|
-
|
|
24449
|
-
|
|
24450
|
-
|
|
24451
|
-
|
|
24452
|
-
|
|
24453
|
-
|
|
24454
|
-
|
|
24455
|
-
|
|
24456
|
-
|
|
24457
|
-
|
|
24458
|
-
|
|
24459
|
-
|
|
24460
|
-
|
|
24461
|
-
|
|
24462
|
-
|
|
24463
|
-
|
|
24464
|
-
|
|
24465
|
-
|
|
24466
|
-
|
|
24467
|
-
|
|
24468
|
-
|
|
24469
|
-
|
|
24470
|
-
|
|
24471
|
-
|
|
24472
|
-
|
|
24473
|
-
|
|
24474
|
-
|
|
24475
|
-
|
|
24476
|
-
|
|
24477
|
-
|
|
24478
|
-
|
|
24479
|
-
|
|
24480
|
-
|
|
24481
|
-
|
|
24482
|
-
|
|
24483
|
-
|
|
24484
|
-
|
|
24485
|
-
|
|
24486
|
-
|
|
24487
|
-
|
|
24488
|
-
|
|
24489
|
-
|
|
24490
|
-
|
|
24491
|
-
|
|
24492
|
-
|
|
24493
|
-
|
|
24494
|
-
|
|
24495
|
-
|
|
24496
|
-
|
|
24497
|
-
|
|
24498
|
-
|
|
24499
|
-
|
|
24500
|
-
|
|
24501
|
-
|
|
24502
|
-
|
|
24503
|
-
|
|
24504
|
-
|
|
24505
|
-
|
|
24506
|
-
|
|
24507
|
-
|
|
24508
|
-
|
|
24509
|
-
|
|
24510
|
-
|
|
24511
|
-
|
|
24512
|
-
|
|
24513
|
-
|
|
24514
|
-
|
|
24515
|
-
|
|
24516
|
-
|
|
24517
|
-
|
|
24518
|
-
|
|
24519
|
-
|
|
24520
|
-
|
|
24521
|
-
|
|
24522
|
-
|
|
24523
|
-
|
|
24524
|
-
|
|
24525
|
-
|
|
24526
|
-
|
|
24527
|
-
|
|
24528
|
-
|
|
24529
|
-
|
|
24530
|
-
|
|
24531
|
-
|
|
24532
|
-
|
|
24533
|
-
|
|
24534
|
-
|
|
24535
|
-
|
|
24536
|
-
|
|
24537
|
-
|
|
24538
|
-
|
|
24539
|
-
|
|
24540
|
-
|
|
24541
|
-
|
|
24542
|
-
|
|
24543
|
-
|
|
24544
|
-
|
|
24545
|
-
|
|
24546
|
-
|
|
24547
|
-
|
|
24548
|
-
|
|
24549
|
-
|
|
24550
|
-
|
|
24551
|
-
|
|
24552
|
-
|
|
24553
|
-
|
|
24554
|
-
|
|
24555
|
-
|
|
24556
|
-
|
|
24557
|
-
|
|
24558
|
-
|
|
24559
|
-
|
|
24560
|
-
|
|
24561
|
-
|
|
24562
|
-
|
|
24563
|
-
|
|
24564
|
-
|
|
24565
|
-
|
|
24566
|
-
|
|
24567
|
-
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
|
|
24574
|
-
|
|
24575
|
-
|
|
24576
|
-
|
|
24577
|
-
|
|
24578
|
-
|
|
24579
|
-
|
|
24580
|
-
|
|
24581
|
-
|
|
24582
|
-
|
|
24583
|
-
|
|
24584
|
-
|
|
24585
|
-
|
|
24586
|
-
|
|
24587
|
-
|
|
24588
|
-
|
|
24589
|
-
|
|
24590
|
-
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
|
|
24597
|
-
|
|
24598
|
-
|
|
24599
|
-
|
|
24600
|
-
|
|
24601
|
-
|
|
24602
|
-
|
|
24603
|
-
|
|
24604
|
-
|
|
24605
|
-
|
|
24606
|
-
|
|
24607
|
-
|
|
24608
|
-
|
|
24609
|
-
|
|
24610
|
-
|
|
24611
|
-
|
|
24612
|
-
|
|
24613
|
-
|
|
24614
|
-
|
|
24615
|
-
|
|
24616
|
-
|
|
24617
|
-
|
|
24618
|
-
|
|
24619
|
-
|
|
24620
|
-
|
|
24621
|
-
|
|
24622
|
-
|
|
24623
|
-
|
|
24624
|
-
|
|
24625
|
-
|
|
24626
|
-
|
|
24627
|
-
|
|
24628
|
-
|
|
24629
|
-
|
|
24630
|
-
|
|
24631
|
-
|
|
24632
|
-
|
|
24633
|
-
|
|
24634
|
-
|
|
24635
|
-
|
|
24636
|
-
|
|
24637
|
-
|
|
24638
|
-
|
|
24639
|
-
|
|
24640
|
-
|
|
24641
|
-
|
|
24642
|
-
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
|
|
24670
|
-
|
|
24671
|
-
|
|
24672
|
-
|
|
24673
|
-
|
|
24674
|
-
|
|
24675
|
-
|
|
24676
|
-
|
|
24677
|
-
|
|
24678
|
-
|
|
24679
|
-
|
|
24680
|
-
|
|
24681
|
-
|
|
24682
|
-
|
|
24683
|
-
|
|
24684
|
-
|
|
24685
|
-
|
|
24686
|
-
|
|
24687
|
-
|
|
24688
|
-
|
|
24689
|
-
|
|
24690
|
-
|
|
24691
|
-
|
|
24692
|
-
|
|
24693
|
-
|
|
24694
|
-
|
|
24695
|
-
|
|
24696
|
-
|
|
24697
|
-
|
|
24698
|
-
|
|
24699
|
-
|
|
24700
|
-
|
|
24701
|
-
|
|
24702
|
-
|
|
24703
|
-
|
|
24704
|
-
|
|
24705
|
-
|
|
24706
|
-
|
|
24707
|
-
|
|
24708
|
-
|
|
24709
|
-
|
|
24710
|
-
|
|
24711
|
-
|
|
24712
|
-
|
|
24713
|
-
|
|
24714
|
-
|
|
24715
|
-
|
|
24716
|
-
|
|
24717
|
-
|
|
24718
|
-
|
|
24719
|
-
|
|
24720
|
-
|
|
24721
|
-
|
|
24722
|
-
|
|
24723
|
-
|
|
24724
|
-
|
|
24725
|
-
|
|
24726
|
-
|
|
24727
|
-
|
|
24728
|
-
|
|
24729
|
-
|
|
24730
|
-
|
|
24731
|
-
|
|
24732
|
-
|
|
24733
|
-
|
|
24734
|
-
|
|
24735
|
-
|
|
24736
|
-
|
|
24737
|
-
|
|
24738
|
-
|
|
24739
|
-
|
|
24740
|
-
|
|
24741
|
-
|
|
24742
|
-
|
|
24743
|
-
|
|
24744
|
-
|
|
24745
|
-
|
|
24746
|
-
|
|
24747
|
-
|
|
24748
|
-
|
|
24749
|
-
|
|
24750
|
-
|
|
24751
|
-
|
|
24752
|
-
|
|
24753
|
-
|
|
24754
|
-
|
|
24755
|
-
|
|
24756
|
-
|
|
24757
|
-
|
|
24758
|
-
|
|
24759
|
-
|
|
24760
|
-
|
|
24761
|
-
|
|
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
|
|
24854
|
-
local
|
|
24855
|
-
local DEFAULT_COLLECTIBLE_DESCRIPTION =
|
|
24856
|
-
local
|
|
24857
|
-
local
|
|
24858
|
-
local 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 =
|
|
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 =
|
|
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.
|
|
31100
|
-
local ____lualib = require("lualib_bundle")
|
|
31101
|
-
local __TS__New = ____lualib.__TS__New
|
|
31095
|
+
["src.objects.trinketDescriptions"] = function(...)
|
|
31102
31096
|
local ____exports = {}
|
|
31103
|
-
local
|
|
31104
|
-
local
|
|
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.
|
|
31107
|
-
|
|
31108
|
-
|
|
31109
|
-
|
|
31110
|
-
|
|
31111
|
-
|
|
31112
|
-
|
|
31113
|
-
|
|
31114
|
-
|
|
31115
|
-
|
|
31116
|
-
|
|
31117
|
-
|
|
31118
|
-
|
|
31119
|
-
|
|
31120
|
-
|
|
31121
|
-
|
|
31122
|
-
|
|
31123
|
-
|
|
31124
|
-
|
|
31125
|
-
|
|
31126
|
-
|
|
31127
|
-
|
|
31128
|
-
|
|
31129
|
-
|
|
31130
|
-
|
|
31131
|
-
|
|
31132
|
-
|
|
31133
|
-
|
|
31134
|
-
|
|
31135
|
-
|
|
31136
|
-
|
|
31137
|
-
|
|
31138
|
-
|
|
31139
|
-
|
|
31140
|
-
|
|
31141
|
-
|
|
31142
|
-
|
|
31143
|
-
|
|
31144
|
-
|
|
31145
|
-
|
|
31146
|
-
|
|
31147
|
-
|
|
31148
|
-
|
|
31149
|
-
|
|
31150
|
-
|
|
31151
|
-
|
|
31152
|
-
|
|
31153
|
-
|
|
31154
|
-
|
|
31155
|
-
|
|
31156
|
-
|
|
31157
|
-
|
|
31158
|
-
|
|
31159
|
-
|
|
31160
|
-
|
|
31161
|
-
|
|
31162
|
-
|
|
31163
|
-
|
|
31164
|
-
|
|
31165
|
-
|
|
31166
|
-
|
|
31167
|
-
|
|
31168
|
-
|
|
31169
|
-
|
|
31170
|
-
|
|
31171
|
-
|
|
31172
|
-
|
|
31173
|
-
|
|
31174
|
-
|
|
31175
|
-
|
|
31176
|
-
|
|
31177
|
-
|
|
31178
|
-
|
|
31179
|
-
|
|
31180
|
-
|
|
31181
|
-
|
|
31182
|
-
|
|
31183
|
-
|
|
31184
|
-
|
|
31185
|
-
|
|
31186
|
-
|
|
31187
|
-
|
|
31188
|
-
|
|
31189
|
-
|
|
31190
|
-
|
|
31191
|
-
|
|
31192
|
-
|
|
31193
|
-
|
|
31194
|
-
|
|
31195
|
-
|
|
31196
|
-
|
|
31197
|
-
|
|
31198
|
-
|
|
31199
|
-
|
|
31200
|
-
|
|
31201
|
-
|
|
31202
|
-
|
|
31203
|
-
|
|
31204
|
-
|
|
31205
|
-
|
|
31206
|
-
|
|
31207
|
-
|
|
31208
|
-
|
|
31209
|
-
|
|
31210
|
-
|
|
31211
|
-
|
|
31212
|
-
|
|
31213
|
-
|
|
31214
|
-
|
|
31215
|
-
|
|
31216
|
-
|
|
31217
|
-
|
|
31218
|
-
|
|
31219
|
-
|
|
31220
|
-
|
|
31221
|
-
|
|
31222
|
-
|
|
31223
|
-
|
|
31224
|
-
|
|
31225
|
-
|
|
31226
|
-
|
|
31227
|
-
|
|
31228
|
-
|
|
31229
|
-
|
|
31230
|
-
|
|
31231
|
-
|
|
31232
|
-
|
|
31233
|
-
|
|
31234
|
-
|
|
31235
|
-
|
|
31236
|
-
|
|
31237
|
-
|
|
31238
|
-
|
|
31239
|
-
|
|
31240
|
-
|
|
31241
|
-
|
|
31242
|
-
|
|
31243
|
-
|
|
31244
|
-
|
|
31245
|
-
|
|
31246
|
-
|
|
31247
|
-
|
|
31248
|
-
|
|
31249
|
-
|
|
31250
|
-
|
|
31251
|
-
|
|
31252
|
-
|
|
31253
|
-
|
|
31254
|
-
|
|
31255
|
-
|
|
31256
|
-
|
|
31257
|
-
|
|
31258
|
-
|
|
31259
|
-
|
|
31260
|
-
|
|
31261
|
-
|
|
31262
|
-
|
|
31263
|
-
|
|
31264
|
-
|
|
31265
|
-
|
|
31266
|
-
|
|
31267
|
-
|
|
31268
|
-
|
|
31269
|
-
|
|
31270
|
-
|
|
31271
|
-
|
|
31272
|
-
|
|
31273
|
-
|
|
31274
|
-
|
|
31275
|
-
|
|
31276
|
-
|
|
31277
|
-
|
|
31278
|
-
|
|
31279
|
-
|
|
31280
|
-
|
|
31281
|
-
|
|
31282
|
-
|
|
31283
|
-
|
|
31284
|
-
|
|
31285
|
-
|
|
31286
|
-
|
|
31287
|
-
|
|
31288
|
-
|
|
31289
|
-
|
|
31290
|
-
|
|
31291
|
-
|
|
31292
|
-
|
|
31293
|
-
|
|
31294
|
-
|
|
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.
|
|
31299
|
-
local ____lualib = require("lualib_bundle")
|
|
31300
|
-
local __TS__New = ____lualib.__TS__New
|
|
31293
|
+
["src.objects.trinketNames"] = function(...)
|
|
31301
31294
|
local ____exports = {}
|
|
31302
|
-
local
|
|
31303
|
-
local
|
|
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.
|
|
31306
|
-
|
|
31307
|
-
|
|
31308
|
-
|
|
31309
|
-
|
|
31310
|
-
|
|
31311
|
-
|
|
31312
|
-
|
|
31313
|
-
|
|
31314
|
-
|
|
31315
|
-
|
|
31316
|
-
|
|
31317
|
-
|
|
31318
|
-
|
|
31319
|
-
|
|
31320
|
-
|
|
31321
|
-
|
|
31322
|
-
|
|
31323
|
-
|
|
31324
|
-
|
|
31325
|
-
|
|
31326
|
-
|
|
31327
|
-
|
|
31328
|
-
|
|
31329
|
-
|
|
31330
|
-
|
|
31331
|
-
|
|
31332
|
-
|
|
31333
|
-
|
|
31334
|
-
|
|
31335
|
-
|
|
31336
|
-
|
|
31337
|
-
|
|
31338
|
-
|
|
31339
|
-
|
|
31340
|
-
|
|
31341
|
-
|
|
31342
|
-
|
|
31343
|
-
|
|
31344
|
-
|
|
31345
|
-
|
|
31346
|
-
|
|
31347
|
-
|
|
31348
|
-
|
|
31349
|
-
|
|
31350
|
-
|
|
31351
|
-
|
|
31352
|
-
|
|
31353
|
-
|
|
31354
|
-
|
|
31355
|
-
|
|
31356
|
-
|
|
31357
|
-
|
|
31358
|
-
|
|
31359
|
-
|
|
31360
|
-
|
|
31361
|
-
|
|
31362
|
-
|
|
31363
|
-
|
|
31364
|
-
|
|
31365
|
-
|
|
31366
|
-
|
|
31367
|
-
|
|
31368
|
-
|
|
31369
|
-
|
|
31370
|
-
|
|
31371
|
-
|
|
31372
|
-
|
|
31373
|
-
|
|
31374
|
-
|
|
31375
|
-
|
|
31376
|
-
|
|
31377
|
-
|
|
31378
|
-
|
|
31379
|
-
|
|
31380
|
-
|
|
31381
|
-
|
|
31382
|
-
|
|
31383
|
-
|
|
31384
|
-
|
|
31385
|
-
|
|
31386
|
-
|
|
31387
|
-
|
|
31388
|
-
|
|
31389
|
-
|
|
31390
|
-
|
|
31391
|
-
|
|
31392
|
-
|
|
31393
|
-
|
|
31394
|
-
|
|
31395
|
-
|
|
31396
|
-
|
|
31397
|
-
|
|
31398
|
-
|
|
31399
|
-
|
|
31400
|
-
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31404
|
-
|
|
31405
|
-
|
|
31406
|
-
|
|
31407
|
-
|
|
31408
|
-
|
|
31409
|
-
|
|
31410
|
-
|
|
31411
|
-
|
|
31412
|
-
|
|
31413
|
-
|
|
31414
|
-
|
|
31415
|
-
|
|
31416
|
-
|
|
31417
|
-
|
|
31418
|
-
|
|
31419
|
-
|
|
31420
|
-
|
|
31421
|
-
|
|
31422
|
-
|
|
31423
|
-
|
|
31424
|
-
|
|
31425
|
-
|
|
31426
|
-
|
|
31427
|
-
|
|
31428
|
-
|
|
31429
|
-
|
|
31430
|
-
|
|
31431
|
-
|
|
31432
|
-
|
|
31433
|
-
|
|
31434
|
-
|
|
31435
|
-
|
|
31436
|
-
|
|
31437
|
-
|
|
31438
|
-
|
|
31439
|
-
|
|
31440
|
-
|
|
31441
|
-
|
|
31442
|
-
|
|
31443
|
-
|
|
31444
|
-
|
|
31445
|
-
|
|
31446
|
-
|
|
31447
|
-
|
|
31448
|
-
|
|
31449
|
-
|
|
31450
|
-
|
|
31451
|
-
|
|
31452
|
-
|
|
31453
|
-
|
|
31454
|
-
|
|
31455
|
-
|
|
31456
|
-
|
|
31457
|
-
|
|
31458
|
-
|
|
31459
|
-
|
|
31460
|
-
|
|
31461
|
-
|
|
31462
|
-
|
|
31463
|
-
|
|
31464
|
-
|
|
31465
|
-
|
|
31466
|
-
|
|
31467
|
-
|
|
31468
|
-
|
|
31469
|
-
|
|
31470
|
-
|
|
31471
|
-
|
|
31472
|
-
|
|
31473
|
-
|
|
31474
|
-
|
|
31475
|
-
|
|
31476
|
-
|
|
31477
|
-
|
|
31478
|
-
|
|
31479
|
-
|
|
31480
|
-
|
|
31481
|
-
|
|
31482
|
-
|
|
31483
|
-
|
|
31484
|
-
|
|
31485
|
-
|
|
31486
|
-
|
|
31487
|
-
|
|
31488
|
-
|
|
31489
|
-
|
|
31490
|
-
|
|
31491
|
-
|
|
31492
|
-
|
|
31493
|
-
|
|
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
|
|
31511
|
-
local DEFAULT_TRINKET_DESCRIPTION =
|
|
31512
|
-
local
|
|
31513
|
-
local
|
|
31514
|
-
local DEFAULT_TRINKET_NAME =
|
|
31515
|
-
local
|
|
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 =
|
|
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 =
|
|
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
|
|
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
|
|
50249
|
-
local
|
|
50250
|
-
|
|
50251
|
-
local
|
|
50252
|
-
|
|
50253
|
-
|
|
50254
|
-
|
|
50255
|
-
|
|
50256
|
-
|
|
50257
|
-
|
|
50258
|
-
|
|
50259
|
-
|
|
50260
|
-
|
|
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
|
|
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
|
|
50417
|
-
local
|
|
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
|
|
50421
|
-
local
|
|
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
|