isaacscript-common 1.0.476 → 1.0.480

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.
@@ -0,0 +1,45 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ /**
3
+ * This is a helper function to get a card name from a Card.
4
+ *
5
+ * Example:
6
+ * ```
7
+ * const card = Card.CARD_FOOL;
8
+ * const cardName = getCardName(card); // cardName is "0 - The Fool"
9
+ * ```
10
+ */
11
+ export declare function getCardDescription(card: Card | int): string;
12
+ /**
13
+ * This is a helper function to get a card name from a Card.
14
+ *
15
+ * Example:
16
+ * ```
17
+ * const card = Card.CARD_FOOL;
18
+ * const cardName = getCardName(card); // cardName is "0 - The Fool"
19
+ * ```
20
+ */
21
+ export declare function getCardName(card: Card | int): string;
22
+ /**
23
+ * Has an equal chance of returning any card (e.g. Fool, Reverse Fool, Wild Card, etc.). This will
24
+ * not return any runes or objects.
25
+ */
26
+ export declare function getRandomCard(seed?: number): Card;
27
+ /**
28
+ * Has an equal chance of returning any rune (e.g. Rune of Hagalaz, Blank Rune, Black Rune, Soul of
29
+ * Isaac, etc.). This will never return a Rune Shard.
30
+ */
31
+ export declare function getRandomRune(seed?: number): Card;
32
+ /**
33
+ * Returns true for entries in the Card enum that are not a rune or an object (e.g. Fool, Reverse
34
+ * Fool, Wild Card, etc.).
35
+ */
36
+ export declare function isCard(card: Card): boolean;
37
+ /**
38
+ * Returns true for entries in the Card enum that are not a card and not a rune (like Dice Shard).
39
+ */
40
+ export declare function isNotCardOrRune(card: Card): boolean;
41
+ /**
42
+ * Returns true for entries in the Card enum that are a rune. (e.g. Rune of Hagalaz, Blank Rune,
43
+ * Black Rune, Rune Shard, Soul of Isaac, etc.)
44
+ */
45
+ export declare function isRune(card: Card): boolean;
@@ -0,0 +1,77 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ local ____exports = {}
3
+ local ____cardDescriptionMap = require("maps.cardDescriptionMap")
4
+ local CARD_DESCRIPTION_MAP = ____cardDescriptionMap.CARD_DESCRIPTION_MAP
5
+ local ____cardNameMap = require("maps.cardNameMap")
6
+ local CARD_NAME_MAP = ____cardNameMap.CARD_NAME_MAP
7
+ local ____random = require("functions.random")
8
+ local getRandomInt = ____random.getRandomInt
9
+ local nextSeed = ____random.nextSeed
10
+ function ____exports.isCard(self, card)
11
+ return ____exports.isNotCardOrRune(nil, card) and (not ____exports.isRune(nil, card))
12
+ end
13
+ function ____exports.isNotCardOrRune(self, card)
14
+ return ((card == Card.CARD_DICE_SHARD) or (card == Card.CARD_EMERGENCY_CONTACT)) or (card == Card.CARD_CRACKED_KEY)
15
+ end
16
+ function ____exports.isRune(self, card)
17
+ return (((card >= Card.RUNE_HAGALAZ) and (card <= Card.RUNE_BLACK)) or (card == Card.RUNE_SHARD)) or ((card >= Card.CARD_SOUL_ISAAC) and (card <= Card.CARD_SOUL_JACOB))
18
+ end
19
+ function ____exports.getCardDescription(self, card)
20
+ local itemConfig = Isaac.GetItemConfig()
21
+ local defaultDescription = "Unknown"
22
+ if type(card) ~= "number" then
23
+ return defaultDescription
24
+ end
25
+ local cardDescription = CARD_DESCRIPTION_MAP:get(card)
26
+ if cardDescription ~= nil then
27
+ return cardDescription
28
+ end
29
+ local itemConfigCard = itemConfig:GetCard(card)
30
+ if itemConfigCard == nil then
31
+ return defaultDescription
32
+ end
33
+ return itemConfigCard.Description
34
+ end
35
+ function ____exports.getCardName(self, card)
36
+ local itemConfig = Isaac.GetItemConfig()
37
+ local defaultName = "Unknown"
38
+ if type(card) ~= "number" then
39
+ return defaultName
40
+ end
41
+ local cardName = CARD_NAME_MAP:get(card)
42
+ if cardName ~= nil then
43
+ return cardName
44
+ end
45
+ local itemConfigCard = itemConfig:GetCard(card)
46
+ if itemConfigCard == nil then
47
+ return defaultName
48
+ end
49
+ return itemConfigCard.Name
50
+ end
51
+ function ____exports.getRandomCard(self, seed)
52
+ if seed == nil then
53
+ seed = Random()
54
+ end
55
+ local card
56
+ repeat
57
+ do
58
+ seed = nextSeed(nil, seed)
59
+ card = getRandomInt(nil, 1, Card.NUM_CARDS - 1)
60
+ end
61
+ until ____exports.isCard(nil, card)
62
+ return card
63
+ end
64
+ function ____exports.getRandomRune(self, seed)
65
+ if seed == nil then
66
+ seed = Random()
67
+ end
68
+ local card
69
+ repeat
70
+ do
71
+ seed = nextSeed(nil, seed)
72
+ card = getRandomInt(nil, 1, Card.NUM_CARDS - 1)
73
+ end
74
+ until not ((not ____exports.isRune(nil, card)) or (card == Card.RUNE_SHARD))
75
+ return card
76
+ end
77
+ return ____exports
@@ -1,5 +1,7 @@
1
1
  /// <reference types="isaac-typescript-definitions" />
2
2
  export declare function collectibleHasTag(collectibleType: CollectibleType | int, tag: ItemConfigTag): boolean;
