isaacscript-common 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +1 -1
  2. package/classes/DefaultMap.d.ts +1 -1
  3. package/classes/ModUpgraded.d.ts +8 -2
  4. package/constants.d.ts +5 -5
  5. package/constants.lua +1 -1
  6. package/{constantsMax.d.ts → constantsFirstLast.d.ts} +0 -0
  7. package/{constantsMax.lua → constantsFirstLast.lua} +0 -0
  8. package/enums/HealthType.d.ts +2 -2
  9. package/enums/ModCallbackCustom.d.ts +753 -2
  10. package/features/debugDisplay/exports.d.ts +36 -36
  11. package/features/deployJSONRoom.d.ts +1 -1
  12. package/features/extraConsoleCommands/commandsDisplay.d.ts +18 -18
  13. package/features/extraConsoleCommands/init.d.ts +3 -2
  14. package/features/extraConsoleCommands/init.lua +76 -76
  15. package/features/extraConsoleCommands/{commands.d.ts → listCommands.d.ts} +17 -17
  16. package/features/extraConsoleCommands/{commands.lua → listCommands.lua} +9 -9
  17. package/features/{isPonyActive.d.ts → ponyDetection.d.ts} +0 -0
  18. package/features/{isPonyActive.lua → ponyDetection.lua} +2 -2
  19. package/features/{preventCollectibleRotate.d.ts → preventCollectibleRotation.d.ts} +1 -1
  20. package/features/{preventCollectibleRotate.lua → preventCollectibleRotation.lua} +3 -3
  21. package/features/saveDataManager/exports.d.ts +13 -10
  22. package/features/saveDataManager/load.d.ts +1 -1
  23. package/features/saveDataManager/main.d.ts +1 -1
  24. package/features/saveDataManager/maps.d.ts +1 -1
  25. package/features/saveDataManager/save.d.ts +1 -1
  26. package/functions/cards.lua +5 -5
  27. package/functions/character.lua +2 -2
  28. package/functions/chargeBar.d.ts +1 -1
  29. package/functions/collectibleCacheFlag.d.ts +4 -4
  30. package/functions/collectibleSet.lua +2 -2
  31. package/functions/collectibles.lua +5 -5
  32. package/functions/enums.d.ts +3 -3
  33. package/functions/jsonRoom.d.ts +1 -1
  34. package/functions/pills.lua +9 -9
  35. package/functions/playerDataStructures.d.ts +51 -0
  36. package/functions/playerDataStructures.lua +4 -0
  37. package/functions/playerHealth.d.ts +1 -1
  38. package/functions/pocketItems.d.ts +1 -1
  39. package/functions/run.lua +2 -2
  40. package/functions/spawnCollectible.lua +3 -3
  41. package/functions/trinketGive.d.ts +1 -1
  42. package/functions/trinkets.lua +5 -5
  43. package/functions/utils.d.ts +2 -2
  44. package/index.d.ts +14 -13
  45. package/index.lua +12 -12
  46. package/initFeatures.lua +6 -6
  47. package/{types → interfaces}/AddCallbackParameterCustom.d.ts +0 -0
  48. package/{types → interfaces}/AddCallbackParameterCustom.lua +0 -0
  49. package/{types → interfaces}/ChargeBarSprites.d.ts +0 -0
  50. package/{types → interfaces}/ChargeBarSprites.lua +0 -0
  51. package/{types → interfaces}/JSONDoor.d.ts +1 -0
  52. package/{types → interfaces}/JSONDoor.lua +0 -0
  53. package/{types → interfaces}/JSONEntity.d.ts +1 -0
  54. package/{types → interfaces}/JSONEntity.lua +0 -0
  55. package/{types → interfaces}/JSONRoom.d.ts +1 -5
  56. package/{types → interfaces}/JSONRoom.lua +0 -0
  57. package/{types → interfaces}/JSONRooms.d.ts +0 -0
  58. package/{types → interfaces}/JSONRooms.lua +0 -0
  59. package/{types → interfaces}/JSONSpawn.d.ts +1 -0
  60. package/{types → interfaces}/JSONSpawn.lua +0 -0
  61. package/{types → interfaces}/PlayerHealth.d.ts +1 -0
  62. package/{types → interfaces}/PlayerHealth.lua +0 -0
  63. package/{types → interfaces}/PocketItemDescription.d.ts +1 -0
  64. package/{types → interfaces}/PocketItemDescription.lua +0 -0
  65. package/interfaces/SaveData.d.ts +29 -0
  66. package/{types → interfaces}/SaveData.lua +0 -0
  67. package/{types → interfaces}/TrinketSituation.d.ts +1 -0
  68. package/{types → interfaces}/TrinketSituation.lua +0 -0
  69. package/{types → interfaces}/private/TSTLClassMetatable.d.ts +0 -0
  70. package/{types → interfaces}/private/TSTLClassMetatable.lua +0 -0
  71. package/maps/cardMap.lua +85 -85
  72. package/maps/characterMap.lua +58 -58
  73. package/maps/pillEffectMap.lua +39 -39
  74. package/maps/roomTypeMap.lua +12 -12
  75. package/objects/callbackRegisterFunctions.d.ts +1 -1
  76. package/objects/roomTypeNames.lua +1 -1
  77. package/package.json +1 -1
  78. package/types/PickingUpItem.d.ts +12 -2
  79. package/types/PickingUpItem.lua +3 -0
  80. package/upgradeMod.d.ts +2 -1
  81. package/types/SaveData.d.ts +0 -28
package/index.d.ts CHANGED
@@ -4,12 +4,12 @@ export { forceNewLevelCallback, forceNewRoomCallback, } from "./callbacks/reorde
4
4
  export * from "./classes/DefaultMap";
5
5
  export * from "./classes/ModUpgraded";
6
6
  export * from "./constants";
7
- export * from "./constantsMax";
7
+ export * from "./constantsFirstLast";
8
8
  export * from "./enums/HealthType";
9
9
  export * from "./enums/ModCallbackCustom";
10
10
  export * from "./enums/PocketItemType";
11
11
  export * from "./enums/SerializationType";
12
- export { registerCharacterHealthConversion } from "./features/characterHealthConversion";
12
+ export { ConversionHeartSubType, registerCharacterHealthConversion, } from "./features/characterHealthConversion";
13
13
  export { registerCharacterStats } from "./features/characterStats";
14
14
  export * from "./features/debugDisplay/exports";
15
15
  export { deployJSONRoom, deployRandomJSONRoom, emptyRoom, } from "./features/deployJSONRoom";
@@ -20,9 +20,9 @@ export { removeFadeIn, restoreFadeIn } from "./features/fadeInRemover";
20
20
  export { disableFastReset, enableFastReset } from "./features/fastReset";
21
21
  export { forgottenSwitch } from "./features/forgottenSwitch";
22
22
  export { getCollectibleItemPoolType } from "./features/getCollectibleItemPoolType";
23
- export * from "./features/isPonyActive";
24
23
  export { addCollectible, getPlayerInventory } from "./features/playerInventory";
25
- export { preventCollectibleRotate } from "./features/preventCollectibleRotate";
24
+ export * from "./features/ponyDetection";
25
+ export { preventCollectibleRotation } from "./features/preventCollectibleRotation";
26
26
  export { runInNGameFrames, runInNRenderFrames, runNextGameFrame, runNextRenderFrame, } from "./features/runInNFrames";
27
27
  export * from "./features/saveDataManager/exports";
28
28
  export { hasSirenStolenFamiliar, setFamiliarNoSirenSteal, } from "./features/sirenHelpers";
@@ -106,22 +106,23 @@ export * from "./functions/tstlClass";
106
106
  export * from "./functions/ui";
107
107
  export * from "./functions/utils";
108
108
  export * from "./functions/vector";
109
+ export * from "./interfaces/AddCallbackParameterCustom";
110
+ export * from "./interfaces/JSONDoor";
111
+ export * from "./interfaces/JSONEntity";
112
+ export * from "./interfaces/JSONRoom";
113
+ export * from "./interfaces/JSONRooms";
114
+ export * from "./interfaces/JSONSpawn";
115
+ export * from "./interfaces/PlayerHealth";
116
+ export * from "./interfaces/PocketItemDescription";
117
+ export * from "./interfaces/SaveData";
118
+ export * from "./interfaces/TrinketSituation";
109
119
  export * from "./maps/cardMap";
110
120
  export * from "./maps/characterMap";
111
121
  export * from "./maps/pillEffectMap";
112
122
  export * from "./maps/roomTypeMap";
113
123
  export * from "./objects/colors";
114
- export * from "./types/AddCallbackParameterCustom";
115
124
  export * from "./types/AnyEntity";