3
+ /** This is a helper function to get a description from a CollectibleType. */
4
+ export declare function getCollectibleDescription(collectibleType: CollectibleType | int): string;
3
5
  /**
4
6
  * Helper function to get the heart cost that a collectible item would be if it were being offered
5
7
  * in a Devil Room deal. Returns 0 if passed CollectibleType.COLLECTIBLE_NULL.
@@ -2,7 +2,9 @@
2
2
  require("lualib_bundle");
3
3
  local ____exports = {}
4
4
  local COLLECTIBLE_SPRITE_LAYER
5
- local ____collectibleNameMap = require("collectibleNameMap")
5
+ local ____collectibleDescriptionMap = require("maps.collectibleDescriptionMap")
6
+ local COLLECTIBLE_DESCRIPTION_MAP = ____collectibleDescriptionMap.COLLECTIBLE_DESCRIPTION_MAP
7
+ local ____collectibleNameMap = require("maps.collectibleNameMap")
6
8
  local COLLECTIBLE_NAME_MAP = ____collectibleNameMap.COLLECTIBLE_NAME_MAP
7
9
  local ____entity = require("functions.entity")
8
10
  local removeAllMatchingEntities = ____entity.removeAllMatchingEntities
@@ -27,6 +29,22 @@ function ____exports.collectibleHasTag(self, collectibleType, tag)
27
29
  end
28
30
  return itemConfigItem:HasTags(tag)
29
31
  end
32
+ function ____exports.getCollectibleDescription(self, collectibleType)
33
+ local itemConfig = Isaac.GetItemConfig()
34
+ local defaultDescription = "Unknown"
35
+ if type(collectibleType) ~= "number" then
36
+ return defaultDescription
37
+ end
38
+ local collectibleDescription = COLLECTIBLE_DESCRIPTION_MAP:get(collectibleType)
39
+ if collectibleDescription ~= nil then
40
+ return collectibleDescription
41
+ end
42
+ local itemConfigItem = itemConfig:GetCollectible(collectibleType)
43
+ if itemConfigItem == nil then
44
+ return defaultDescription
45
+ end
46
+ return itemConfigItem.Description
47
+ end
30
48
  function ____exports.getCollectibleDevilHeartPrice(self, collectibleType, player)
31
49
  local itemConfig = Isaac.GetItemConfig()
32
50
  local maxHearts = player:GetMaxHearts()
@@ -0,0 +1,11 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ /**
3
+ * This is a helper function to get a pill effect name from a PillEffect.
4
+ *
5
+ * Example:
6
+ * ```
7
+ * const pillEffect = PillEffect.PILLEFFECT_BAD_GAS;
8
+ * const pillEffectName = getPillEffectName(pillEffect); // trinketName is "Bad Gas"
9
+ * ```
10
+ */
11
+ export declare function getPillEffectName(pillEffect: PillEffect | int): string;
@@ -0,0 +1,21 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ local ____exports = {}
3
+ local ____pillEffectNameMap = require("maps.pillEffectNameMap")
4
+ local PILL_EFFECT_NAME_MAP = ____pillEffectNameMap.PILL_EFFECT_NAME_MAP
5
+ function ____exports.getPillEffectName(self, pillEffect)
6
+ local itemConfig = Isaac.GetItemConfig()
7
+ local defaultName = "Unknown"
8
+ if type(pillEffect) ~= "number" then
9
+ return defaultName
10
+ end
11
+ local pillEffectName = PILL_EFFECT_NAME_MAP:get(pillEffect)
12
+ if pillEffectName ~= nil then
13
+ return pillEffectName
14
+ end
15
+ local itemConfigPillEffect = itemConfig:GetPillEffect(pillEffect)
16
+ if itemConfigPillEffect == nil then
17
+ return defaultName
18
+ end
19
+ return itemConfigPillEffect.Name
20
+ end
21
+ return ____exports
@@ -31,7 +31,8 @@ export declare function getAzazelBrimstoneDistance(playerOrTearHeight: EntityPla
31
31
  export declare function getClosestPlayer(position: Vector): EntityPlayer;
32
32
  /**
33
33
  * Most characters have a 56 frame death animation (i.e. the "Death" animation).
34
- * The Lost and Tainted Lost use a 38 frame death animation (i.e. the "LostDeath" animation).
34
+ * The Lost and Tainted Lost have a 38 frame death animation (i.e. the "LostDeath" animation).
35
+ * Tainted Forgotten have a 20 frame death animation (i.e. the "ForgottenDeath" animation).
35
36
  */
36
37
  export declare function getDeathAnimationName(player: EntityPlayer): string;
37
38
  /**
@@ -23,18 +23,18 @@ function ____exports.getPlayers(self, performExclusions)
23
23
  do
24
24
  local player = Isaac.GetPlayer(i)
25
25
  if player == nil then
26
- goto __continue53
26
+ goto __continue55
27
27
  end
28
28
  if ____exports.isChildPlayer(nil, player) then
29
- goto __continue53
29
+ goto __continue55
30
30
  end
31
31
  local character = player:GetPlayerType()
32
32
  if performExclusions and EXCLUDED_CHARACTERS:has(character) then
33
- goto __continue53
33
+ goto __continue55
34
34
  end
35
35
  __TS__ArrayPush(players, player)
36
36
  end
37
- ::__continue53::
37
+ ::__continue55::
38
38
  i = i + 1
39
39
  end
40
40
  end
@@ -135,8 +135,13 @@ function ____exports.getClosestPlayer(self, position)
135
135
  end
136
136
  function ____exports.getDeathAnimationName(self, player)
137
137
  local character = player:GetPlayerType()
138
- local isLostTypeCharacter = (((character == PlayerType.PLAYER_THELOST) or (character == PlayerType.PLAYER_THELOST_B)) or (character == PlayerType.PLAYER_THESOUL)) or (character == PlayerType.PLAYER_THESOUL_B)
139
- return (isLostTypeCharacter and "LostDeath") or "Death"
138
+ if (((character == PlayerType.PLAYER_THELOST) or (character == PlayerType.PLAYER_THELOST_B)) or (character == PlayerType.PLAYER_THESOUL)) or (character == PlayerType.PLAYER_THESOUL_B) then
139
+ return "LostDeath"
140
+ end
141
+ if character == PlayerType.PLAYER_THEFORGOTTEN_B then
142
+ return "ForgottenDeath"
143
+ end
144
+ return "Death"
140
145
  end
141
146
  function ____exports.getLastHeart(self, player)
142
147
  local hearts = player:GetHearts()
@@ -272,14 +277,14 @@ function ____exports.getPlayerIndexVanilla(self, playerToFind)
272
277
  do
273
278
  local player = Isaac.GetPlayer(i)
274
279
  if player == nil then
275
- goto __continue62
280
+ goto __continue64
276
281
  end
277
282
  local playerHash = GetPtrHash(player)
278
283
  if playerHash == playerToFindHash then
279
284
  return i
280
285
  end
281
286
  end
282
- ::__continue62::
287
+ ::__continue64::
283
288
  i = i + 1
284
289
  end
285
290
  end
@@ -1,8 +1,8 @@
1
1
  --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
2
  local ____exports = {}
3
- local ____cardNameMap = require("cardNameMap")
3
+ local ____cardNameMap = require("maps.cardNameMap")
4
4
  local CARD_NAME_MAP = ____cardNameMap.CARD_NAME_MAP
5
- local ____pillEffectNameMap = require("pillEffectNameMap")
5
+ local ____pillEffectNameMap = require("maps.pillEffectNameMap")
6
6
  local PILL_EFFECT_NAME_MAP = ____pillEffectNameMap.PILL_EFFECT_NAME_MAP
7
7
  function ____exports.getCardName(self, card)
8
8
  local itemConfig = Isaac.GetItemConfig()
@@ -1,7 +1,7 @@
1
1
  --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
2
  require("lualib_bundle");
3
3
  local ____exports = {}
4
- local ____transformationMap = require("transformationMap")
4
+ local ____transformationMap = require("maps.transformationMap")
5
5
  local ITEM_TO_TRANSFORMATION_MAP = ____transformationMap.ITEM_TO_TRANSFORMATION_MAP
6
6
  local TRANSFORMATIONS_NOT_BASED_ON_ITEMS = ____transformationMap.TRANSFORMATIONS_NOT_BASED_ON_ITEMS
7
7
  local TRANSFORMATION_TO_ITEMS_MAP = ____transformationMap.TRANSFORMATION_TO_ITEMS_MAP
@@ -2,6 +2,8 @@
2
2
  export declare function getMaxTrinketID(): int;
3
3
  /** Helper function to get all of the collectible entities in the room. */
4
4
  export declare function getTrinkets(matchingSubType?: number): EntityPickup[];
5
+ /** This is a helper function to get a trinket description from a TrinketType. */
6
+ export declare function getTrinketDescription(trinketType: TrinketType | int): string;
5
7
  /**
6
8
  * This is a helper function to get a trinket name from a TrinketType.
7
9
  *
@@ -3,7 +3,9 @@ require("lualib_bundle");
3
3
  local ____exports = {}
4
4
  local ____constants = require("constants")
5
5
  local GOLDEN_TRINKET_SHIFT = ____constants.GOLDEN_TRINKET_SHIFT
6
- local ____trinketNameMap = require("trinketNameMap")
6
+ local ____trinketDescriptionMap = require("maps.trinketDescriptionMap")
7
+ local TRINKET_DESCRIPTION_MAP = ____trinketDescriptionMap.TRINKET_DESCRIPTION_MAP
8
+ local ____trinketNameMap = require("maps.trinketNameMap")
7
9
  local TRINKET_NAME_MAP = ____trinketNameMap.TRINKET_NAME_MAP
8
10
  function ____exports.getMaxTrinketID(self)
9
11
  local itemConfig = Isaac.GetItemConfig()
@@ -23,6 +25,22 @@ function ____exports.getTrinkets(self, matchingSubType)
23
25
  end
24
26
  return collectibles
25
27
  end
28
+ function ____exports.getTrinketDescription(self, trinketType)
29
+ local itemConfig = Isaac.GetItemConfig()
30
+ local defaultDescription = "Unknown"
31
+ if type(trinketType) ~= "number" then
32
+ return defaultDescription
33
+ end
34
+ local trinketDescription = TRINKET_DESCRIPTION_MAP:get(trinketType)
35
+ if trinketDescription ~= nil then
36
+ return trinketDescription
37
+ end
38
+ local itemConfigItem = itemConfig:GetCollectible(trinketType)
39
+ if itemConfigItem == nil then
40
+ return defaultDescription
41
+ end
42
+ return itemConfigItem.Description
43
+ end
26
44
  function ____exports.getTrinketName(self, trinketType)
27
45
  local itemConfig = Isaac.GetItemConfig()
28
46
  local defaultName = "Unknown"
package/dist/index.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  export { forceNewLevelCallback, forceNewRoomCallback, } from "./callbacks/reorderedCallbacks";
2
- export * from "./cardNameMap";
3
- export * from "./collectibleNameMap";
4
2
  export * from "./constants";
5
3
  export { deployJSONRoom, deployRandomJSONRoom, emptyRoom, } from "./features/deployJSONRoom";
6
4
  export { disableAllInputs, disableAllInputsExceptFor, disableMovementInputs, disableShootingInputs, enableAllInputs, enableAllInputsExceptFor, } from "./features/disableInputs";
@@ -12,7 +10,7 @@ export * from "./features/saveDataManager/exports";
12
10
  export { hasSirenStolenFamiliar, setFamiliarNoSirenSteal, } from "./features/sirenHelpers";
13
11
  export * from "./functions/array";
14
12
  export * from "./functions/bitwise";
15
- export * from "./functions/card";
13
+ export * from "./functions/cards";
16
14
  export * from "./functions/charge";
17
15
  export * from "./functions/collectibles";
18
16
  export * from "./functions/collectibleSet";
@@ -31,9 +29,9 @@ export * from "./functions/log";
31
29
  export * from "./functions/math";
32
30
  export * from "./functions/npc";
33
31
  export * from "./functions/pickups";
32
+ export * from "./functions/pills";
34
33
  export * from "./functions/player";
35
34
  export * from "./functions/playerHealth";
36
- export * from "./functions/pocketItems";
37
35
  export * from "./functions/position";
38
36
  export * from "./functions/random";
39
37
  export * from "./functions/revive";
@@ -49,9 +47,11 @@ export * from "./functions/trinketSet";
49
47
  export * from "./functions/ui";
50
48
  export * from "./functions/util";
51
49
  export * from "./functions/vector";
52
- export * from "./pillEffectNameMap";
53
- export * from "./transformationMap";
54
- export * from "./trinketNameMap";
50
+ export * from "./maps/cardNameMap";
51
+ export * from "./maps/collectibleNameMap";
52
+ export * from "./maps/pillEffectNameMap";
53
+ export * from "./maps/transformationMap";
54
+ export * from "./maps/trinketNameMap";
55
55
  export * from "./types/CallbackParametersCustom";
56
56
  export * from "./types/HealthType";
57
57
  export * from "./types/JSONDoor";
package/dist/index.lua CHANGED
@@ -7,22 +7,6 @@ do
7
7
  ____exports.forceNewLevelCallback = forceNewLevelCallback
8
8
  ____exports.forceNewRoomCallback = forceNewRoomCallback
9
9
  end
10
- do
11
- local ____export = require("cardNameMap")
12
- for ____exportKey, ____exportValue in pairs(____export) do
13
- if ____exportKey ~= "default" then
14
- ____exports[____exportKey] = ____exportValue
15
- end
16
- end
17
- end
18
- do
19
- local ____export = require("collectibleNameMap")
20
- for ____exportKey, ____exportValue in pairs(____export) do
21
- if ____exportKey ~= "default" then
22
- ____exports[____exportKey] = ____exportValue
23
- end
24
- end
25
- end
26
10
  do
27
11
  local ____export = require("constants")
28
12
  for ____exportKey, ____exportValue in pairs(____export) do
@@ -109,7 +93,7 @@ do
109
93
  end
110
94
  end
111
95
  do
112
- local ____export = require("functions.card")
96
+ local ____export = require("functions.cards")
113
97
  for ____exportKey, ____exportValue in pairs(____export) do
114
98
  if ____exportKey ~= "default" then
115
99
  ____exports[____exportKey] = ____exportValue
@@ -255,7 +239,7 @@ do
255
239
  end
256
240
  end
257
241
  do
258
- local ____export = require("functions.player")
242
+ local ____export = require("functions.pills")
259
243
  for ____exportKey, ____exportValue in pairs(____export) do
260
244
  if ____exportKey ~= "default" then
261
245
  ____exports[____exportKey] = ____exportValue
@@ -263,7 +247,7 @@ do
263
247
  end
264
248
  end
265
249
  do
266
- local ____export = require("functions.playerHealth")
250
+ local ____export = require("functions.player")
267
251
  for ____exportKey, ____exportValue in pairs(____export) do
268
252
  if ____exportKey ~= "default" then
269
253
  ____exports[____exportKey] = ____exportValue
@@ -271,7 +255,7 @@ do
271
255
  end
272
256
  end
273
257
  do
274
- local ____export = require("functions.pocketItems")
258
+ local ____export = require("functions.playerHealth")
275
259
  for ____exportKey, ____exportValue in pairs(____export) do
276
260
  if ____exportKey ~= "default" then
277
261
  ____exports[____exportKey] = ____exportValue
@@ -399,7 +383,23 @@ do
399
383
  end
400
384
  end
401
385
  do
402
- local ____export = require("pillEffectNameMap")
386
+ local ____export = require("maps.cardNameMap")
387
+ for ____exportKey, ____exportValue in pairs(____export) do
388
+ if ____exportKey ~= "default" then
389
+ ____exports[____exportKey] = ____exportValue
390
+ end
391
+ end
392
+ end
393
+ do
394
+ local ____export = require("maps.collectibleNameMap")
395
+ for ____exportKey, ____exportValue in pairs(____export) do
396
+ if ____exportKey ~= "default" then
397
+ ____exports[____exportKey] = ____exportValue
398
+ end
399
+ end
400
+ end
401
+ do
402
+ local ____export = require("maps.pillEffectNameMap")
403
403
  for ____exportKey, ____exportValue in pairs(____export) do
404
404
  if ____exportKey ~= "default" then
405
405
  ____exports[____exportKey] = ____exportValue
@@ -407,7 +407,7 @@ do
407
407
  end
408
408
  end
409
409
  do
410
- local ____export = require("transformationMap")
410
+ local ____export = require("maps.transformationMap")
411
411
  for ____exportKey, ____exportValue in pairs(____export) do
412
412
  if ____exportKey ~= "default" then
413
413
  ____exports[____exportKey] = ____exportValue
@@ -415,7 +415,7 @@ do
415
415
  end
416
416
  end
417
417
  do
418
- local ____export = require("trinketNameMap")
418
+ local ____export = require("maps.trinketNameMap")
419
419
  for ____exportKey, ____exportValue in pairs(____export) do
420
420
  if ____exportKey ~= "default" then
421
421
  ____exports[____exportKey] = ____exportValue
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const CARD_DESCRIPTION_MAP: Map<Card, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.CARD_DESCRIPTION_MAP = __TS__New(Map, {{1, "Where journey begins"}, {2, "May you never miss your goal"}, {3, "Mother is watching you"}, {4, "May your rage bring power"}, {5, "Challenge me!"}, {6, "Two prayers for the lost"}, {7, "May you prosper and be in good health"}, {8, "May nothing stand before you"}, {9, "May your future become balanced"}, {10, "May you see what life has to offer"}, {11, "Spin the wheel of destiny"}, {12, "May your power bring rage"}, {13, "May you find enlightenment "}, {14, "Lay waste to all that oppose you "}, {15, "May you be pure in heart"}, {16, "Revel in the power of darkness"}, {17, "Destruction brings creation"}, {18, "May you find what you desire "}, {19, "May you find all you have lost"}, {20, "May the light heal and enlighten you"}, {21, "Judge lest ye be judged"}, {22, "Open your eyes and see"}, {23, "Item multiplier"}, {24, "Item multiplier"}, {25, "Item multiplier"}, {26, "Item multiplier"}, {27, "Convert all"}, {28, "Convert all"}, {29, "Convert all"}, {30, "Convert all"}, {31, "???"}, {32, "Destruction"}, {33, "Abundance"}, {34, "Passage"}, {35, "Purity"}, {36, "Vision"}, {37, "Change"}, {38, "Companionship"}, {39, "Resistance"}, {40, "???"}, {41, "Void"}, {42, "???"}, {43, "Charge it!"}, {44, "???"}, {45, "Something stinks..."}, {46, "A true ending?"}, {47, "Open Sesame"}, {48, "Double active"}, {49, "D6 + D20"}, {50, "Help from above"}, {51, "You feel protected"}, {52, "Become immense!"}, {53, "Draw 3 cards"}, {54, "Savor the moment"}, {55, "It still glows faintly"}, {56, "Let go and move on"}, {57, "May no harm come to you"}, {58, "Run"}, {59, "May your love bring protection"}, {60, "May you find a worthy opponent"}, {61, "Two prayers for the forgotten"}, {62, "May your heart shatter into pieces"}, {63, "May nothing walk past you"}, {64, "May your sins come back to torment you"}, {65, "May you see the value of all things in life"}, {66, "Throw the dice of fate"}, {67, "May you break their resolve"}, {68, "May your greed know no bounds"}, {69, "May life spring forth from the fallen"}, {70, "May your hunger be satiated"}, {71, "Bask in the light of your mercy"}, {72, "Creation brings destruction"}, {73, "May your loss bring fortune"}, {74, "May you remember lost memories"}, {75, "May the darkness swallow all around you"}, {76, "May you redeem those found wanting"}, {77, "Step into the abyss"}, {78, "???"}, {79, "<3"}, {80, "Again"}, {81, "Reroll... or not"}, {82, "Give me your love!"}, {83, "Opens the unopenable"}, {84, "Right behind you"}, {85, "Chemical warfare"}, {86, "Your very own murder"}, {87, "Slay a thousand"}, {88, "Demon rage!"}, {89, "Life after death"}, {90, "Embrace chaos"}, {91, "Leave your body behind"}, {92, "Motherhood"}, {93, "$$$"}, {94, "Bringer of calamity"}, {95, "Skeletal protector"}, {96, "Friends from beyond"}, {97, "Bound by blood"}})
5
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const CARD_NAME_MAP: Map<Card, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.CARD_NAME_MAP = __TS__New(Map, {{Card.CARD_FOOL, "0 - The Fool"}, {Card.CARD_MAGICIAN, "I - The Magician"}, {Card.CARD_HIGH_PRIESTESS, "II - The High Priestess"}, {Card.CARD_EMPRESS, "III - The Empress"}, {Card.CARD_EMPEROR, "IV - The Emperor"}, {Card.CARD_HIEROPHANT, "V - The Hierophant"}, {Card.CARD_LOVERS, "VI - The Lovers"}, {Card.CARD_CHARIOT, "VII - The Chariot"}, {Card.CARD_JUSTICE, "VIII - Justice"}, {Card.CARD_HERMIT, "IX - The Hermit"}, {Card.CARD_WHEEL_OF_FORTUNE, "X - Wheel of Fortune"}, {Card.CARD_STRENGTH, "XI - Strength"}, {Card.CARD_HANGED_MAN, "XII - The Hanged Man"}, {Card.CARD_DEATH, "XIII - Death"}, {Card.CARD_TEMPERANCE, "XIV - Temperance"}, {Card.CARD_DEVIL, "XV - The Devil"}, {Card.CARD_TOWER, "XVI - The Tower"}, {Card.CARD_STARS, "XVII - The Stars"}, {Card.CARD_MOON, "XVIII - The Moon"}, {Card.CARD_SUN, "XIX - The Sun"}, {Card.CARD_JUDGEMENT, "XX - Judgement"}, {Card.CARD_WORLD, "XXI - The World"}, {Card.CARD_CLUBS_2, "2 of Clubs"}, {Card.CARD_DIAMONDS_2, "2 of Diamonds"}, {Card.CARD_SPADES_2, "2 of Spades"}, {Card.CARD_HEARTS_2, "2 of Hearts"}, {Card.CARD_ACE_OF_CLUBS, "Ace of Clubs"}, {Card.CARD_ACE_OF_DIAMONDS, "Ace of Diamonds"}, {Card.CARD_ACE_OF_SPADES, "Ace of Spades"}, {Card.CARD_ACE_OF_HEARTS, "Ace of Hearts"}, {Card.CARD_JOKER, "Joker"}, {Card.RUNE_HAGALAZ, "Hagalaz"}, {Card.RUNE_JERA, "Jera"}, {Card.RUNE_EHWAZ, "Ehwaz"}, {Card.RUNE_DAGAZ, "Dagaz"}, {Card.RUNE_ANSUZ, "Ansuz"}, {Card.RUNE_PERTHRO, "Perthro"}, {Card.RUNE_BERKANO, "Berkano"}, {Card.RUNE_ALGIZ, "Algiz"}, {Card.RUNE_BLANK, "Blank Rune"}, {Card.RUNE_BLACK, "Black Rune"}, {Card.CARD_CHAOS, "Chaos Card"}, {Card.CARD_CREDIT, "Credit Card"}, {Card.CARD_RULES, "Rules Card"}, {Card.CARD_HUMANITY, "A Card Against Humanity"}, {Card.CARD_SUICIDE_KING, "Suicide King"}, {Card.CARD_GET_OUT_OF_JAIL, "Get Out Of Jail Free Card"}, {Card.CARD_QUESTIONMARK, "? Card"}, {Card.CARD_DICE_SHARD, "Dice Shard"}, {Card.CARD_EMERGENCY_CONTACT, "Emergency Contact"}, {Card.CARD_HOLY, "Holy Card"}, {Card.CARD_HUGE_GROWTH, "Huge Growth"}, {Card.CARD_ANCIENT_RECALL, "Ancient Recall"}, {Card.CARD_ERA_WALK, "Era Walk"}, {Card.RUNE_SHARD, "Rune Shard"}, {Card.CARD_REVERSE_FOOL, "0 - The Fool?"}, {Card.CARD_REVERSE_MAGICIAN, "I - The Magician?"}, {Card.CARD_REVERSE_HIGH_PRIESTESS, "II - The High Priestess?"}, {Card.CARD_REVERSE_EMPRESS, "III - The Empress?"}, {Card.CARD_REVERSE_EMPEROR, "IV - The Emperor?"}, {Card.CARD_REVERSE_HIEROPHANT, "V - The Hierophant?"}, {Card.CARD_REVERSE_LOVERS, "VI - The Lovers?"}, {Card.CARD_REVERSE_CHARIOT, "VII - The Chariot?"}, {Card.CARD_REVERSE_JUSTICE, "VIII - Justice?"}, {Card.CARD_REVERSE_HERMIT, "IX - The Hermit?"}, {Card.CARD_REVERSE_WHEEL_OF_FORTUNE, "X - Wheel of Fortune?"}, {Card.CARD_REVERSE_STRENGTH, "XI - Strength?"}, {Card.CARD_REVERSE_HANGED_MAN, "XII - The Hanged Man?"}, {Card.CARD_REVERSE_DEATH, "XIII - Death?"}, {Card.CARD_REVERSE_TEMPERANCE, "XIV - Temperance?"}, {Card.CARD_REVERSE_DEVIL, "XV - The Devil?"}, {Card.CARD_REVERSE_TOWER, "XVI - The Tower?"}, {Card.CARD_REVERSE_STARS, "XVII - The Stars?"}, {Card.CARD_REVERSE_MOON, "XVIII - The Moon?"}, {Card.CARD_REVERSE_SUN, "XIX - The Sun?"}, {Card.CARD_REVERSE_JUDGEMENT, "XX - Judgement?"}, {Card.CARD_REVERSE_WORLD, "XXI - The World?"}, {Card.CARD_CRACKED_KEY, "Cracked Key"}, {Card.CARD_QUEEN_OF_HEARTS, "Queen of Hearts"}, {Card.CARD_WILD, "Wild Card"}, {Card.CARD_SOUL_ISAAC, "Soul of Isaac"}, {Card.CARD_SOUL_MAGDALENE, "Soul of Magdalene"}, {Card.CARD_SOUL_CAIN, "Soul of Cain"}, {Card.CARD_SOUL_JUDAS, "Soul of Judas"}, {Card.CARD_SOUL_BLUEBABY, "Soul of ???"}, {Card.CARD_SOUL_EVE, "Soul of Eve"}, {Card.CARD_SOUL_SAMSON, "Soul of Samson"}, {Card.CARD_SOUL_AZAZEL, "Soul of Azazel"}, {Card.CARD_SOUL_LAZARUS, "Soul of Lazarus"}, {Card.CARD_SOUL_EDEN, "Soul of Eden"}, {Card.CARD_SOUL_LOST, "Soul of the Lost"}, {Card.CARD_SOUL_LILITH, "Soul of Lilith"}, {Card.CARD_SOUL_KEEPER, "Soul of the Keeper"}, {Card.CARD_SOUL_APOLLYON, "Soul of Apollyon"}, {Card.CARD_SOUL_FORGOTTEN, "Soul of the Forgotten"}, {Card.CARD_SOUL_BETHANY, "Soul of Bethany"}, {Card.CARD_SOUL_JACOB, "Soul of Jacob and Esau"}})
5
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const COLLECTIBLE_DESCRIPTION_MAP: Map<CollectibleType, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.COLLECTIBLE_DESCRIPTION_MAP = __TS__New(Map, {{1, "Tears up"}, {2, "Triple shot"}, {3, "Homing shots"}, {4, "DMG up"}, {5, "Boomerang tears"}, {6, "Tears up + range down"}, {7, "DMG up"}, {8, "Friends 'till the end"}, {9, "Fly love"}, {10, "Projectile protection"}, {11, "Extra life"}, {12, "All stats up!"}, {13, "Poison touch + speed up"}, {14, "Speed and range up"}, {15, "HP up"}, {16, "HP up"}, {17, "99 keys"}, {18, "$$$"}, {19, "10 bombs"}, {20, "We all float down here..."}, {21, "The end is near"}, {22, "HP up"}, {23, "HP up"}, {24, "HP up"}, {25, "HP up"}, {26, "HP up"}, {27, "Speed up"}, {28, "Speed up"}, {29, "Range up"}, {30, "Range up"}, {31, "Range up"}, {32, "Tears up"}, {33, "Temporary flight"}, {34, "Temporary DMG up"}, {35, "Mass room damage"}, {36, "Plop!"}, {37, "Reusable bomb buddy"}, {38, "Reusable tear burst"}, {39, "Mass paralysis"}, {40, "Become the bomb!"}, {41, "Mass fear"}, {42, "Reusable ranged bomb"}, {44, "Teleport!"}, {45, "Reusable regeneration"}, {46, "Luck up"}, {47, "Reusable air strike"}, {48, "Piercing shots"}, {49, "BLLLARRRRGGG!"}, {50, "DMG up"}, {51, "DMG up"}, {52, "???"}, {53, "Item snatcher"}, {54, "Full visible map"}, {55, "Eye in the back of your head"}, {56, "Oops..."}, {57, "Attack fly"}, {58, "Temporary invincibility"}, {60, "Building bridges"}, {62, "Kills heal"}, {63, "Stores energy"}, {64, "50% off"}, {65, "Summon bombs"}, {66, "Temporary enemy slowdown"}, {67, "Friends 'till the end"}, {68, "Laser tears"}, {69, "Charge shots"}, {70, "Speed + DMG up"}, {71, "Speed + range up"}, {72, "Tears + faith up"}, {73, "Gotta meat 'em all"}, {74, "+25 coins"}, {75, "Better pills"}, {76, "I've seen everything"}, {77, "Temporary badass"}, {78, "Reusable soul protection"}, {79, "DMG + speed up"}, {80, "DMG + tears up"}, {81, "9 lives"}, {82, "Demon wings"}, {83, "Temporary demon form"}, {84, "Reusable level skip"}, {85, "Reusable card generator "}, {86, "Summon Monstro"}, {87, "Cross tears"}, {88, "Attack buddy"}, {89, "Slow effect"}, {90, "DMG up"}, {91, "See-through doors"}, {92, "+2 hearts"}, {93, "Temporary Man-Pac"}, {94, "Gives money"}, {95, "Friends 'till the bbbbzzzt"}, {96, "Gives kisses"}, {97, "Reusable item generator"}, {98, "Soul generator"}, {99, "Sticky friend"}, {100, "Psychic friend"}, {101, "All stats up"}, {102, "Reusable pill generator"}, {103, "Poison damage"}, {104, "Split shot"}, {105, "Reroll your destiny"}, {106, "Bigger boom"}, {107, "Cut and run"}, {108, "Damage resistance"}, {109, "$$$ = DMG"}, {110, "Freeze effect"}, {111, "Toot on command"}, {112, "Extra protection"}, {113, "Auto-turret friend"}, {114, "Stab stab stab"}, {115, "Spectral tears"}, {116, "Quicker charge"}, {117, "Protective buddy"}, {118, "Blood laser barrage"}, {119, "HP up"}, {120, "Tears + speed up, DMG down"}, {121, "HP + DMG up, speed down"}, {122, "Curse up"}, {123, "Temporary buddy generator"}, {124, "It's a mystery"}, {125, "Homing bombs"}, {126, "Feel my pain"}, {127, "I don't remember..."}, {128, "Attack fly"}, {129, "HP up"}, {130, "Flight + dash attack"}, {131, "Gives bombs"}, {132, "My Xmas present"}, {133, "Soul converter"}, {134, "Cursed?"}, {135, "Portable blood bank"}, {136, "Friends 'till the end"}, {137, "Remote bomb detonation"}, {138, "DMG + HP up"}, {139, "More trinket room"}, {140, "+5 poison bombs"}, {141, "Ultimate grand supreme"}, {142, "Pray for a miracle"}, {143, "Speed + shot speed up"}, {144, "He's greedy"}, {145, "Reusable fly hive"}, {146, "Reusable eternity "}, {147, "Rocks don't stand a chance"}, {148, "Fly revenge"}, {149, "Explosive shots"}, {150, "Tooth shot"}, {151, "They grow inside"}, {152, "Extra laser"}, {153, "Quad shot"}, {154, "DMG up"}, {155, "Plop!"}, {156, "Item martyr"}, {157, "RAGE!"}, {158, "I see my future"}, {159, "Scary"}, {160, "Holy white death"}, {161, "Eternal life?"}, {162, "Blessing of protection"}, {163, "Spectral buddy"}, {164, "Reusable flames"}, {165, "Shot speed + damage up"}, {166, "Reroll the basics"}, {167, "Double shot buddy"}, {168, "On-demand air strike"}, {169, "Mega tears"}, {170, "Daddy's love"}, {171, "Mass enemy slowdown + damage"}, {172, "My fate protects me"}, {173, "Blessing of purity"}, {174, "Random buddy"}, {175, "Opens all doors..."}, {176, "HP + shot speed up"}, {177, "Gamble 24/7"}, {178, "Splash!"}, {179, "Flight eternal"}, {180, "Toot on touch"}, {181, "Flight + holy death"}, {182, "Homing shots + DMG up"}, {183, "Tears + shot speed up"}, {184, "Flight + HP up"}, {185, "Flight + spectral tears"}, {186, "Mass enemy damage at a cost"}, {187, "Swing it"}, {188, "Mirrored buddy"}, {189, "All stats up"}, {190, "99 bombs"}, {191, "Rainbow tears"}, {192, "Temporary psychic shot"}, {193, "DMG + HP up"}, {194, "Shot speed up"}, {195, "What's all this...?"}, {196, "Tears up"}, {197, "Damage + range up"}, {198, "Stuff"}, {199, "Better chest loot +2 keys"}, {200, "Charm tears"}, {201, "DMG up + concussive tears"}, {202, "Golden touch"}, {203, "1+1 free 4Evar"}, {204, "Filled with goodies"}, {205, "Infinite charge... at a cost"}, {206, "DMG + tears up. An out-of-body experience!"}, {207, "Gotta lick 'em all!"}, {208, "DMG + challenge up"}, {209, "Toxic blast +5 bombs"}, {210, "Unbreakable"}, {211, "Spider revenge"}, {212, "Eternal life?"}, {213, "Shielded tears"}, {214, "Toxic blood"}, {215, "He accepts your offering"}, {216, "DMG + evil up"}, {217, "You feel itchy..."}, {218, "Regeneration + HP up"}, {219, "HP up"}, {220, "Tear blasts +5 bombs"}, {221, "Bouncing tears"}, {222, "Anti-gravity tears + tears up"}, {223, "It hurts so good +5 bombs"}, {224, "Bursting shots + tears up"}, {225, "Sweet suffering"}, {226, "HP up x3"}, {227, "My life savings"}, {228, "Fear shot + tears up"}, {229, "Charged burst attack"}, {230, "Evil + DMG up + fear shot"}, {231, "Sticky feet..."}, {232, "Let's slow this down a bit..."}, {233, "Orbiting tears + range up"}, {234, "Infestation shot"}, {236, "Turdy touch"}, {237, "Piercing shots + DMG up"}, {238, "???"}, {239, "???"}, {240, "Some stats up, some stats down"}, {241, "Wealth... but at what cost?"}, {242, "Blocks damage... sometimes"}, {243, "You feel guarded"}, {244, "It's still being tested..."}, {245, "Double shot"}, {246, "Secrets"}, {247, "Your friends rule"}, {248, "Giant spiders and flies"}, {249, "More options"}, {250, "1+1 BOOM!"}, {251, "Extra card room"}, {252, "Extra pill room"}, {253, "HP + luck up"}, {254, "DMG + range up"}, {255, "Tears + shot speed up"}, {256, "Burning blast +5 bombs"}, {257, "Flaming tears"}, {258, "Syntax error"}, {259, "DMG up + fear shot"}, {260, "Curse immunity + evil up"}, {261, "Short range mega tears"}, {262, "Evil up. Your enemies will pay!"}, {263, "Rune mimic"}, {264, "Revenge fly"}, {265, "Immortal friend"}, {266, "Sticky babies"}, {267, "We worked out all the kinks"}, {268, "Infested friend"}, {269, "Bloody friend"}, {270, "Blood sucker"}, {271, "?"}, {272, "Big Beautiful Fly"}, {273, "Explosive thoughts"}, {274, "Sworn protector"}, {275, "Evil friend"}, {276, "Protect it"}, {277, "Fear him"}, {278, "He wants to take your life"}, {279, "Fat protector"}, {280, "She loves you"}, {281, "Scape goat"}, {282, "It's time you learned how"}, {283, "REEROLLLLL!"}, {284, "Reroll into something else"}, {285, "Reroll enemies"}, {286, "Card mimic"}, {287, "Tome of knowledge"}, {288, "It's a box of spiders"}, {289, "Flame on"}, {290, "Save your life"}, {291, "..."}, {292, "Reusable evil... but at what cost?"}, {293, "Krampus rage"}, {294, "Reusable knock-back"}, {295, "Pay to win"}, {296, "Convert your soul"}, {297, "? ?"}, {298, "You feel stumped"}, {299, "Speed down + rage is building"}, {300, "Ramming speed"}, {301, "HP up + you feel protected"}, {302, "Stompy"}, {303, "You feel refreshed and protected"}, {304, "You feel balanced"}, {305, "Poison tears"}, {306, "Piercing shots + speed up"}, {307, "All stats up"}, {308, "Trail of tears"}, {309, "Tears up + knock-back shot"}, {310, "DMG up, tears + shot speed down"}, {311, "Sweet revenge"}, {312, "HP up + you feel healthy"}, {313, "Holy shield"}, {314, "HP up + speed down + you feel stompy"}, {315, "Magnetic tears"}, {316, "Cursed charge shot"}, {317, "Toxic splash damage"}, {318, "Conjoined friend"}, {319, "Near-sighted friend"}, {320, "Controlled friend"}, {321, "The ol' ball and chain"}, {322, "Mongo friend"}, {323, "Collected tears"}, {324, "Undefined"}, {325, "Lose your head"}, {326, "Invincibility at a cost"}, {327, "Fate chosen"}, {328, "Fate chosen"}, {329, "Controlled tears"}, {330, "DMG down + tears way up"}, {331, "God tears"}, {332, "Eternal life?"}, {333, "I know all"}, {334, "I feel all"}, {335, "I am all"}, {336, "Toxic aura tears"}, {337, "I think it's broken"}, {338, "It will never leave you"}, {339, "Evil + range + shot speed up"}, {340, "Speed up + size down"}, {341, "Tears + shot speed up"}, {342, "HP + tears up + shot speed down"}, {343, "Luck up"}, {344, "Evil up"}, {345, "DMG + range up"}, {346, "HP up"}, {347, "Double item vision"}, {348, "Pill mimic"}, {349, "Flip a coin"}, {350, "Mass poison"}, {351, "Giga fart!"}, {352, "Be gentle..."}, {353, "Cross blast + 5 bombs"}, {354, "HP up. Don't swallow the prize!"}, {355, "Range + luck up"}, {356, "Active power up"}, {357, "Double your friends"}, {358, "Double wiz shot!"}, {359, "Stick it to 'em!"}, {360, "Dark friend"}, {361, "Your fate beside you"}, {362, "What's in the box?"}, {363, "Protective friend"}, {364, "Friendly fly"}, {365, "Lost protector"}, {366, "We put bombs in your bombs!"}, {367, "Egg sack bombs!"}, {368, "Intensifying tears"}, {369, "Transcendent tears"}, {370, "Range + tears up"}, {371, "Embrace chaos"}, {372, "Bbbzzzzzt! "}, {373, "Accuracy brings power"}, {374, "Holy death shot"}, {375, "Blast resistance"}, {376, "Never ending stores!"}, {377, "Spider love"}, {378, "Uh oh..."}, {379, "Wide shot"}, {380, "Money talks"}, {381, "Tears up + your future shines brighter"}, {382, "Gotta fetch 'em all!"}, {383, "Remote tear detonation"}, {384, "A gurd of your own!"}, {385, "Bumbo want coin!"}, {386, "Rerolls rocks"}, {387, "Peace be with you"}, {388, "He wants your keys!"}, {389, "Rune generator"}, {390, "Sworn friend"}, {391, "Turn your enemy"}, {392, "The heavens will change you"}, {393, "The kiss of death"}, {394, "Directed tears"}, {395, "Laser ring tears"}, {396, "Short cutter"}, {397, "Controlled tears"}, {398, "Shrink shot!"}, {399, "Consume thy enemy!"}, {400, "Your destiny"}, {401, "Sticky bomb shot"}, {402, "!!!"}, {403, "Mod buddy"}, {404, "He farts"}, {405, "Double tap glitch"}, {406, "Reroll stats"}, {407, "Aura stat boost"}, {408, "Call to the void"}, {409, "I reward an empty vessel"}, {410, "Eye shot"}, {411, "Their blood brings rage!"}, {412, "Feed them hate"}, {413, "Feed them love"}, {414, "There's options"}, {415, "The untainted gain power"}, {416, "More money!"}, {417, "Damage booster"}, {418, "Rainbow effects!"}, {419, "I-Teleport!"}, {420, "Spin the black circle!"}, {421, "Love toots"}, {422, "Turn back time"}, {423, "Protect me from myself"}, {424, "More sacks!"}, {425, "Scared of the dark?"}, {426, "Follows my every move..."}, {427, "Booom!"}, {428, "You feel cozy"}, {429, "Penny tears"}, {430, "Turret follower"}, {431, "ydduB Buddy"}, {432, "Prize bombs"}, {433, "Me! And my shaaaadow!"}, {434, "Bug catcher"}, {435, "4-way buddy!"}, {436, "Don't cry over it..."}, {437, "Roll again"}, {438, "Tears up"}, {439, "What's inside?"}, {440, "Matt's kidney stone"}, {441, "Laser breath"}, {442, "Loss is power"}, {443, "Trick or treat?"}, {444, "He's a bleeder!"}, {445, "Bark at the moon!"}, {446, "Toxic breath"}, {447, "Crying makes me toot"}, {448, "Blood and guts!"}, {449, "It itches..."}, {450, "Gold tears!"}, {451, "I see the future"}, {452, "I'm leaking..."}, {453, "Bone tears!"}, {454, "Hold me!"}, {455, "I remember this..."}, {456, "HP up"}, {457, "Hard headed!"}, {458, "What's in there?"}, {459, "Booger tears!"}, {460, "Blind tears!"}, {461, "Egg tears!"}, {462, "Possessed tears!"}, {463, "Acid tears!"}, {464, "A gift from above"}, {465, "360 tears!"}, {466, "Outbreak!"}, {467, "Watch where you point that!"}, {468, "It follows"}, {469, ":("}, {470, "Lil hush!"}, {471, "Ain't he cute?"}, {472, "Hail to the king baby"}, {473, "Chub chub"}, {474, "You broke it!"}, {475, "My last resort"}, {476, "What will it be?"}, {477, "Consume"}, {478, "Stop!"}, {479, "Trinket melter!"}, {480, "Gain more friends!"}, {481, "109"}, {482, "Change"}, {483, "BOOOOOOOOOM!"}, {484, "I can't believe it's not butter bean!"}, {485, "50/50"}, {486, "I feel numb..."}, {487, "A pound of flesh..."}, {488, "Waggles a finger"}, {489, "Reroll forever"}, {490, "..."}, {491, "Pills pills pills!"}, {492, "Yo listen!"}, {493, "Panic = power"}, {494, "Electric tears"}, {495, "Flame tears"}, {496, "Needle shot"}, {497, "Camo kid"}, {498, "You feel very balanced"}, {499, "Peace be with you"}, {500, "Gives sacks"}, {501, "Money = health!"}, {502, "Creep shots"}, {503, "Big brother is watching"}, {504, "Friendly fly"}, {505, "Gotta catch em..."}, {506, "Watch your back!"}, {507, "More blood!"}, {508, "It's sharp!"}, {509, "Bloody friend"}, {510, "Unleash the power!"}, {511, "He's violent"}, {512, "Nothing can escape"}, {513, "Party time!"}, {514, "Lag!"}, {515, "Wrapped up nice for you!"}, {516, "Sprinkles."}, {517, "Rapid bomb drops"}, {518, "What could it be?!"}, {519, "Delirious friend"}, {520, "Bloody recharge"}, {521, "Allow 6 weeks for delivery"}, {522, "Power of the mind"}, {523, "Pack and unpack"}, {524, "Static tears"}, {525, "You're tearing me apart!"}, {526, "Lil harbingers!"}, {527, "Caaan do!"}, {528, "Eclipsed by the moon"}, {529, "Eyeball tears"}, {530, "Just hope you're not next..."}, {531, "I'm seeing red..."}, {532, "Feed them!"}, {533, "Smite thy enemy"}, {534, "Extra active item room"}, {535, "You feel safe"}, {536, "He demands a sacrifice"}, {537, "Puking buddy"}, {538, "Choking hazard"}, {539, "Sacrificial insemination"}, {540, "Skipping tears"}, {541, "HP up?"}, {542, "Projectile shield"}, {543, "Portable sanctuary"}, {544, "Stabbing time"}, {545, "Rise from the grave"}, {546, "Father's blessing"}, {547, "Tears up + you feel empty"}, {548, "Fetch!"}, {549, "Everything hurts"}, {550, "It feels cursed"}, {551, "It feels cursed"}, {552, "Lost but not forgotten"}, {553, "Spore shot"}, {554, "4me"}, {555, "Pain from gain"}, {556, "Temporary demon form"}, {557, "Reusable fortunes"}, {558, "More eyes"}, {559, "Zap!"}, {560, "No it doesn't..."}, {561, "DMG down + tears up + you feel nutty"}, {562, "It's only up from there"}, {563, "Random blast +5 bombs"}, {564, "Tears + shot speed up"}, {565, "What a cute little thing!"}, {566, "Sweet dreams"}, {567, "Keep the flame burning"}, {568, "Double tap shield"}, {569, "Bleed me dry"}, {570, "Tasty rainbow"}, {571, "Speed up + your feet feel stronger"}, {572, "DMG up + range up + controlled tears"}, {573, "Halo of tears"}, {574, "Purifying light"}, {575, "Invasive friend"}, {576, "Filthy friends"}, {577, "A king's fortune... but at what cost?"}, {578, "Party time!"}, {579, "Divine blade"}, {580, "Explore the other side"}, {581, "Flamboyant protector"}, {582, "Tears up. A mind changing experience!"}, {583, "Rocket propulsion +5 bombs"}, {584, "Spiritual companionship"}, {585, "A sacred offering"}, {586, "May you get what you came for"}, {588, "Radiant victory"}, {589, "The moon's blessing shines upon you"}, {590, "Speed up + you feel elusive"}, {591, "HP up + you feel pretty"}, {592, "Born to rock"}, {593, "Double tap dash"}, {594, "You're a gas giant!"}, {595, "Ring of tears"}, {596, "Ice tears"}, {597, "Open the floodgates"}, {598, "Size down"}, {599, "Extra curse rooms"}, {600, "Tears up"}, {601, "Tears up, you feel forgiven"}, {602, "Exclusive access!"}, {603, "Instant energy!"}, {604, "Mother's strength"}, {605, "Plop!"}, {606, "Stare into the abyss"}, {607, "Messy friend"}, {608, "Iced iced baby"}, {609, "???"}, {610, "Fat buddy"}, {611, "Hear my pain"}, {612, "Protect him"}, {614, "Bloody blast + HP up"}, {615, "Puffy buddy"}, {616, "It burns"}, {617, "Magnetizing tears"}, {618, "Delicious!"}, {619, "???"}, {621, "Full HP + temporary DMG up"}, {622, "In the beginning"}, {623, "Open your enemies"}, {624, "Collect them all!"}, {625, "I'm a big boy now!"}, {626, "???"}, {627, "???"}, {628, "Where am I?"}, {629, "Defense drone"}, {631, "Slice but no dice"}, {632, "Luck up + you feel protected"}, {633, "Ascended"}, {634, "Help from beyond"}, {635, "Bait and switch"}, {636, "Time to start over"}, {637, "They pack a punch!"}, {638, "Erase thy enemy"}, {639, "Gross!"}, {640, "Unleash their sorrow"}, {641, "Spill your guts"}, {642, "All your desires fulfilled"}, {643, "Awaken your faith"}, {644, "+1 to lowest stat"}, {645, "Itching for revenge"}, {646, "Demon blast +5 bombs"}, {647, "Beat the juice out of them!"}, {649, "Bouncy friend"}, {650, "Play time!"}, {651, "Follow the light"}, {652, "Kick it!"}, {653, "Begone!"}, {654, "Worse pills + evil up"}, {655, "Let it rip!"}, {656, "A king's fortune... but at what cost?"}, {657, "Clogged enemies"}, {658, "Micro friends"}, {659, "Tear size + range up"}, {660, "A link to your future"}, {661, "They lurk inside"}, {663, "You feel prickly"}, {664, "All you can eat"}, {665, "An eye for secrets"}, {667, "A helping hand"}, {668, "..."}, {669, "All stats up"}, {670, "There might be options"}, {671, "Power of love"}, {672, "Blood money"}, {673, "Deliver me from evil"}, {674, "Unfinished business"}, {675, "Shards of knowledge"}, {676, "It multiplies"}, {677, "The true out-of-body experience!"}, {678, "Fetus shots"}, {679, "Abyssal friend"}, {680, "Oh no..."}, {681, "It hungers"}, {682, "Clingy buddy"}, {683, "Break your enemies"}, {684, "Out for blood"}, {685, "Your faith grows"}, {686, "Power of faith"}, {687, "Best friends forever!"}, {688, "Let him free"}, {689, "?????"}, {690, "Bounce away!"}, {691, "Destined for greatness"}, {692, "He awaits your offering"}, {693, "Infest"}, {694, "Eternal sorrow"}, {695, "May your rage bring haste"}, {696, "Divine protection"}, {697, "He wants revenge"}, {698, "Double trouble!"}, {699, "Ancient power"}, {700, "I can see see the future future future"}, {701, "Buried memories"}, {702, "Hot blooded"}, {703, "Lost brother"}, {704, "Rip and tear"}, {705, "One with the shadows"}, {706, "Come forth from the depths"}, {707, "HP up"}, {708, "DMG up"}, {709, "Angel breaker"}, {710, "Make your destiny"}, {711, "Life and death"}, {712, "Item summoner"}, {713, "Return"}, {714, "Come back"}, {715, "Saved for later"}, {716, "Spending power"}, {717, "Under a rock"}, {719, "Portable shop"}, {720, "Anything is possible"}, {721, "Isaac and his mother lived alone in a small house on a hill"}, {722, "Repent"}, {723, "-1"}, {724, "Thick blooded"}, {725, "Your stomach rumbles"}, {726, "Double tap sneeze"}, {727, "Spooky blast +5 bombs"}, {728, "Demonic gestation"}, {729, "Chuck away!"}, {730, "DMG + luck up"}, {731, "DMG + range up"}, {732, "DMG up"}})
5
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const COLLECTIBLE_NAME_MAP: Map<CollectibleType, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.COLLECTIBLE_NAME_MAP = __TS__New(Map, {{1, "The Sad Onion"}, {2, "The Inner Eye"}, {3, "Spoon Bender"}, {4, "Cricket's Head"}, {5, "My Reflection"}, {6, "Number One"}, {7, "Blood of the Martyr"}, {8, "Brother Bobby"}, {9, "Skatole"}, {10, "Halo of Flies"}, {11, "1up!"}, {12, "Magic Mushroom"}, {13, "The Virus"}, {14, "Roid Rage"}, {15, "<3"}, {16, "Raw Liver"}, {17, "Skeleton Key"}, {18, "A Dollar"}, {19, "Boom!"}, {20, "Transcendence"}, {21, "The Compass"}, {22, "Lunch"}, {23, "Dinner"}, {24, "Dessert"}, {25, "Breakfast"}, {26, "Rotten Meat"}, {27, "Wooden Spoon"}, {28, "The Belt"}, {29, "Mom's Underwear"}, {30, "Mom's Heels"}, {31, "Mom's Lipstick"}, {32, "Wire Coat Hanger"}, {33, "The Bible"}, {34, "The Book of Belial"}, {35, "The Necronomicon"}, {36, "The Poop"}, {37, "Mr. Boom"}, {38, "Tammy's Head"}, {39, "Mom's Bra"}, {40, "Kamikaze!"}, {41, "Mom's Pad"}, {42, "Bob's Rotten Head"}, {44, "Teleport!"}, {45, "Yum Heart"}, {46, "Lucky Foot"}, {47, "Doctor's Remote"}, {48, "Cupid's Arrow"}, {49, "Shoop da Whoop!"}, {50, "Steven"}, {51, "Pentagram"}, {52, "Dr. Fetus"}, {53, "Magneto"}, {54, "Treasure Map"}, {55, "Mom's Eye"}, {56, "Lemon Mishap"}, {57, "Distant Admiration"}, {58, "Book of Shadows"}, {60, "The Ladder"}, {62, "Charm of the Vampire"}, {63, "The Battery"}, {64, "Steam Sale"}, {65, "Anarchist Cookbook"}, {66, "The Hourglass"}, {67, "Sister Maggy"}, {68, "Technology"}, {69, "Chocolate Milk"}, {70, "Growth Hormones"}, {71, "Mini Mush"}, {72, "Rosary"}, {73, "Cube of Meat"}, {74, "A Quarter"}, {75, "PHD"}, {76, "X-Ray Vision"}, {77, "My Little Unicorn"}, {78, "Book of Revelations"}, {79, "The Mark"}, {80, "The Pact"}, {81, "Dead Cat"}, {82, "Lord of the Pit"}, {83, "The Nail"}, {84, "We Need To Go Deeper!"}, {85, "Deck of Cards"}, {86, "Monstro's Tooth"}, {87, "Loki's Horns"}, {88, "Little Chubby"}, {89, "Spider Bite"}, {90, "The Small Rock"}, {91, "Spelunker Hat"}, {92, "Super Bandage"}, {93, "The Gamekid"}, {94, "Sack of Pennies"}, {95, "Robo-Baby"}, {96, "Little C.H.A.D."}, {97, "The Book of Sin"}, {98, "The Relic"}, {99, "Little Gish"}, {100, "Little Steven"}, {101, "The Halo"}, {102, "Mom's Bottle of Pills"}, {103, "The Common Cold"}, {104, "The Parasite"}, {105, "The D6"}, {106, "Mr. Mega"}, {107, "The Pinking Shears"}, {108, "The Wafer"}, {109, "Money = Power"}, {110, "Mom's Contacts"}, {111, "The Bean"}, {112, "Guardian Angel"}, {113, "Demon Baby"}, {114, "Mom's Knife"}, {115, "Ouija Board"}, {116, "9 Volt"}, {117, "Dead Bird"}, {118, "Brimstone"}, {119, "Blood Bag"}, {120, "Odd Mushroom"}, {121, "Odd Mushroom"}, {122, "Whore of Babylon"}, {123, "Monster Manual"}, {124, "Dead Sea Scrolls"}, {125, "Bobby-Bomb"}, {126, "Razor Blade"}, {127, "Forget Me Now"}, {128, "Forever Alone"}, {129, "Bucket of Lard"}, {130, "A Pony"}, {131, "Bomb Bag"}, {132, "A Lump of Coal"}, {133, "Guppy's Paw"}, {134, "Guppy's Tail"}, {135, "IV Bag"}, {136, "Best Friend"}, {137, "Remote Detonator"}, {138, "Stigmata"}, {139, "Mom's Purse"}, {140, "Bob's Curse"}, {141, "Pageant Boy"}, {142, "Scapular"}, {143, "Speed Ball"}, {144, "Bum Friend"}, {145, "Guppy's Head"}, {146, "Prayer Card"}, {147, "Notched Axe"}, {148, "Infestation"}, {149, "Ipecac"}, {150, "Tough Love"}, {151, "The Mulligan"}, {152, "Technology 2"}, {153, "Mutant Spider"}, {154, "Chemical Peel"}, {155, "The Peeper"}, {156, "Habit"}, {157, "Bloody Lust"}, {158, "Crystal Ball"}, {159, "Spirit of the Night"}, {160, "Crack the Sky"}, {161, "Ankh"}, {162, "Celtic Cross"}, {163, "Ghost Baby"}, {164, "The Candle"}, {165, "Cat-o-nine-tails"}, {166, "D20"}, {167, "Harlequin Baby"}, {168, "Epic Fetus"}, {169, "Polyphemus"}, {170, "Daddy Longlegs"}, {171, "Spider Butt"}, {172, "Sacrificial Dagger"}, {173, "Mitre"}, {174, "Rainbow Baby"}, {175, "Dad's Key"}, {176, "Stem Cells"}, {177, "Portable Slot"}, {178, "Holy Water"}, {179, "Fate"}, {180, "The Black Bean"}, {181, "White Pony"}, {182, "Sacred Heart"}, {183, "Tooth Picks"}, {184, "Holy Grail"}, {185, "Dead Dove"}, {186, "Blood Rights"}, {187, "Guppy's Hairball"}, {188, "Abel"}, {189, "SMB Super Fan"}, {190, "Pyro"}, {191, "3 Dollar Bill"}, {192, "Telepathy For Dummies"}, {193, "MEAT!"}, {194, "Magic 8 Ball"}, {195, "Mom's Coin Purse"}, {196, "Squeezy"}, {197, "Jesus Juice"}, {198, "Box"}, {199, "Mom's Key"}, {200, "Mom's Eyeshadow"}, {201, "Iron Bar"}, {202, "Midas' Touch"}, {203, "Humbleing Bundle"}, {204, "Fanny Pack"}, {205, "Sharp Plug"}, {206, "Guillotine"}, {207, "Ball of Bandages"}, {208, "Champion Belt"}, {209, "Butt Bombs"}, {210, "Gnawed Leaf"}, {211, "Spiderbaby"}, {212, "Guppy's Collar"}, {213, "Lost Contact"}, {214, "Anemic"}, {215, "Goat Head"}, {216, "Ceremonial Robes"}, {217, "Mom's Wig"}, {218, "Placenta"}, {219, "Old Bandage"}, {220, "Sad Bombs"}, {221, "Rubber Cement"}, {222, "Anti-Gravity"}, {223, "Pyromaniac"}, {224, "Cricket's Body"}, {225, "Gimpy"}, {226, "Black Lotus"}, {227, "Piggy Bank"}, {228, "Mom's Perfume"}, {229, "Monstro's Lung"}, {230, "Abaddon"}, {231, "Ball of Tar"}, {232, "Stop Watch"}, {233, "Tiny Planet"}, {234, "Infestation 2"}, {236, "E. Coli"}, {237, "Death's Touch"}, {238, "Key Piece 1"}, {239, "Key Piece 2"}, {240, "Experimental Treatment"}, {241, "Contract from Below"}, {242, "Infamy"}, {243, "Trinity Shield"}, {244, "Tech.5"}, {245, "20/20"}, {246, "Blue Map"}, {247, "BFFS!"}, {248, "Hive Mind"}, {249, "There's Options"}, {250, "BOGO Bombs"}, {251, "Starter Deck"}, {252, "Little Baggy"}, {253, "Magic Scab"}, {254, "Blood Clot"}, {255, "Screw"}, {256, "Hot Bombs"}, {257, "Fire Mind"}, {258, "Missing No."}, {259, "Dark Matter"}, {260, "Black Candle"}, {261, "Proptosis"}, {262, "Missing Page 2"}, {263, "Clear Rune"}, {264, "Smart Fly"}, {265, "Dry Baby"}, {266, "Juicy Sack"}, {267, "Robo-Baby 2.0"}, {268, "Rotten Baby"}, {269, "Headless Baby"}, {270, "Leech"}, {271, "Mystery Sack"}, {272, "BBF"}, {273, "Bob's Brain"}, {274, "Best Bud"}, {275, "Lil Brimstone"}, {276, "Isaac's Heart"}, {277, "Lil Haunt"}, {278, "Dark Bum"}, {279, "Big Fan"}, {280, "Sissy Longlegs"}, {281, "Punching Bag"}, {282, "How to Jump"}, {283, "D100"}, {284, "D4"}, {285, "D10"}, {286, "Blank Card"}, {287, "Book of Secrets"}, {288, "Box of Spiders"}, {289, "Red Candle"}, {290, "The Jar"}, {291, "Flush!"}, {292, "Satanic Bible"}, {293, "Head of Krampus"}, {294, "Butter Bean"}, {295, "Magic Fingers"}, {296, "Converter"}, {297, "Pandora's Box"}, {298, "Unicorn Stump"}, {299, "Taurus"}, {300, "Aries"}, {301, "Cancer"}, {302, "Leo"}, {303, "Virgo"}, {304, "Libra"}, {305, "Scorpio"}, {306, "Sagittarius"}, {307, "Capricorn"}, {308, "Aquarius"}, {309, "Pisces"}, {310, "Eve's Mascara"}, {311, "Judas' Shadow"}, {312, "Maggy's Bow"}, {313, "Holy Mantle"}, {314, "Thunder Thighs"}, {315, "Strange Attractor"}, {316, "Cursed Eye"}, {317, "Mysterious Liquid"}, {318, "Gemini"}, {319, "Cain's Other Eye"}, {320, "???'s Only Friend"}, {321, "Samson's Chains"}, {322, "Mongo Baby"}, {323, "Isaac's Tears"}, {324, "Undefined"}, {325, "Scissors"}, {326, "Breath of Life"}, {327, "The Polaroid"}, {328, "The Negative"}, {329, "The Ludovico Technique"}, {330, "Soy Milk"}, {331, "Godhead"}, {332, "Lazarus' Rags"}, {333, "The Mind"}, {334, "The Body"}, {335, "The Soul"}, {336, "Dead Onion"}, {337, "Broken Watch"}, {338, "The Boomerang"}, {339, "Safety Pin"}, {340, "Caffeine Pill"}, {341, "Torn Photo"}, {342, "Blue Cap"}, {343, "Latch Key"}, {344, "Match Book"}, {345, "Synthoil"}, {346, "A Snack"}, {347, "Diplopia"}, {348, "Placebo"}, {349, "Wooden Nickel"}, {350, "Toxic Shock"}, {351, "Mega Bean"}, {352, "Glass Cannon"}, {353, "Bomber Boy"}, {354, "Crack Jacks"}, {355, "Mom's Pearls"}, {356, "Car Battery"}, {357, "Box of Friends"}, {358, "The Wiz"}, {359, "8 Inch Nails"}, {360, "Incubus"}, {361, "Fate's Reward"}, {362, "Lil Chest"}, {363, "Sworn Protector"}, {364, "Friend Zone"}, {365, "Lost Fly"}, {366, "Scatter Bombs"}, {367, "Sticky Bombs"}, {368, "Epiphora"}, {369, "Continuum"}, {370, "Mr. Dolly"}, {371, "Curse of the Tower"}, {372, "Charged Baby"}, {373, "Dead Eye"}, {374, "Holy Light"}, {375, "Host Hat"}, {376, "Restock"}, {377, "Bursting Sack"}, {378, "Number Two"}, {379, "Pupula Duplex"}, {380, "Pay To Play"}, {381, "Eden's Blessing"}, {382, "Friendly Ball"}, {383, "Tear Detonator"}, {384, "Lil Gurdy"}, {385, "Bumbo"}, {386, "D12"}, {387, "Censer"}, {388, "Key Bum"}, {389, "Rune Bag"}, {390, "Seraphim"}, {391, "Betrayal"}, {392, "Zodiac"}, {393, "Serpent's Kiss"}, {394, "Marked"}, {395, "Tech X"}, {396, "Ventricle Razor"}, {397, "Tractor Beam"}, {398, "God's Flesh"}, {399, "Maw of the Void"}, {400, "Spear of Destiny"}, {401, "Explosivo"}, {402, "Chaos"}, {403, "Spider Mod"}, {404, "Farting Baby"}, {405, "GB Bug"}, {406, "D8"}, {407, "Purity"}, {408, "Athame"}, {409, "Empty Vessel"}, {410, "Evil Eye"}, {411, "Lusty Blood"}, {412, "Cambion Conception"}, {413, "Immaculate Conception"}, {414, "More Options"}, {415, "Crown of Light"}, {416, "Deep Pockets"}, {417, "Succubus"}, {418, "Fruit Cake"}, {419, "Teleport 2.0"}, {420, "Black Powder"}, {421, "Kidney Bean"}, {422, "Glowing Hour Glass"}, {423, "Circle of Protection"}, {424, "Sack Head"}, {425, "Night Light"}, {426, "Obsessed Fan"}, {427, "Mine Crafter"}, {428, "PJs"}, {429, "Head of the Keeper"}, {430, "Papa Fly"}, {431, "Multidimensional Baby"}, {432, "Glitter Bombs"}, {433, "My Shadow"}, {434, "Jar of Flies"}, {435, "Lil Loki"}, {436, "Milk!"}, {437, "D7"}, {438, "Binky"}, {439, "Mom's Box"}, {440, "Kidney Stone"}, {441, "Mega Blast"}, {442, "Dark Prince's Crown"}, {443, "Apple!"}, {444, "Lead Pencil"}, {445, "Dog Tooth"}, {446, "Dead Tooth"}, {447, "Linger Bean"}, {448, "Shard of Glass"}, {449, "Metal Plate"}, {450, "Eye of Greed"}, {451, "Tarot Cloth"}, {452, "Varicose Veins"}, {453, "Compound Fracture"}, {454, "Polydactyly"}, {455, "Dad's Lost Coin"}, {456, "Midnight Snack"}, {457, "Cone Head"}, {458, "Belly Button"}, {459, "Sinus Infection"}, {460, "Glaucoma"}, {461, "Parasitoid"}, {462, "Eye of Belial"}, {463, "Sulfuric Acid"}, {464, "Glyph of Balance"}, {465, "Analog Stick"}, {466, "Contagion"}, {467, "Finger!"}, {468, "Shade"}, {469, "Depression"}, {470, "Hushy"}, {471, "Lil Monstro"}, {472, "King Baby"}, {473, "Big Chubby"}, {474, "Broken Glass Cannon"}, {475, "Plan C"}, {476, "D1"}, {477, "Void"}, {478, "Pause"}, {479, "Smelter"}, {480, "Compost"}, {481, "Dataminer"}, {482, "Clicker"}, {483, "Mama Mega!"}, {484, "Wait What?"}, {485, "Crooked Penny"}, {486, "Dull Razor"}, {487, "Potato Peeler"}, {488, "Metronome"}, {489, "D infinity"}, {490, "Eden's Soul"}, {491, "Acid Baby"}, {492, "YO LISTEN!"}, {493, "Adrenaline"}, {494, "Jacob's Ladder"}, {495, "Ghost Pepper"}, {496, "Euthanasia"}, {497, "Camo Undies"}, {498, "Duality"}, {499, "Eucharist"}, {500, "Sack of Sacks"}, {501, "Greed's Gullet"}, {502, "Large Zit"}, {503, "Little Horn"}, {504, "Brown Nugget"}, {505, "Poke Go"}, {506, "Backstabber"}, {507, "Sharp Straw"}, {508, "Mom's Razor"}, {509, "Bloodshot Eye"}, {510, "Delirious"}, {511, "Angry Fly"}, {512, "Black Hole"}, {513, "Bozo"}, {514, "Broken Modem"}, {515, "Mystery Gift"}, {516, "Sprinkler"}, {517, "Fast Bombs"}, {518, "Buddy in a Box"}, {519, "Lil Delirium"}, {520, "Jumper Cables"}, {521, "Coupon"}, {522, "Telekinesis"}, {523, "Moving Box"}, {524, "Technology Zero"}, {525, "Leprosy"}, {526, "7 Seals"}, {527, "Mr. ME!"}, {528, "Angelic Prism"}, {529, "Pop!"}, {530, "Death's List"}, {531, "Haemolacria"}, {532, "Lachryphagy"}, {533, "Trisagion"}, {534, "Schoolbag"}, {535, "Blanket"}, {536, "Sacrificial Altar"}, {537, "Lil Spewer"}, {538, "Marbles"}, {539, "Mystery Egg"}, {540, "Flat Stone"}, {541, "Marrow"}, {542, "Slipped Rib"}, {543, "Hallowed Ground"}, {544, "Pointy Rib"}, {545, "Book of the Dead"}, {546, "Dad's Ring"}, {547, "Divorce Papers"}, {548, "Jaw Bone"}, {549, "Brittle Bones"}, {550, "Broken Shovel"}, {551, "Broken Shovel"}, {552, "Mom's Shovel"}, {553, "Mucormycosis"}, {554, "2Spooky"}, {555, "Golden Razor"}, {556, "Sulfur"}, {557, "Fortune Cookie"}, {558, "Eye Sore"}, {559, "120 Volt"}, {560, "It Hurts"}, {561, "Almond Milk"}, {562, "Rock Bottom"}, {563, "Nancy Bombs"}, {564, "A Bar of Soap"}, {565, "Blood Puppy"}, {566, "Dream Catcher"}, {567, "Paschal Candle"}, {568, "Divine Intervention"}, {569, "Blood Oath"}, {570, "Playdough Cookie"}, {571, "Orphan Socks"}, {572, "Eye of the Occult"}, {573, "Immaculate Heart"}, {574, "Monstrance"}, {575, "The Intruder"}, {576, "Dirty Mind"}, {577, "Damocles"}, {578, "Free Lemonade"}, {579, "Spirit Sword"}, {580, "Red Key"}, {581, "Psy Fly"}, {582, "Wavy Cap"}, {583, "Rocket in a Jar"}, {584, "Book of Virtues"}, {585, "Alabaster Box"}, {586, "The Stairway"}, {588, "Sol"}, {589, "Luna"}, {590, "Mercurius"}, {591, "Venus"}, {592, "Terra"}, {593, "Mars"}, {594, "Jupiter"}, {595, "Saturnus"}, {596, "Uranus"}, {597, "Neptunus"}, {598, "Pluto"}, {599, "Voodoo Head"}, {600, "Eye Drops"}, {601, "Act of Contrition"}, {602, "Member Card"}, {603, "Battery Pack"}, {604, "Mom's Bracelet"}, {605, "The Scooper"}, {606, "Ocular Rift"}, {607, "Boiled Baby"}, {608, "Freezer Baby"}, {609, "Eternal D6"}, {610, "Bird Cage"}, {611, "Larynx"}, {612, "Lost Soul"}, {614, "Blood Bombs"}, {615, "Lil Dumpy"}, {616, "Bird's Eye"}, {617, "Lodestone"}, {618, "Rotten Tomato"}, {619, "Birthright"}, {621, "Red Stew"}, {622, "Genesis"}, {623, "Sharp Key"}, {624, "Booster Pack"}, {625, "Mega Mush"}, {626, "Knife Piece 1"}, {627, "Knife Piece 2"}, {628, "Death Certificate"}, {629, "Bot Fly"}, {631, "Meat Cleaver"}, {632, "Evil Charm"}, {633, "Dogma"}, {634, "Purgatory"}, {635, "Stitches"}, {636, "R Key"}, {637, "Knockout Drops"}, {638, "Eraser"}, {639, "Yuck Heart"}, {640, "Urn of Souls"}, {641, "Akeldama"}, {642, "Magic Skin"}, {643, "Revelation"}, {644, "Consolation Prize"}, {645, "Tinytoma"}, {646, "Brimstone Bombs"}, {647, "4.5 Volt"}, {649, "Fruity Plum"}, {650, "Plum Flute"}, {651, "Star of Bethlehem"}, {652, "Cube Baby"}, {653, "Vade Retro"}, {654, "False PHD"}, {655, "Spin to Win"}, {656, "Damocles"}, {657, "Vasculitis"}, {658, "Giant Cell"}, {659, "Tropicamide"}, {660, "Card Reading"}, {661, "Quints"}, {663, "Tooth and Nail"}, {664, "Binge Eater"}, {665, "Guppy's Eye"}, {667, "Strawman"}, {668, "Dad's Note"}, {669, "Sausage"}, {670, "Options?"}, {671, "Candy Heart"}, {672, "A Pound of Flesh"}, {673, "Redemption"}, {674, "Spirit Shackles"}, {675, "Cracked Orb"}, {676, "Empty Heart"}, {677, "Astral Projection"}, {678, "C Section"}, {679, "Lil Abaddon"}, {680, "Montezuma's Revenge"}, {681, "Lil Portal"}, {682, "Worm Friend"}, {683, "Bone Spurs"}, {684, "Hungry Soul"}, {685, "Jar of Wisps"}, {686, "Soul Locket"}, {687, "Friend Finder"}, {688, "Inner Child"}, {689, "Glitched Crown"}, {690, "Belly Jelly"}, {691, "Sacred Orb"}, {692, "Sanguine Bond"}, {693, "The Swarm"}, {694, "Heartbreak"}, {695, "Bloody Gust"}, {696, "Salvation"}, {697, "Vanishing Twin"}, {698, "Twisted Pair"}, {699, "Azazel's Rage"}, {700, "Echo Chamber"}, {701, "Isaac's Tomb"}, {702, "Vengeful Spirit"}, {703, "Esau Jr."}, {704, "Berserk!"}, {705, "Dark Arts"}, {706, "Abyss"}, {707, "Supper"}, {708, "Stapler"}, {709, "Suplex!"}, {710, "Bag of Crafting"}, {711, "Flip"}, {712, "Lemegeton"}, {713, "Sumptorium"}, {714, "Recall"}, {715, "Hold"}, {716, "Keeper's Sack"}, {717, "Keeper's Kin"}, {719, "Keeper's Box"}, {720, "Everything Jar"}, {721, "TMTRAINER"}, {722, "Anima Sola"}, {723, "Spindown Dice"}, {724, "Hypercoagulation"}, {725, "IBS"}, {726, "Hemoptysis"}, {727, "Ghost Bombs"}, {728, "Gello"}, {729, "Decap Attack"}, {730, "Glass Eye"}, {731, "Stye"}, {732, "Mom's Ring"}})
5
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const PILL_EFFECT_NAME_MAP: Map<PillEffect, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.PILL_EFFECT_NAME_MAP = __TS__New(Map, {{PillEffect.PILLEFFECT_BAD_GAS, "Bad Gas"}, {PillEffect.PILLEFFECT_BAD_TRIP, "Bad Trip"}, {PillEffect.PILLEFFECT_BALLS_OF_STEEL, "Balls of Steel"}, {PillEffect.PILLEFFECT_BOMBS_ARE_KEYS, "Bombs Are Key"}, {PillEffect.PILLEFFECT_EXPLOSIVE_DIARRHEA, "Explosive Diarrhea"}, {PillEffect.PILLEFFECT_FULL_HEALTH, "Full Health"}, {PillEffect.PILLEFFECT_HEALTH_DOWN, "Health Down"}, {PillEffect.PILLEFFECT_HEALTH_UP, "Health Up"}, {PillEffect.PILLEFFECT_I_FOUND_PILLS, "I Found Pills"}, {PillEffect.PILLEFFECT_PUBERTY, "Puberty"}, {PillEffect.PILLEFFECT_PRETTY_FLY, "Pretty Fly"}, {PillEffect.PILLEFFECT_RANGE_DOWN, "Range Down"}, {PillEffect.PILLEFFECT_RANGE_UP, "Range Up"}, {PillEffect.PILLEFFECT_SPEED_DOWN, "Speed Down"}, {PillEffect.PILLEFFECT_SPEED_UP, "Speed Up"}, {PillEffect.PILLEFFECT_TEARS_DOWN, "Tears Down"}, {PillEffect.PILLEFFECT_TEARS_UP, "Tears Up"}, {PillEffect.PILLEFFECT_LUCK_DOWN, "Luck Down"}, {PillEffect.PILLEFFECT_LUCK_UP, "Luck Up"}, {PillEffect.PILLEFFECT_TELEPILLS, "Telepills"}, {PillEffect.PILLEFFECT_48HOUR_ENERGY, "48 Hour Energy"}, {PillEffect.PILLEFFECT_HEMATEMESIS, "Hematemesis"}, {PillEffect.PILLEFFECT_PARALYSIS, "Paralysis"}, {PillEffect.PILLEFFECT_SEE_FOREVER, "I can see forever!"}, {PillEffect.PILLEFFECT_PHEROMONES, "Pheromones"}, {PillEffect.PILLEFFECT_AMNESIA, "Amnesia"}, {PillEffect.PILLEFFECT_LEMON_PARTY, "Lemon Party"}, {PillEffect.PILLEFFECT_WIZARD, "R U a Wizard?"}, {PillEffect.PILLEFFECT_PERCS, "Percs!"}, {PillEffect.PILLEFFECT_ADDICTED, "Addicted!"}, {PillEffect.PILLEFFECT_RELAX, "Re-Lax"}, {PillEffect.PILLEFFECT_QUESTIONMARK, "???"}, {PillEffect.PILLEFFECT_LARGER, "One makes you larger"}, {PillEffect.PILLEFFECT_SMALLER, "One makes you small"}, {PillEffect.PILLEFFECT_INFESTED_EXCLAMATION, "Infested!"}, {PillEffect.PILLEFFECT_INFESTED_QUESTION, "Infested?"}, {PillEffect.PILLEFFECT_POWER, "Power Pill!"}, {PillEffect.PILLEFFECT_RETRO_VISION, "Retro Vision"}, {PillEffect.PILLEFFECT_FRIENDS_TILL_THE_END, "Friends Till The End!"}, {PillEffect.PILLEFFECT_X_LAX, "X-Lax"}, {PillEffect.PILLEFFECT_SOMETHINGS_WRONG, "Something's wrong..."}, {PillEffect.PILLEFFECT_IM_DROWSY, "I'm Drowsy..."}, {PillEffect.PILLEFFECT_IM_EXCITED, "I'm Excited!!!"}, {PillEffect.PILLEFFECT_GULP, "Gulp!"}, {PillEffect.PILLEFFECT_HORF, "Horf!"}, {PillEffect.PILLEFFECT_SUNSHINE, "Feels like I'm walking on sunshine!"}, {PillEffect.PILLEFFECT_VURP, "Vurp!"}, {PillEffect.PILLEFFECT_SHOT_SPEED_DOWN, "Shot Speed Down"}, {PillEffect.PILLEFFECT_SHOT_SPEED_UP, "Shot Speed Up"}, {PillEffect.PILLEFFECT_EXPERIMENTAL, "Experimental Pill"}})
5
+ return ____exports
@@ -0,0 +1,5 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const TRANSFORMATION_TO_TAG_MAP: Map<PlayerForm, ItemConfigTag>;
3
+ export declare const TRANSFORMATIONS_NOT_BASED_ON_ITEMS: Set<PlayerForm>;
4
+ export declare const TRANSFORMATION_TO_ITEMS_MAP: Map<PlayerForm, Set<number>>;
5
+ export declare const ITEM_TO_TRANSFORMATION_MAP: Map<number, Set<PlayerForm>>;
@@ -0,0 +1,56 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ local initMaps
5
+ local ____collectibles = require("functions.collectibles")
6
+ local collectibleHasTag = ____collectibles.collectibleHasTag
7
+ local getMaxCollectibleID = ____collectibles.getMaxCollectibleID
8
+ function initMaps(self)
9
+ for ____, playerForm in __TS__Iterator(
10
+ ____exports.TRANSFORMATION_TO_TAG_MAP:keys()
11
+ ) do
12
+ ____exports.TRANSFORMATION_TO_ITEMS_MAP:set(
13
+ playerForm,
14
+ __TS__New(Set)
15
+ )
16
+ end
17
+ do
18
+ local collectibleType = 1
19
+ while collectibleType <= getMaxCollectibleID(nil) do
20
+ for ____, ____value in __TS__Iterator(
21
+ ____exports.TRANSFORMATION_TO_TAG_MAP:entries()
22
+ ) do
23
+ local playerForm
24
+ playerForm = ____value[1]
25
+ local tag
26
+ tag = ____value[2]
27
+ do
28
+ if not collectibleHasTag(nil, collectibleType, tag) then
29
+ goto __continue5
30
+ end
31
+ local items = ____exports.TRANSFORMATION_TO_ITEMS_MAP:get(playerForm)
32
+ if items == nil then
33
+ error(
34
+ "Failed to get the items for transformation: " .. tostring(playerForm)
35
+ )
36
+ end
37
+ items:add(collectibleType)
38
+ local transformations = ____exports.ITEM_TO_TRANSFORMATION_MAP:get(collectibleType)
39
+ if transformations == nil then
40
+ transformations = __TS__New(Set)
41
+ ____exports.ITEM_TO_TRANSFORMATION_MAP:set(collectibleType, transformations)
42
+ end
43
+ transformations:add(playerForm)
44
+ end
45
+ ::__continue5::
46
+ end
47
+ collectibleType = collectibleType + 1
48
+ end
49
+ end
50
+ end
51
+ ____exports.TRANSFORMATION_TO_TAG_MAP = __TS__New(Map, {{PlayerForm.PLAYERFORM_GUPPY, 32}, {PlayerForm.PLAYERFORM_LORD_OF_THE_FLIES, 64}, {PlayerForm.PLAYERFORM_MUSHROOM, 256}, {PlayerForm.PLAYERFORM_ANGEL, 1024}, {PlayerForm.PLAYERFORM_BOB, 128}, {PlayerForm.PLAYERFORM_DRUGS, 2}, {PlayerForm.PLAYERFORM_MOM, 4}, {PlayerForm.PLAYERFORM_BABY, 512}, {PlayerForm.PLAYERFORM_EVIL_ANGEL, 2048}, {PlayerForm.PLAYERFORM_POOP, 4096}, {PlayerForm.PLAYERFORM_BOOK_WORM, 8192}, {PlayerForm.PLAYERFORM_SPIDERBABY, 16384}})
52
+ ____exports.TRANSFORMATIONS_NOT_BASED_ON_ITEMS = __TS__New(Set, {PlayerForm.PLAYERFORM_ADULTHOOD, PlayerForm.PLAYERFORM_STOMPY, PlayerForm.PLAYERFORM_FLIGHT})
53
+ ____exports.TRANSFORMATION_TO_ITEMS_MAP = __TS__New(Map)
54
+ ____exports.ITEM_TO_TRANSFORMATION_MAP = __TS__New(Map)
55
+ initMaps(nil)
56
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const TRINKET_DESCRIPTION_MAP: Map<TrinketType, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.TRINKET_DESCRIPTION_MAP = __TS__New(Map, {{1, "Gulp!"}, {2, "It feels lucky?"}, {3, "Trickle charge"}, {4, "It's broken"}, {5, "Challenge up"}, {6, "It kinda works"}, {7, "Faith up"}, {8, "I remember these"}, {9, "Wub wub!"}, {10, "Wiggle waggle!"}, {11, "Woop woop!"}, {12, "Blub blub!"}, {13, "YES!"}, {14, "Your feet feel stronger"}, {15, "There's something inside it"}, {16, "???"}, {17, "Evil up"}, {18, "Faith up"}, {19, "Master of lockpicking"}, {20, "Wish granted"}, {21, "???"}, {22, "Evil up"}, {23, "???"}, {24, "Wealth of gas"}, {25, "Uh-oh!"}, {26, "Zip zoop!"}, {27, "Wooosh!"}, {28, "Eternal life?"}, {29, "It stinks"}, {30, "Poison shots"}, {31, "Piercing shots"}, {32, "Touch fuzzy, get dizzy"}, {33, "Fetal protection"}, {34, "It calls out to its brothers"}, {35, "DMG up"}, {36, "It feels lucky?"}, {37, "Speed up"}, {38, "It emanates purity "}, {39, "Yay, cancer!"}, {40, "Your rage grows"}, {41, "Tastes like burning"}, {42, "Luck up!"}, {43, "Cursed?"}, {44, "Don't swallow it"}, {45, "Luck of the draw"}, {46, "Consume thy enemy"}, {48, "It glows with power"}, {49, "Wealth of health"}, {50, "Wealth of chaos"}, {51, "Wealth of answers"}, {52, "Wealth of wealth"}, {53, "Well, that's not coming off"}, {54, "Dead friend"}, {55, "Faith's reward"}, {56, "Payment received "}, {57, "Imaginary friend"}, {58, "Your rage grows"}, {59, "May you see your destination"}, {60, "Revenge from beyond"}, {61, "The left-hand path reaps dark rewards"}, {62, "It shines for its brothers"}, {63, "Fuse cutter"}, {64, "Bleep bloop blop"}, {65, "Floooooooooop!"}, {66, "Pft"}, {67, "You feel cursed... kinda."}, {68, "It pulls"}, {69, "You feel faded"}, {70, "Itchy, tasty..."}, {71, "Creepy bombs"}, {72, "Lil charge"}, {73, "Pop! Pop!"}, {74, "The ground below feels hollow..."}, {75, "Effect not found?"}, {76, "It's double down time!"}, {77, "Bounce back!"}, {78, "Extended stat effect time!"}, {79, "I'm stuck in a loop..."}, {80, "With darkness comes power"}, {81, "Blind to damage"}, {82, "Feel lucky?"}, {83, "Stores are open"}, {84, "Feels greedy"}, {85, "Karma up"}, {86, "The poop is moving..."}, {87, "You feel her love"}, {88, "Never again!"}, {89, "Keep your friends close..."}, {90, "Fartoom!"}, {91, "Eww"}, {92, "Stat booster"}, {93, "You stink"}, {94, "It also stinks!"}, {95, "It looks dead"}, {96, "Foop foop!"}, {97, "Sick..."}, {98, "Seems magic..."}, {99, "Boing!"}, {100, "It needs power"}, {101, "I think it's broken"}, {102, "Double moon"}, {103, "="}, {104, "Make a wish"}, {105, "I wonder what it is"}, {106, "Uncorked"}, {107, "Drain me"}, {108, "That's a hard nut to crack!"}, {109, "Stuck!"}, {110, "Feels lucky..."}, {111, "Drips with blood..."}, {112, "..."}, {113, "I bring War"}, {114, "I bring Pestilence"}, {115, "I bring Famine"}, {116, "I bring Death"}, {117, "I bring Conquest"}, {118, "They are growing..."}, {119, "Regen!"}, {120, "Danger charge"}, {121, "My faith protects me"}, {122, "Can't hold it!"}, {123, "Angelic spoils"}, {124, "Hold the door"}, {125, "Charged friends"}, {126, "Wealth of flies"}, {127, "Feed them magic!"}, {128, "It looks brittle"}, {129, "Don't chew on it"}, {130, "It's leaking"}, {131, "Wealth of purity"}, {132, "Mystery medicine"}, {133, "Faster explosions"}, {134, "Mega farts"}, {135, "Watch the world burn"}, {136, "Bombs are key"}, {137, "Forget me not..."}, {138, "t's broken9Reroll your dest "}, {139, "It feels lucky"}, {140, "It feels empty"}, {141, "Sing for your friends"}, {142, "My faith protects me"}, {143, "Voltage starving"}, {144, "Ding!"}, {145, "Luck way up. Don't lose it!"}, {146, "His special customer"}, {147, "Wealth of power"}, {148, "Gather round"}, {149, "Push in case of emergency"}, {150, "Look between the rooms"}, {151, "No more spikes"}, {152, "Seek the stars"}, {153, "A piece of her love"}, {154, "Bonus roll"}, {155, "Walk the path of the saint"}, {156, "HP up"}, {157, "Death awaits"}, {158, "A hole in your pocket"}, {159, "Less is more"}, {160, "Free goodies!"}, {161, "Walk the path of the wicked"}, {162, "Unleash your inner demon"}, {163, "Oops!"}, {164, "Twice the bang!"}, {165, "Don't want!"}, {166, "???"}, {167, "Friends from beyond"}, {168, "A brittle blessing"}, {169, "Looks familiar..."}, {170, "Call to the other side"}, {171, "Money talks"}, {172, "Wealth of misery"}, {173, "Give it to me"}, {174, "6"}, {175, "What could it open?"}, {176, "Mini friend"}, {177, "You feel braver"}, {178, "Bang!"}, {179, "Controllable buddies!"}, {180, "Finally!"}, {181, "Fun extras"}, {182, "Virtue's reward"}, {183, "I'm seeing double..."}, {184, "Give them a home"}, {185, "Infested"}, {186, "Attack buddy"}, {187, "Double vision?"}, {188, "Stay frosty"}, {189, "Revel in death"}})
5
+ return ____exports
@@ -0,0 +1,2 @@
1
+ /// <reference types="isaac-typescript-definitions" />
2
+ export declare const TRINKET_NAME_MAP: Map<TrinketType, string>;
@@ -0,0 +1,5 @@
1
+ --[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
2
+ require("lualib_bundle");
3
+ local ____exports = {}
4
+ ____exports.TRINKET_NAME_MAP = __TS__New(Map, {{1, "Swallowed Penny"}, {2, "Petrified Poop"}, {3, "AAA Battery"}, {4, "Broken Remote"}, {5, "Purple Heart"}, {6, "Broken Magnet"}, {7, "Rosary Bead"}, {8, "Cartridge"}, {9, "Pulse Worm"}, {10, "Wiggle Worm"}, {11, "Ring Worm"}, {12, "Flat Worm"}, {13, "Store Credit"}, {14, "Callus"}, {15, "Lucky Rock"}, {16, "Mom's Toenail"}, {17, "Black Lipstick"}, {18, "Bible Tract"}, {19, "Paper Clip"}, {20, "Monkey Paw"}, {21, "Mysterious Paper"}, {22, "Daemon's Tail"}, {23, "Missing Poster"}, {24, "Butt Penny"}, {25, "Mysterious Candy"}, {26, "Hook Worm"}, {27, "Whip Worm"}, {28, "Broken Ankh"}, {29, "Fish Head"}, {30, "Pinky Eye"}, {31, "Push Pin"}, {32, "Liberty Cap"}, {33, "Umbilical Cord"}, {34, "Child's Heart"}, {35, "Curved Horn"}, {36, "Rusted Key"}, {37, "Goat Hoof"}, {38, "Mom's Pearl"}, {39, "Cancer"}, {40, "Red Patch"}, {41, "Match Stick"}, {42, "Lucky Toe"}, {43, "Cursed Skull"}, {44, "Safety Cap"}, {45, "Ace of Spades"}, {46, "Isaac's Fork"}, {48, "A Missing Page"}, {49, "Bloody Penny"}, {50, "Burnt Penny"}, {51, "Flat Penny"}, {52, "Counterfeit Penny"}, {53, "Tick"}, {54, "Isaac's Head"}, {55, "Maggy's Faith"}, {56, "Judas' Tongue"}, {57, "???'s Soul"}, {58, "Samson's Lock"}, {59, "Cain's Eye"}, {60, "Eve's Bird Foot"}, {61, "The Left Hand"}, {62, "Shiny Rock"}, {63, "Safety Scissors"}, {64, "Rainbow Worm"}, {65, "Tape Worm"}, {66, "Lazy Worm"}, {67, "Cracked Dice"}, {68, "Super Magnet"}, {69, "Faded Polaroid"}, {70, "Louse"}, {71, "Bob's Bladder"}, {72, "Watch Battery"}, {73, "Blasting Cap"}, {74, "Stud Finder"}, {75, "Error"}, {76, "Poker Chip"}, {77, "Blister"}, {78, "Second Hand"}, {79, "Endless Nameless"}, {80, "Black Feather"}, {81, "Blind Rage"}, {82, "Golden Horse Shoe"}, {83, "Store Key"}, {84, "Rib of Greed"}, {85, "Karma"}, {86, "Lil Larva"}, {87, "Mom's Locket"}, {88, "NO!"}, {89, "Child Leash"}, {90, "Brown Cap"}, {91, "Meconium"}, {92, "Cracked Crown"}, {93, "Used Diaper"}, {94, "Fish Tail"}, {95, "Black Tooth"}, {96, "Ouroboros Worm"}, {97, "Tonsil"}, {98, "Nose Goblin"}, {99, "Super Ball"}, {100, "Vibrant Bulb"}, {101, "Dim Bulb"}, {102, "Fragmented Card"}, {103, "Equality!"}, {104, "Wish Bone"}, {105, "Bag Lunch"}, {106, "Lost Cork"}, {107, "Crow Heart"}, {108, "Walnut"}, {109, "Duct Tape"}, {110, "Silver Dollar"}, {111, "Bloody Crown"}, {112, "Pay To Win"}, {113, "Locust of War"}, {114, "Locust of Pestilence"}, {115, "Locust of Famine"}, {116, "Locust of Death"}, {117, "Locust of Conquest"}, {118, "Bat Wing"}, {119, "Stem Cell"}, {120, "Hairpin"}, {121, "Wooden Cross"}, {122, "Butter!"}, {123, "Filigree Feather"}, {124, "Door Stop"}, {125, "Extension Cord"}, {126, "Rotten Penny"}, {127, "Baby-Bender"}, {128, "Finger Bone"}, {129, "Jawbreaker"}, {130, "Chewed Pen"}, {131, "Blessed Penny"}, {132, "Broken Syringe"}, {133, "Short Fuse"}, {134, "Gigante Bean"}, {135, "A Lighter"}, {136, "Broken Padlock"}, {137, "Myosotis"}, {138, " 'M"}, {139, "Teardrop Charm"}, {140, "Apple of Sodom"}, {141, "Forgotten Lullaby"}, {142, "Beth's Faith"}, {143, "Old Capacitor"}, {144, "Brain Worm"}, {145, "Perfection"}, {146, "Devil's Crown"}, {147, "Charged Penny"}, {148, "Friendship Necklace"}, {149, "Panic Button"}, {150, "Blue Key"}, {151, "Flat File"}, {152, "Telescope Lens"}, {153, "Mom's Lock"}, {154, "Dice Bag"}, {155, "Holy Crown"}, {156, "Mother's Kiss"}, {157, "Torn Card"}, {158, "Torn Pocket"}, {159, "Gilded Key"}, {160, "Lucky Sack"}, {161, "Wicked Crown"}, {162, "Azazel's Stump"}, {163, "Dingle Berry"}, {164, "Ring Cap"}, {165, "Nuh Uh!"}, {166, "Modeling Clay"}, {167, "Polished Bone"}, {168, "Hollow Heart"}, {169, "Kid's Drawing"}, {170, "Crystal Key"}, {171, "Keeper's Bargain"}, {172, "Cursed Penny"}, {173, "Your Soul"}, {174, "Number Magnet"}, {175, "Strange Key"}, {176, "Lil Clot"}, {177, "Temporary Tattoo"}, {178, "Swallowed M80"}, {179, "RC Remote"}, {180, "Found Soul"}, {181, "Expansion Pack"}, {182, "Beth's Essence"}, {183, "The Twins"}, {184, "Adoption Papers"}, {185, "Cricket Leg"}, {186, "Apollyon's Best Friend"}, {187, "Broken Glasses"}, {188, "Ice Cube"}, {189, "Sigil of Baphomet"}})
5
+ return ____exports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "1.0.476",
3
+ "version": "1.0.480",
4
4
  "description": "Helper functions for IsaacScript mods",
5
5
  "keywords": [
6
6
  "isaac",