116
125
  export * from "./types/CollectibleIndex";
117
- export * from "./types/JSONDoor";
118
- export * from "./types/JSONEntity";
119
- export * from "./types/JSONRoom";
120
- export * from "./types/JSONRooms";
121
- export * from "./types/JSONSpawn";
122
126
  export * from "./types/PickingUpItem";
123
- export * from "./types/PlayerHealth";
124
127
  export * from "./types/PlayerIndex";
125
- export * from "./types/PocketItemDescription";
126
- export * from "./types/TrinketSituation";
127
128
  export * from "./upgradeMod";
package/index.lua CHANGED
@@ -46,7 +46,7 @@ do
46
46
  end
47
47
  end
48
48
  do
49
- local ____export = require("constantsMax")
49
+ local ____export = require("constantsFirstLast")
50
50
  for ____exportKey, ____exportValue in pairs(____export) do
51
51
  if ____exportKey ~= "default" then
52
52
  ____exports[____exportKey] = ____exportValue
@@ -167,14 +167,6 @@ do
167
167
  local getCollectibleItemPoolType = ____getCollectibleItemPoolType.getCollectibleItemPoolType
168
168
  ____exports.getCollectibleItemPoolType = getCollectibleItemPoolType
169
169
  end
170
- do
171
- local ____export = require("features.isPonyActive")
172
- for ____exportKey, ____exportValue in pairs(____export) do
173
- if ____exportKey ~= "default" then
174
- ____exports[____exportKey] = ____exportValue
175
- end
176
- end
177
- end
178
170
  do
179
171
  local ____playerInventory = require("features.playerInventory")
180
172
  local addCollectible = ____playerInventory.addCollectible
@@ -183,9 +175,17 @@ do
183
175
  ____exports.getPlayerInventory = getPlayerInventory
184
176
  end
185
177
  do
186
- local ____preventCollectibleRotate = require("features.preventCollectibleRotate")
187
- local preventCollectibleRotate = ____preventCollectibleRotate.preventCollectibleRotate
188
- ____exports.preventCollectibleRotate = preventCollectibleRotate
178
+ local ____export = require("features.ponyDetection")
179
+ for ____exportKey, ____exportValue in pairs(____export) do
180
+ if ____exportKey ~= "default" then
181
+ ____exports[____exportKey] = ____exportValue
182
+ end
183
+ end
184
+ end
185
+ do
186
+ local ____preventCollectibleRotation = require("features.preventCollectibleRotation")
187
+ local preventCollectibleRotation = ____preventCollectibleRotation.preventCollectibleRotation
188
+ ____exports.preventCollectibleRotation = preventCollectibleRotation
189
189
  end
190
190
  do
191
191
  local ____runInNFrames = require("features.runInNFrames")
package/initFeatures.lua CHANGED
@@ -17,12 +17,12 @@ local ____forgottenSwitch = require("features.forgottenSwitch")
17
17
  local forgottenSwitchInit = ____forgottenSwitch.forgottenSwitchInit
18
18
  local ____getCollectibleItemPoolType = require("features.getCollectibleItemPoolType")
19
19
  local getCollectibleItemPoolTypeInit = ____getCollectibleItemPoolType.getCollectibleItemPoolTypeInit
20
- local ____isPonyActive = require("features.isPonyActive")
21
- local isPonyActiveInit = ____isPonyActive.isPonyActiveInit
22
20
  local ____playerInventory = require("features.playerInventory")
23
21
  local playerInventoryInit = ____playerInventory.playerInventoryInit
24
- local ____preventCollectibleRotate = require("features.preventCollectibleRotate")
25
- local preventCollectibleRotateInit = ____preventCollectibleRotate.preventCollectibleRotateInit
22
+ local ____ponyDetection = require("features.ponyDetection")
23
+ local ponyDetectionInit = ____ponyDetection.ponyDetectionInit
24
+ local ____preventCollectibleRotation = require("features.preventCollectibleRotation")
25
+ local preventCollectibleRotationInit = ____preventCollectibleRotation.preventCollectibleRotationInit
26
26
  local ____runInNFrames = require("features.runInNFrames")
27
27
  local runInNFramesInit = ____runInNFrames.runInNFramesInit
28
28
  local ____sirenHelpers = require("features.sirenHelpers")
@@ -42,9 +42,9 @@ function ____exports.initFeaturesMinor(self, mod)
42
42
  fastResetInit(nil, mod)
43
43
  forgottenSwitchInit(nil, mod)
44
44
  getCollectibleItemPoolTypeInit(nil, mod)
45
- isPonyActiveInit(nil, mod)
46
45
  playerInventoryInit(nil, mod)
47
- preventCollectibleRotateInit(nil, mod)
46
+ ponyDetectionInit(nil, mod)
47
+ preventCollectibleRotationInit(nil, mod)
48
48
  sirenHelpersInit(nil, mod)
49
49
  taintedLazarusPlayersInit(nil, mod)
50
50
  end
File without changes
File without changes
@@ -1,3 +1,4 @@
1
+ /** Part of {@link JSONRooms}. */
1
2
  export interface JSONDoor {
2
3
  $: {
3
4
  /** Equal to "True" or "False". */
File without changes
@@ -1,3 +1,4 @@
1
+ /** Part of {@link JSONRooms}. */
1
2
  export interface JSONEntity {
2
3
  $: {
3
4
  /** Needs to be converted to an int. */
File without changes
@@ -1,10 +1,6 @@
1
1
  import { JSONDoor } from "./JSONDoor";
2
2
  import { JSONSpawn } from "./JSONSpawn";
3
- /**
4
- * Custom rooms are created with the Basement Renovator program, which outputs XML files and STB
5
- * files. A `JSONRoom` is simply an XML room converted to JSON. You can convert your XML files using
6
- * the following command: `npx convert-xml-to-json foo.xml foo.json`
7
- */
3
+ /** Part of {@link JSONRooms}. */
8
4
  export interface JSONRoom {
9
5
  $: {
10
6
  /** Needs to be converted to an int. */
File without changes
File without changes
File without changes
@@ -1,4 +1,5 @@
1
1
  import { JSONEntity } from "./JSONEntity";
2
+ /** Part of {@link JSONRooms}. */
2
3
  export interface JSONSpawn {
3
4
  $: {
4
5
  /** Needs to be converted to an int. */
File without changes
@@ -1,4 +1,5 @@
1
1
  import { HeartSubType } from "isaac-typescript-definitions";
2
+ /** Used by the `getPlayerHealth` and `setPlayerHealth` helper functions. */
2
3
  export interface PlayerHealth {
3
4
  maxHearts: int;
4
5
  hearts: int;
File without changes
@@ -1,5 +1,6 @@
1
1
  import { PocketItemSlot } from "isaac-typescript-definitions";
2
2
  import { PocketItemType } from "../enums/PocketItemType";
3
+ /** Used by the `getPocketItems` and related helper functions. */
3
4
  export interface PocketItemDescription {
4
5
  slot: PocketItemSlot;
5
6
  type: PocketItemType;
File without changes
@@ -0,0 +1,29 @@
1
+ /**
2
+ * This is the format of the object that you give to the save data manager. It will contains all of
3
+ * the variables for the particular mod feature.
4
+ *
5
+ * Depending on which object keys you use, the variables will be automatically reset at certain
6
+ * times and automatically saved to disk.
7
+ *
8
+ * Each sub-object of save data has a string as a key and arbitrary data as a value. However, the
9
+ * data has to be serializable. Specifically, this means that you can only use the following types:
10
+ *
11
+ * - `boolean`
12
+ * - `number`
13
+ * - `string`
14
+ * - `Map` / `DefaultMap`
15
+ * - `Set`
16
+ * - serializable Isaac API classes (such as `Color`)
17
+ * - TSTL classes (i.e. classes that you made yourself)
18
+ * - sub-objects or a `LuaTable` that contains the above values
19
+ *
20
+ * (Unfortunately, it is not possible to create a recursive type definition that matches these
21
+ * properties. This means that the TypeScript compiler will not be able to validate that you are
22
+ * passing in serializable data.)
23
+ */
24
+ export interface SaveData {
25
+ persistent?: Record<string, unknown>;
26
+ run?: Record<string, unknown>;
27
+ level?: Record<string, unknown>;
28
+ room?: Record<string, unknown>;
29
+ }
File without changes
@@ -1,4 +1,5 @@
1
1
  import { TrinketType } from "isaac-typescript-definitions";
2
+ /** Used by the `temporarilyRemoveTrinkets` and related helper functions. */
2
3
  export interface TrinketSituation {
3
4
  trinketTypeRemoved: TrinketType;
4
5
  trinketType1: TrinketType;
File without changes
package/maps/cardMap.lua CHANGED
@@ -8,7 +8,7 @@ ____exports.CARD_MAP = __TS__New(Map, {
8
8
  {"fool", Card.FOOL},
9
9
  {"magician", Card.MAGICIAN},
10
10
  {"mag", Card.MAGICIAN},
11
- {"highpriestess", Card.HIGH_PRIESTESS},
11
+ {"highPriestess", Card.HIGH_PRIESTESS},
12
12
  {"priestess", Card.HIGH_PRIESTESS},
13
13
  {"priest", Card.HIGH_PRIESTESS},
14
14
  {"hp", Card.HIGH_PRIESTESS},
@@ -21,12 +21,12 @@ ____exports.CARD_MAP = __TS__New(Map, {
21
21
  {"chariot", Card.CHARIOT},
22
22
  {"justice", Card.JUSTICE},
23
23
  {"hermit", Card.HERMIT},
24
- {"wheeloffortune", Card.WHEEL_OF_FORTUNE},
24
+ {"wheelOfFortune", Card.WHEEL_OF_FORTUNE},
25
25
  {"wheel", Card.WHEEL_OF_FORTUNE},
26
26
  {"fortune", Card.WHEEL_OF_FORTUNE},
27
27
  {"strength", Card.STRENGTH},
28
28
  {"str", Card.STRENGTH},
29
- {"hangedman", Card.HANGED_MAN},
29
+ {"hangedMan", Card.HANGED_MAN},
30
30
  {"hanged", Card.HANGED_MAN},
31
31
  {"death", Card.DEATH},
32
32
  {"temperance", Card.TEMPERANCE},
@@ -38,22 +38,22 @@ ____exports.CARD_MAP = __TS__New(Map, {
38
38
  {"judgement", Card.JUDGEMENT},
39
39
  {"judge", Card.JUDGEMENT},
40
40
  {"world", Card.WORLD},
41
- {"2ofclubs", Card.CLUBS_2},
42
- {"2clubs", Card.CLUBS_2},
43
- {"2ofdiamonds", Card.DIAMONDS_2},
44
- {"2diamonds", Card.DIAMONDS_2},
45
- {"2ofspades", Card.SPADES_2},
46
- {"2spades", Card.SPADES_2},
47
- {"2ofhearts", Card.HEARTS_2},
48
- {"2hearts", Card.HEARTS_2},
49
- {"aceofclubs", Card.ACE_OF_CLUBS},
50
- {"aceclubs", Card.ACE_OF_CLUBS},
51
- {"aceofdiamonds", Card.ACE_OF_DIAMONDS},
52
- {"acediamonds", Card.ACE_OF_DIAMONDS},
53
- {"aceofspades", Card.ACE_OF_SPADES},
54
- {"acespades", Card.ACE_OF_SPADES},
55
- {"aceofhearts", Card.ACE_OF_HEARTS},
56
- {"acehearts", Card.ACE_OF_HEARTS},
41
+ {"2OfClubs", Card.CLUBS_2},
42
+ {"2Clubs", Card.CLUBS_2},
43
+ {"2OfDiamonds", Card.DIAMONDS_2},
44
+ {"2Diamonds", Card.DIAMONDS_2},
45
+ {"2OfSpades", Card.SPADES_2},
46
+ {"2Spades", Card.SPADES_2},
47
+ {"2OfHearts", Card.HEARTS_2},
48
+ {"2Hearts", Card.HEARTS_2},
49
+ {"aceOfClubs", Card.ACE_OF_CLUBS},
50
+ {"aceClubs", Card.ACE_OF_CLUBS},
51
+ {"aceOfDiamonds", Card.ACE_OF_DIAMONDS},
52
+ {"aceDiamonds", Card.ACE_OF_DIAMONDS},
53
+ {"aceOfSpades", Card.ACE_OF_SPADES},
54
+ {"aceSpades", Card.ACE_OF_SPADES},
55
+ {"aceOfHearts", Card.ACE_OF_HEARTS},
56
+ {"aceHearts", Card.ACE_OF_HEARTS},
57
57
  {"joker", Card.JOKER},
58
58
  {"hagalaz", Card.RUNE_HAGALAZ},
59
59
  {"destruction", Card.RUNE_HAGALAZ},
@@ -77,31 +77,31 @@ ____exports.CARD_MAP = __TS__New(Map, {
77
77
  {"chaos", Card.CHAOS},
78
78
  {"credit", Card.CREDIT},
79
79
  {"rules", Card.RULES},
80
- {"againsthumanity", Card.AGAINST_HUMANITY},
80
+ {"againstHumanity", Card.AGAINST_HUMANITY},
81
81
  {"humanity", Card.AGAINST_HUMANITY},
82
- {"suicideking", Card.SUICIDE_KING},
82
+ {"suicideKing", Card.SUICIDE_KING},
83
83
  {"suicide", Card.SUICIDE_KING},
84
- {"getoutofjailfree", Card.GET_OUT_OF_JAIL_FREE},
84
+ {"getOutOfJailFree", Card.GET_OUT_OF_JAIL_FREE},
85
85
  {"jail", Card.GET_OUT_OF_JAIL_FREE},
86
86
  {"?", Card.QUESTION_MARK},
87
- {"diceshard", Card.DICE_SHARD},
87
+ {"diceShard", Card.DICE_SHARD},
88
88
  {"shard", Card.DICE_SHARD},
89
- {"emergencycontact", Card.EMERGENCY_CONTACT},
89
+ {"emergencyContact", Card.EMERGENCY_CONTACT},
90
90
  {"contact", Card.EMERGENCY_CONTACT},
91
91
  {"holy", Card.HOLY},
92
- {"hugegrowth", Card.HUGE_GROWTH},
92
+ {"hugeGrowth", Card.HUGE_GROWTH},
93
93
  {"growth", Card.HUGE_GROWTH},
94
- {"ancientrecall", Card.ANCIENT_RECALL},
94
+ {"ancientRecall", Card.ANCIENT_RECALL},
95
95
  {"recall", Card.ANCIENT_RECALL},
96
- {"erawalk", Card.ERA_WALK},
96
+ {"eraWalk", Card.ERA_WALK},
97
97
  {"walk", Card.ERA_WALK},
98
- {"runeshard", Card.RUNE_SHARD},
98
+ {"runeShard", Card.RUNE_SHARD},
99
99
  {"shard", Card.RUNE_SHARD},
100
100
  {"fool?", Card.REVERSE_FOOL},
101
101
  {"magician?", Card.REVERSE_MAGICIAN},
102
102
  {"magi?", Card.REVERSE_MAGICIAN},
103
103
  {"mag?", Card.REVERSE_MAGICIAN},
104
- {"highpriestess?", Card.REVERSE_HIGH_PRIESTESS},
104
+ {"highPriestess?", Card.REVERSE_HIGH_PRIESTESS},
105
105
  {"high?", Card.REVERSE_HIGH_PRIESTESS},
106
106
  {"hi?", Card.REVERSE_HIGH_PRIESTESS},
107
107
  {"priestess?", Card.REVERSE_HIGH_PRIESTESS},
@@ -116,12 +116,12 @@ ____exports.CARD_MAP = __TS__New(Map, {
116
116
  {"chariot?", Card.REVERSE_CHARIOT},
117
117
  {"justice?", Card.REVERSE_JUSTICE},
118
118
  {"hermit?", Card.REVERSE_HERMIT},
119
- {"wheeloffortune?", Card.REVERSE_WHEEL_OF_FORTUNE},
119
+ {"wheelOfFortune?", Card.REVERSE_WHEEL_OF_FORTUNE},
120
120
  {"wheel?", Card.REVERSE_WHEEL_OF_FORTUNE},
121
121
  {"fortune?", Card.REVERSE_WHEEL_OF_FORTUNE},
122
122
  {"strength?", Card.REVERSE_STRENGTH},
123
123
  {"str?", Card.REVERSE_STRENGTH},
124
- {"hangedman?", Card.REVERSE_HANGED_MAN},
124
+ {"hangedMan?", Card.REVERSE_HANGED_MAN},
125
125
  {"hanged?", Card.REVERSE_HANGED_MAN},
126
126
  {"death?", Card.REVERSE_DEATH},
127
127
  {"temperance?", Card.REVERSE_TEMPERANCE},
@@ -133,79 +133,79 @@ ____exports.CARD_MAP = __TS__New(Map, {
133
133
  {"judgement?", Card.REVERSE_JUDGEMENT},
134
134
  {"judge?", Card.REVERSE_JUDGEMENT},
135
135
  {"world?", Card.REVERSE_WORLD},
136
- {"crackedkey", Card.CRACKED_KEY},
136
+ {"crackedKey", Card.CRACKED_KEY},
137
137
  {"key", Card.CRACKED_KEY},
138
- {"queenofhearts", Card.QUEEN_OF_HEARTS},
139
- {"queenhearts", Card.QUEEN_OF_HEARTS},
138
+ {"queenOfHearts", Card.QUEEN_OF_HEARTS},
139
+ {"queenHearts", Card.QUEEN_OF_HEARTS},
140
140
  {"wildcard", Card.WILD},
141
- {"soulofisaac", Card.SOUL_ISAAC},
142
- {"soulisaac", Card.SOUL_ISAAC},
141
+ {"soulOfIsaac", Card.SOUL_ISAAC},
142
+ {"soulIsaac", Card.SOUL_ISAAC},
143
143
  {"isaac", Card.SOUL_ISAAC},
144
- {"soulofmagdalene", Card.SOUL_MAGDALENE},
145
- {"soulmagdalene", Card.SOUL_MAGDALENE},
144
+ {"soulOfMagdalene", Card.SOUL_MAGDALENE},
145
+ {"soulMagdalene", Card.SOUL_MAGDALENE},
146
146
  {"magdalene", Card.SOUL_MAGDALENE},
147
- {"soulofcain", Card.SOUL_CAIN},
148
- {"soulcain", Card.SOUL_CAIN},
147
+ {"soulOfCain", Card.SOUL_CAIN},
148
+ {"soulCain", Card.SOUL_CAIN},
149
149
  {"cain", Card.SOUL_CAIN},
150
- {"soulofjudas", Card.SOUL_JUDAS},
151
- {"souljudas", Card.SOUL_JUDAS},
150
+ {"soulOfJudas", Card.SOUL_JUDAS},
151
+ {"soulJudas", Card.SOUL_JUDAS},
152
152
  {"judas", Card.SOUL_JUDAS},
153
- {"soulof???", Card.SOUL_BLUE_BABY},
153
+ {"soulOf???", Card.SOUL_BLUE_BABY},
154
154
  {"soul???", Card.SOUL_BLUE_BABY},
155
155
  {"???", Card.SOUL_BLUE_BABY},
156
- {"soulofbluebaby", Card.SOUL_BLUE_BABY},
157
- {"soulbluebaby", Card.SOUL_BLUE_BABY},
158
- {"bluebaby", Card.SOUL_BLUE_BABY},
159
- {"soulofeve", Card.SOUL_EVE},
160
- {"souleve", Card.SOUL_EVE},
156
+ {"soulOfBlueBaby", Card.SOUL_BLUE_BABY},
157
+ {"soulBlueBaby", Card.SOUL_BLUE_BABY},
158
+ {"blueBaby", Card.SOUL_BLUE_BABY},
159
+ {"soulOfEve", Card.SOUL_EVE},
160
+ {"soulEve", Card.SOUL_EVE},
161
161
  {"eve", Card.SOUL_EVE},
162
- {"soulofsamson", Card.SOUL_SAMSON},
163
- {"soulsamson", Card.SOUL_SAMSON},
162
+ {"soulOfSamson", Card.SOUL_SAMSON},
163
+ {"soulSamson", Card.SOUL_SAMSON},
164
164
  {"samson", Card.SOUL_SAMSON},
165
- {"soulofazazel", Card.SOUL_AZAZEL},
166
- {"soulazazel", Card.SOUL_AZAZEL},
165
+ {"soulOfAzazel", Card.SOUL_AZAZEL},
166
+ {"soulAzazel", Card.SOUL_AZAZEL},
167
167
  {"azazel", Card.SOUL_AZAZEL},
168
- {"souloflazarus", Card.SOUL_LAZARUS},
169
- {"soullazarus", Card.SOUL_LAZARUS},
168
+ {"soulOfLazarus", Card.SOUL_LAZARUS},
169
+ {"soulLazarus", Card.SOUL_LAZARUS},
170
170
  {"lazarus", Card.SOUL_LAZARUS},
171
- {"soulofeden", Card.SOUL_EDEN},
172
- {"souleden", Card.SOUL_EDEN},
171
+ {"soulOfEden", Card.SOUL_EDEN},
172
+ {"soulEden", Card.SOUL_EDEN},
173
173
  {"eden", Card.SOUL_EDEN},
174
- {"soulofthelost", Card.SOUL_LOST},
175
- {"soulthelost", Card.SOUL_LOST},
176
- {"thelost", Card.SOUL_LOST},
177
- {"souloflost", Card.SOUL_LOST},
178
- {"soullost", Card.SOUL_LOST},
174
+ {"soulOfTheLost", Card.SOUL_LOST},
175
+ {"soulTheLost", Card.SOUL_LOST},
176
+ {"theLost", Card.SOUL_LOST},
177
+ {"soulOfLost", Card.SOUL_LOST},
178
+ {"soulLost", Card.SOUL_LOST},
179
179
  {"lost", Card.SOUL_LOST},
180
- {"souloflilith", Card.SOUL_LILITH},
181
- {"soullilith", Card.SOUL_LILITH},
180
+ {"soulOfLilith", Card.SOUL_LILITH},
181
+ {"soulLilith", Card.SOUL_LILITH},
182
182
  {"lilith", Card.SOUL_LILITH},
183
- {"soulofthekeeper", Card.SOUL_KEEPER},
184
- {"soulthekeeper", Card.SOUL_KEEPER},
185
- {"thekeeper", Card.SOUL_KEEPER},
186
- {"soulofkeeper", Card.SOUL_KEEPER},
187
- {"soulkeeper", Card.SOUL_KEEPER},
183
+ {"soulOfTheKeeper", Card.SOUL_KEEPER},
184
+ {"soulTheKeeper", Card.SOUL_KEEPER},
185
+ {"theKeeper", Card.SOUL_KEEPER},
186
+ {"soulOfKeeper", Card.SOUL_KEEPER},
187
+ {"soulKeeper", Card.SOUL_KEEPER},
188
188
  {"keeper", Card.SOUL_KEEPER},
189
- {"soulofapollyon", Card.SOUL_APOLLYON},
190
- {"soulapollyon", Card.SOUL_APOLLYON},
189
+ {"soulOfApollyon", Card.SOUL_APOLLYON},
190
+ {"soulApollyon", Card.SOUL_APOLLYON},
191
191
  {"apollyon", Card.SOUL_APOLLYON},
192
- {"souloftheforgotten", Card.SOUL_FORGOTTEN},
193
- {"soultheforgotten", Card.SOUL_FORGOTTEN},
194
- {"theforgotten", Card.SOUL_FORGOTTEN},
195
- {"soulofforgotten", Card.SOUL_FORGOTTEN},
196
- {"soulforgotten", Card.SOUL_FORGOTTEN},
192
+ {"soulOfTheForgotten", Card.SOUL_FORGOTTEN},
193
+ {"soulTheForgotten", Card.SOUL_FORGOTTEN},
194
+ {"theForgotten", Card.SOUL_FORGOTTEN},
195
+ {"soulOfForgotten", Card.SOUL_FORGOTTEN},
196
+ {"soulForgotten", Card.SOUL_FORGOTTEN},
197
197
  {"forgotten", Card.SOUL_FORGOTTEN},
198
- {"soulofbethany", Card.SOUL_BETHANY},
199
- {"soulbethany", Card.SOUL_BETHANY},
198
+ {"soulOfBethany", Card.SOUL_BETHANY},
199
+ {"soulBethany", Card.SOUL_BETHANY},
200
200
  {"bethany", Card.SOUL_BETHANY},
201
- {"soulofjacobandesau", Card.SOUL_JACOB},
202
- {"souljacobandesau", Card.SOUL_JACOB},
203
- {"jacobandesau", Card.SOUL_JACOB},
204
- {"soulofjacob&esau", Card.SOUL_JACOB},
205
- {"souljacob&esau", Card.SOUL_JACOB},
206
- {"jacob&esau", Card.SOUL_JACOB},
207
- {"soulofjacob", Card.SOUL_JACOB},
208
- {"souljacob", Card.SOUL_JACOB},
201
+ {"soulOfJacobAndEsau", Card.SOUL_JACOB},
202
+ {"soulJacobAndEsau", Card.SOUL_JACOB},
203
+ {"jacobAndEsau", Card.SOUL_JACOB},
204
+ {"soulOfJacob&Esau", Card.SOUL_JACOB},
205
+ {"soulJacob&Esau", Card.SOUL_JACOB},
206
+ {"jacob&Esau", Card.SOUL_JACOB},
207
+ {"soulOfJacob", Card.SOUL_JACOB},
208
+ {"soulJacob", Card.SOUL_JACOB},
209
209
  {"jacob", Card.SOUL_JACOB}
210
210
  })
211
211
  return ____exports