isaacscript-common 7.4.3 → 7.5.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 (118) hide show
  1. package/dist/callbacks/postGridEntity.d.ts.map +1 -1
  2. package/dist/callbacks/postGridEntity.lua +53 -6
  3. package/dist/callbacks/postPlayerChangeStat.d.ts.map +1 -1
  4. package/dist/callbacks/postPlayerChangeStat.lua +9 -2
  5. package/dist/callbacks/subscriptions/postGridEntityCustomBroken.d.ts +1 -0
  6. package/dist/callbacks/subscriptions/postGridEntityCustomBroken.d.ts.map +1 -1
  7. package/dist/callbacks/subscriptions/postGridEntityCustomBroken.lua +5 -2
  8. package/dist/callbacks/subscriptions/postGridEntityCustomInit.d.ts +9 -0
  9. package/dist/callbacks/subscriptions/postGridEntityCustomInit.d.ts.map +1 -0
  10. package/dist/callbacks/subscriptions/postGridEntityCustomInit.lua +23 -0
  11. package/dist/callbacks/subscriptions/postGridEntityCustomRemove.d.ts +9 -0
  12. package/dist/callbacks/subscriptions/postGridEntityCustomRemove.d.ts.map +1 -0
  13. package/dist/callbacks/subscriptions/postGridEntityCustomRemove.lua +23 -0
  14. package/dist/callbacks/subscriptions/postGridEntityCustomStateChanged.d.ts +9 -0
  15. package/dist/callbacks/subscriptions/postGridEntityCustomStateChanged.d.ts.map +1 -0
  16. package/dist/callbacks/subscriptions/postGridEntityCustomStateChanged.lua +29 -0
  17. package/dist/callbacks/subscriptions/postPlayerChangeStat.d.ts +3 -2
  18. package/dist/callbacks/subscriptions/postPlayerChangeStat.d.ts.map +1 -1
  19. package/dist/enums/ModCallbackCustom.d.ts +131 -81
  20. package/dist/enums/ModCallbackCustom.d.ts.map +1 -1
  21. package/dist/enums/ModCallbackCustom.lua +67 -61
  22. package/dist/enums/StatType.d.ts +3 -1
  23. package/dist/enums/StatType.d.ts.map +1 -1
  24. package/dist/enums/StatType.lua +2 -0
  25. package/dist/features/customGridEntity.d.ts +30 -13
  26. package/dist/features/customGridEntity.d.ts.map +1 -1
  27. package/dist/features/customGridEntity.lua +67 -48
  28. package/dist/features/customStage/customStageGridEntities.d.ts.map +1 -1
  29. package/dist/features/customStage/customStageGridEntities.lua +37 -31
  30. package/dist/functions/dev.d.ts +20 -0
  31. package/dist/functions/dev.d.ts.map +1 -0
  32. package/dist/functions/dev.lua +34 -0
  33. package/dist/functions/playerStats.d.ts.map +1 -1
  34. package/dist/functions/playerStats.lua +2 -1
  35. package/dist/functions/rooms.d.ts +5 -0
  36. package/dist/functions/rooms.d.ts.map +1 -1
  37. package/dist/functions/rooms.lua +12 -2
  38. package/dist/index.d.ts +204 -96
  39. package/dist/index.d.ts.map +1 -1
  40. package/dist/index.lua +1134 -8
  41. package/dist/interfaces/StatTypeType.d.ts +1 -0
  42. package/dist/interfaces/StatTypeType.d.ts.map +1 -1
  43. package/dist/interfaces/private/AddCallbackParameterCustom.d.ts +6 -0
  44. package/dist/interfaces/private/AddCallbackParameterCustom.d.ts.map +1 -1
  45. package/dist/objects/callbackRegisterFunctions.d.ts.map +1 -1
  46. package/dist/objects/callbackRegisterFunctions.lua +9 -0
  47. package/dist/types/PossibleStatType.d.ts +7 -0
  48. package/dist/types/PossibleStatType.d.ts.map +1 -0
  49. package/dist/{interfaces/index.lua → types/PossibleStatType.lua} +0 -0
  50. package/package.json +1 -1
  51. package/src/callbacks/postGridEntity.ts +75 -10
  52. package/src/callbacks/postPlayerChangeStat.ts +8 -4
  53. package/src/callbacks/subscriptions/postGridEntityCustomBroken.ts +4 -0
  54. package/src/callbacks/subscriptions/postGridEntityCustomInit.ts +38 -0
  55. package/src/callbacks/subscriptions/postGridEntityCustomRemove.ts +35 -0
  56. package/src/callbacks/subscriptions/postGridEntityCustomStateChanged.ts +42 -0
  57. package/src/callbacks/subscriptions/postPlayerChangeStat.ts +4 -7
  58. package/src/enums/ModCallbackCustom.ts +73 -20
  59. package/src/enums/StatType.ts +3 -3
  60. package/src/features/customGridEntity.ts +87 -61
  61. package/src/features/customStage/customStageGridEntities.ts +16 -7
  62. package/src/functions/dev.ts +31 -0
  63. package/src/functions/playerStats.ts +1 -0
  64. package/src/functions/rooms.ts +18 -0
  65. package/src/index.ts +208 -9
  66. package/src/interfaces/StatTypeType.ts +1 -0
  67. package/src/interfaces/private/AddCallbackParameterCustom.ts +6 -0
  68. package/src/objects/callbackRegisterFunctions.ts +9 -0
  69. package/src/types/PossibleStatType.ts +12 -0
  70. package/dist/classes/index.d.ts +0 -3
  71. package/dist/classes/index.d.ts.map +0 -1
  72. package/dist/classes/index.lua +0 -18
  73. package/dist/core/index.d.ts +0 -5
  74. package/dist/core/index.d.ts.map +0 -1
  75. package/dist/core/index.lua +0 -34
  76. package/dist/enums/DecorationVariant.d.ts +0 -10
  77. package/dist/enums/DecorationVariant.d.ts.map +0 -1
  78. package/dist/enums/DecorationVariant.lua +0 -7
  79. package/dist/enums/index.d.ts +0 -11
  80. package/dist/enums/index.d.ts.map +0 -1
  81. package/dist/enums/index.lua +0 -82
  82. package/dist/features/index.d.ts +0 -30
  83. package/dist/features/index.d.ts.map +0 -1
  84. package/dist/features/index.lua +0 -216
  85. package/dist/functions/index.d.ts +0 -100
  86. package/dist/functions/index.d.ts.map +0 -1
  87. package/dist/functions/index.lua +0 -794
  88. package/dist/interfaces/index.d.ts +0 -12
  89. package/dist/interfaces/index.d.ts.map +0 -1
  90. package/dist/maps/index.d.ts +0 -5
  91. package/dist/maps/index.d.ts.map +0 -1
  92. package/dist/maps/index.lua +0 -34
  93. package/dist/objects/index.d.ts +0 -2
  94. package/dist/objects/index.d.ts.map +0 -1
  95. package/dist/objects/index.lua +0 -10
  96. package/dist/types/index.d.ts +0 -11
  97. package/dist/types/index.d.ts.map +0 -1
  98. package/dist/types/index.lua +0 -10
  99. package/src/classes/index.ts +0 -2
  100. package/src/classes/indexTypeDoc.ts +0 -2
  101. package/src/core/index.ts +0 -4
  102. package/src/core/indexTypeDoc.ts +0 -4
  103. package/src/enums/DecorationVariant.ts +0 -10
  104. package/src/enums/index.ts +0 -10
  105. package/src/enums/indexTypeDoc.ts +0 -10
  106. package/src/features/index.ts +0 -59
  107. package/src/features/indexTypeDoc.ts +0 -30
  108. package/src/functions/index.ts +0 -101
  109. package/src/functions/indexTypeDoc.ts +0 -101
  110. package/src/indexTypeDoc.ts +0 -13
  111. package/src/interfaces/index.ts +0 -11
  112. package/src/interfaces/indexTypeDoc.ts +0 -11
  113. package/src/maps/index.ts +0 -4
  114. package/src/maps/indexTypeDoc.ts +0 -4
  115. package/src/objects/index.ts +0 -1
  116. package/src/objects/indexTypeDoc.ts +0 -1
  117. package/src/types/index.ts +0 -10
  118. package/src/types/indexTypeDoc.ts +0 -10
package/dist/index.lua CHANGED
@@ -1,6 +1,6 @@
1
1
  local ____exports = {}
2
2
  do
3
- local ____export = require("classes.index")
3
+ local ____export = require("classes.DefaultMap")
4
4
  for ____exportKey, ____exportValue in pairs(____export) do
5
5
  if ____exportKey ~= "default" then
6
6
  ____exports[____exportKey] = ____exportValue
@@ -8,7 +8,7 @@ do
8
8
  end
9
9
  end
10
10
  do
11
- local ____export = require("core.index")
11
+ local ____export = require("classes.ModUpgraded")
12
12
  for ____exportKey, ____exportValue in pairs(____export) do
13
13
  if ____exportKey ~= "default" then
14
14
  ____exports[____exportKey] = ____exportValue
@@ -16,7 +16,7 @@ do
16
16
  end
17
17
  end
18
18
  do
19
- local ____export = require("enums.index")
19
+ local ____export = require("core.cachedClasses")
20
20
  for ____exportKey, ____exportValue in pairs(____export) do
21
21
  if ____exportKey ~= "default" then
22
22
  ____exports[____exportKey] = ____exportValue
@@ -24,7 +24,7 @@ do
24
24
  end
25
25
  end
26
26
  do
27
- local ____export = require("features.index")
27
+ local ____export = require("core.constants")
28
28
  for ____exportKey, ____exportValue in pairs(____export) do
29
29
  if ____exportKey ~= "default" then
30
30
  ____exports[____exportKey] = ____exportValue
@@ -32,7 +32,7 @@ do
32
32
  end
33
33
  end
34
34
  do
35
- local ____export = require("functions.index")
35
+ local ____export = require("core.constantsFirstLast")
36
36
  for ____exportKey, ____exportValue in pairs(____export) do
37
37
  if ____exportKey ~= "default" then
38
38
  ____exports[____exportKey] = ____exportValue
@@ -40,7 +40,7 @@ do
40
40
  end
41
41
  end
42
42
  do
43
- local ____export = require("maps.index")
43
+ local ____export = require("core.upgradeMod")
44
44
  for ____exportKey, ____exportValue in pairs(____export) do
45
45
  if ____exportKey ~= "default" then
46
46
  ____exports[____exportKey] = ____exportValue
@@ -48,7 +48,7 @@ do
48
48
  end
49
49
  end
50
50
  do
51
- local ____export = require("objects.index")
51
+ local ____export = require("enums.AmbushType")
52
52
  for ____exportKey, ____exportValue in pairs(____export) do
53
53
  if ____exportKey ~= "default" then
54
54
  ____exports[____exportKey] = ____exportValue
@@ -56,7 +56,1133 @@ do
56
56
  end
57
57
  end
58
58
  do
59
- local ____export = require("types.index")
59
+ local ____export = require("enums.CornerType")
60
+ for ____exportKey, ____exportValue in pairs(____export) do
61
+ if ____exportKey ~= "default" then
62
+ ____exports[____exportKey] = ____exportValue
63
+ end
64
+ end
65
+ end
66
+ do
67
+ local ____export = require("enums.HealthType")
68
+ for ____exportKey, ____exportValue in pairs(____export) do
69
+ if ____exportKey ~= "default" then
70
+ ____exports[____exportKey] = ____exportValue
71
+ end
72
+ end
73
+ end
74
+ do
75
+ local ____export = require("enums.ModCallbackCustom")
76
+ for ____exportKey, ____exportValue in pairs(____export) do
77
+ if ____exportKey ~= "default" then
78
+ ____exports[____exportKey] = ____exportValue
79
+ end
80
+ end
81
+ end
82
+ do
83
+ local ____export = require("enums.PocketItemType")
84
+ for ____exportKey, ____exportValue in pairs(____export) do
85
+ if ____exportKey ~= "default" then
86
+ ____exports[____exportKey] = ____exportValue
87
+ end
88
+ end
89
+ end
90
+ do
91
+ local ____export = require("enums.RockAltType")
92
+ for ____exportKey, ____exportValue in pairs(____export) do
93
+ if ____exportKey ~= "default" then
94
+ ____exports[____exportKey] = ____exportValue
95
+ end
96
+ end
97
+ end
98
+ do
99
+ local ____export = require("enums.SaveDataKey")
100
+ for ____exportKey, ____exportValue in pairs(____export) do
101
+ if ____exportKey ~= "default" then
102
+ ____exports[____exportKey] = ____exportValue
103
+ end
104
+ end
105
+ end
106
+ do
107
+ local ____export = require("enums.SerializationType")
108
+ for ____exportKey, ____exportValue in pairs(____export) do
109
+ if ____exportKey ~= "default" then
110
+ ____exports[____exportKey] = ____exportValue
111
+ end
112
+ end
113
+ end
114
+ do
115
+ local ____export = require("enums.SlotDestructionType")
116
+ for ____exportKey, ____exportValue in pairs(____export) do
117
+ if ____exportKey ~= "default" then
118
+ ____exports[____exportKey] = ____exportValue
119
+ end
120
+ end
121
+ end
122
+ do
123
+ local ____export = require("enums.StatType")
124
+ for ____exportKey, ____exportValue in pairs(____export) do
125
+ if ____exportKey ~= "default" then
126
+ ____exports[____exportKey] = ____exportValue
127
+ end
128
+ end
129
+ end
130
+ do
131
+ local ____characterHealthConversion = require("features.characterHealthConversion")
132
+ local registerCharacterHealthConversion = ____characterHealthConversion.registerCharacterHealthConversion
133
+ ____exports.registerCharacterHealthConversion = registerCharacterHealthConversion
134
+ end
135
+ do
136
+ local ____characterStats = require("features.characterStats")
137
+ local registerCharacterStats = ____characterStats.registerCharacterStats
138
+ ____exports.registerCharacterStats = registerCharacterStats
139
+ end
140
+ do
141
+ local ____collectibleItemPoolType = require("features.collectibleItemPoolType")
142
+ local getCollectibleItemPoolType = ____collectibleItemPoolType.getCollectibleItemPoolType
143
+ ____exports.getCollectibleItemPoolType = getCollectibleItemPoolType
144
+ end
145
+ do
146
+ local ____customDoor = require("features.customDoor")
147
+ local initCustomDoor = ____customDoor.initCustomDoor
148
+ local spawnCustomDoor = ____customDoor.spawnCustomDoor
149
+ ____exports.initCustomDoor = initCustomDoor
150
+ ____exports.spawnCustomDoor = spawnCustomDoor
151
+ end
152
+ do
153
+ local ____customGridEntity = require("features.customGridEntity")
154
+ local removeCustomGrid = ____customGridEntity.removeCustomGridEntity
155
+ local spawnCustomGrid = ____customGridEntity.spawnCustomGridEntity
156
+ ____exports.removeCustomGrid = removeCustomGrid
157
+ ____exports.spawnCustomGrid = spawnCustomGrid
158
+ end
159
+ do
160
+ local ____export = require("features.customStage.exports")
161
+ for ____exportKey, ____exportValue in pairs(____export) do
162
+ if ____exportKey ~= "default" then
163
+ ____exports[____exportKey] = ____exportValue
164
+ end
165
+ end
166
+ end
167
+ do
168
+ local ____export = require("features.customTrapdoor.exports")
169
+ for ____exportKey, ____exportValue in pairs(____export) do
170
+ if ____exportKey ~= "default" then
171
+ ____exports[____exportKey] = ____exportValue
172
+ end
173
+ end
174
+ end
175
+ do
176
+ local ____export = require("features.debugDisplay.exports")
177
+ for ____exportKey, ____exportValue in pairs(____export) do
178
+ if ____exportKey ~= "default" then
179
+ ____exports[____exportKey] = ____exportValue
180
+ end
181
+ end
182
+ end
183
+ do
184
+ local ____deployJSONRoom = require("features.deployJSONRoom")
185
+ local deployJSONRoom = ____deployJSONRoom.deployJSONRoom
186
+ local deployRandomJSONRoom = ____deployJSONRoom.deployRandomJSONRoom
187
+ local emptyRoom = ____deployJSONRoom.emptyRoom
188
+ ____exports.deployJSONRoom = deployJSONRoom
189
+ ____exports.deployRandomJSONRoom = deployRandomJSONRoom
190
+ ____exports.emptyRoom = emptyRoom
191
+ end
192
+ do
193
+ local ____disableAllSound = require("features.disableAllSound")
194
+ local disableAllSound = ____disableAllSound.disableAllSound
195
+ local enableAllSound = ____disableAllSound.enableAllSound
196
+ ____exports.disableAllSound = disableAllSound
197
+ ____exports.enableAllSound = enableAllSound
198
+ end
199
+ do
200
+ local ____disableInputs = require("features.disableInputs")
201
+ local disableAllInputs = ____disableInputs.disableAllInputs
202
+ local disableAllInputsExceptFor = ____disableInputs.disableAllInputsExceptFor
203
+ local disableMovementInputs = ____disableInputs.disableMovementInputs
204
+ local disableShootingInputs = ____disableInputs.disableShootingInputs
205
+ local enableAllInputs = ____disableInputs.enableAllInputs
206
+ local enableAllInputsExceptFor = ____disableInputs.enableAllInputsExceptFor
207
+ ____exports.disableAllInputs = disableAllInputs
208
+ ____exports.disableAllInputsExceptFor = disableAllInputsExceptFor
209
+ ____exports.disableMovementInputs = disableMovementInputs
210
+ ____exports.disableShootingInputs = disableShootingInputs
211
+ ____exports.enableAllInputs = enableAllInputs
212
+ ____exports.enableAllInputsExceptFor = enableAllInputsExceptFor
213
+ end
214
+ do
215
+ local ____export = require("features.extraConsoleCommands.exports")
216
+ for ____exportKey, ____exportValue in pairs(____export) do
217
+ if ____exportKey ~= "default" then
218
+ ____exports[____exportKey] = ____exportValue
219
+ end
220
+ end
221
+ end
222
+ do
223
+ local ____fadeInRemover = require("features.fadeInRemover")
224
+ local removeFadeIn = ____fadeInRemover.removeFadeIn
225
+ local restoreFadeIn = ____fadeInRemover.restoreFadeIn
226
+ ____exports.removeFadeIn = removeFadeIn
227
+ ____exports.restoreFadeIn = restoreFadeIn
228
+ end
229
+ do
230
+ local ____fastReset = require("features.fastReset")
231
+ local disableFastReset = ____fastReset.disableFastReset
232
+ local enableFastReset = ____fastReset.enableFastReset
233
+ ____exports.disableFastReset = disableFastReset
234
+ ____exports.enableFastReset = enableFastReset
235
+ end
236
+ do
237
+ local ____forgottenSwitch = require("features.forgottenSwitch")
238
+ local forgottenSwitch = ____forgottenSwitch.forgottenSwitch
239
+ ____exports.forgottenSwitch = forgottenSwitch
240
+ end
241
+ do
242
+ local ____pause = require("features.pause")
243
+ local pause = ____pause.pause
244
+ local unpause = ____pause.unpause
245
+ ____exports.pause = pause
246
+ ____exports.unpause = unpause
247
+ end
248
+ do
249
+ local ____persistentEntities = require("features.persistentEntities")
250
+ local removePersistentEntity = ____persistentEntities.removePersistentEntity
251
+ local spawnPersistentEntity = ____persistentEntities.spawnPersistentEntity
252
+ ____exports.removePersistentEntity = removePersistentEntity
253
+ ____exports.spawnPersistentEntity = spawnPersistentEntity
254
+ end
255
+ do
256
+ local ____export = require("features.pickupIndex")
257
+ for ____exportKey, ____exportValue in pairs(____export) do
258
+ if ____exportKey ~= "default" then
259
+ ____exports[____exportKey] = ____exportValue
260
+ end
261
+ end
262
+ end
263
+ do
264
+ local ____playerInventory = require("features.playerInventory")
265
+ local getPlayerInventory = ____playerInventory.getPlayerInventory
266
+ ____exports.getPlayerInventory = getPlayerInventory
267
+ end
268
+ do
269
+ local ____ponyDetection = require("features.ponyDetection")
270
+ local anyPlayerUsingPony = ____ponyDetection.anyPlayerUsingPony
271
+ local isPlayerUsingPony = ____ponyDetection.isPlayerUsingPony
272
+ ____exports.anyPlayerUsingPony = anyPlayerUsingPony
273
+ ____exports.isPlayerUsingPony = isPlayerUsingPony
274
+ end
275
+ do
276
+ local ____preventCollectibleRotation = require("features.preventCollectibleRotation")
277
+ local preventCollectibleRotation = ____preventCollectibleRotation.preventCollectibleRotation
278
+ ____exports.preventCollectibleRotation = preventCollectibleRotation
279
+ end
280
+ do
281
+ local ____registerHotkey = require("features.registerHotkey")
282
+ local registerHotkey = ____registerHotkey.registerHotkey
283
+ local unregisterHotkey = ____registerHotkey.unregisterHotkey
284
+ ____exports.registerHotkey = registerHotkey
285
+ ____exports.unregisterHotkey = unregisterHotkey
286
+ end
287
+ do
288
+ local ____roomClearFrame = require("features.roomClearFrame")
289
+ local getRoomClearGameFrame = ____roomClearFrame.getRoomClearGameFrame
290
+ local getRoomClearRoomFrame = ____roomClearFrame.getRoomClearRoomFrame
291
+ ____exports.getRoomClearGameFrame = getRoomClearGameFrame
292
+ ____exports.getRoomClearRoomFrame = getRoomClearRoomFrame
293
+ end
294
+ do
295
+ local ____export = require("features.roomHistory")
296
+ for ____exportKey, ____exportValue in pairs(____export) do
297
+ if ____exportKey ~= "default" then
298
+ ____exports[____exportKey] = ____exportValue
299
+ end
300
+ end
301
+ end
302
+ do
303
+ local ____runInNFrames = require("features.runInNFrames")
304
+ local runInNGameFrames = ____runInNFrames.runInNGameFrames
305
+ local runInNRenderFrames = ____runInNFrames.runInNRenderFrames
306
+ local runNextGameFrame = ____runInNFrames.runNextGameFrame
307
+ local runNextRenderFrame = ____runInNFrames.runNextRenderFrame
308
+ local setIntervalGameFrames = ____runInNFrames.setIntervalGameFrames
309
+ local setIntervalRenderFrames = ____runInNFrames.setIntervalRenderFrames
310
+ ____exports.runInNGameFrames = runInNGameFrames
311
+ ____exports.runInNRenderFrames = runInNRenderFrames
312
+ ____exports.runNextGameFrame = runNextGameFrame
313
+ ____exports.runNextRenderFrame = runNextRenderFrame
314
+ ____exports.setIntervalGameFrames = setIntervalGameFrames
315
+ ____exports.setIntervalRenderFrames = setIntervalRenderFrames
316
+ end
317
+ do
318
+ local ____export = require("features.saveDataManager.exports")
319
+ for ____exportKey, ____exportValue in pairs(____export) do
320
+ if ____exportKey ~= "default" then
321
+ ____exports[____exportKey] = ____exportValue
322
+ end
323
+ end
324
+ end
325
+ do
326
+ local ____sirenHelpers = require("features.sirenHelpers")
327
+ local hasSirenStolenFamiliar = ____sirenHelpers.hasSirenStolenFamiliar
328
+ local setFamiliarNoSirenSteal = ____sirenHelpers.setFamiliarNoSirenSteal
329
+ ____exports.hasSirenStolenFamiliar = hasSirenStolenFamiliar
330
+ ____exports.setFamiliarNoSirenSteal = setFamiliarNoSirenSteal
331
+ end
332
+ do
333
+ local ____stageHistory = require("features.stageHistory")
334
+ local getStageHistory = ____stageHistory.getStageHistory
335
+ local hasVisitedStage = ____stageHistory.hasVisitedStage
336
+ ____exports.getStageHistory = getStageHistory
337
+ ____exports.hasVisitedStage = hasVisitedStage
338
+ end
339
+ do
340
+ local ____taintedLazarusPlayers = require("features.taintedLazarusPlayers")
341
+ local getTaintedLazarusSubPlayer = ____taintedLazarusPlayers.getTaintedLazarusSubPlayer
342
+ ____exports.getTaintedLazarusSubPlayer = getTaintedLazarusSubPlayer
343
+ end
344
+ do
345
+ local ____export = require("functions.ambush")
346
+ for ____exportKey, ____exportValue in pairs(____export) do
347
+ if ____exportKey ~= "default" then
348
+ ____exports[____exportKey] = ____exportValue
349
+ end
350
+ end
351
+ end
352
+ do
353
+ local ____export = require("functions.array")
354
+ for ____exportKey, ____exportValue in pairs(____export) do
355
+ if ____exportKey ~= "default" then
356
+ ____exports[____exportKey] = ____exportValue
357
+ end
358
+ end
359
+ end
360
+ do
361
+ local ____export = require("functions.benchmark")
362
+ for ____exportKey, ____exportValue in pairs(____export) do
363
+ if ____exportKey ~= "default" then
364
+ ____exports[____exportKey] = ____exportValue
365
+ end
366
+ end
367
+ end
368
+ do
369
+ local ____export = require("functions.bitSet128")
370
+ for ____exportKey, ____exportValue in pairs(____export) do
371
+ if ____exportKey ~= "default" then
372
+ ____exports[____exportKey] = ____exportValue
373
+ end
374
+ end
375
+ end
376
+ do
377
+ local ____export = require("functions.bitwise")
378
+ for ____exportKey, ____exportValue in pairs(____export) do
379
+ if ____exportKey ~= "default" then
380
+ ____exports[____exportKey] = ____exportValue
381
+ end
382
+ end
383
+ end
384
+ do
385
+ local ____export = require("functions.bombs")
386
+ for ____exportKey, ____exportValue in pairs(____export) do
387
+ if ____exportKey ~= "default" then
388
+ ____exports[____exportKey] = ____exportValue
389
+ end
390
+ end
391
+ end
392
+ do
393
+ local ____export = require("functions.bosses")
394
+ for ____exportKey, ____exportValue in pairs(____export) do
395
+ if ____exportKey ~= "default" then
396
+ ____exports[____exportKey] = ____exportValue
397
+ end
398
+ end
399
+ end
400
+ do
401
+ local ____export = require("functions.cacheFlag")
402
+ for ____exportKey, ____exportValue in pairs(____export) do
403
+ if ____exportKey ~= "default" then
404
+ ____exports[____exportKey] = ____exportValue
405
+ end
406
+ end
407
+ end
408
+ do
409
+ local ____export = require("functions.cards")
410
+ for ____exportKey, ____exportValue in pairs(____export) do
411
+ if ____exportKey ~= "default" then
412
+ ____exports[____exportKey] = ____exportValue
413
+ end
414
+ end
415
+ end
416
+ do
417
+ local ____export = require("functions.challenges")
418
+ for ____exportKey, ____exportValue in pairs(____export) do
419
+ if ____exportKey ~= "default" then
420
+ ____exports[____exportKey] = ____exportValue
421
+ end
422
+ end
423
+ end
424
+ do
425
+ local ____export = require("functions.characters")
426
+ for ____exportKey, ____exportValue in pairs(____export) do
427
+ if ____exportKey ~= "default" then
428
+ ____exports[____exportKey] = ____exportValue
429
+ end
430
+ end
431
+ end
432
+ do
433
+ local ____export = require("functions.charge")
434
+ for ____exportKey, ____exportValue in pairs(____export) do
435
+ if ____exportKey ~= "default" then
436
+ ____exports[____exportKey] = ____exportValue
437
+ end
438
+ end
439
+ end
440
+ do
441
+ local ____export = require("functions.chargeBar")
442
+ for ____exportKey, ____exportValue in pairs(____export) do
443
+ if ____exportKey ~= "default" then
444
+ ____exports[____exportKey] = ____exportValue
445
+ end
446
+ end
447
+ end
448
+ do
449
+ local ____export = require("functions.collectibles")
450
+ for ____exportKey, ____exportValue in pairs(____export) do
451
+ if ____exportKey ~= "default" then
452
+ ____exports[____exportKey] = ____exportValue
453
+ end
454
+ end
455
+ end
456
+ do
457
+ local ____export = require("functions.collectibleSet")
458
+ for ____exportKey, ____exportValue in pairs(____export) do
459
+ if ____exportKey ~= "default" then
460
+ ____exports[____exportKey] = ____exportValue
461
+ end
462
+ end
463
+ end
464
+ do
465
+ local ____export = require("functions.collectibleTag")
466
+ for ____exportKey, ____exportValue in pairs(____export) do
467
+ if ____exportKey ~= "default" then
468
+ ____exports[____exportKey] = ____exportValue
469
+ end
470
+ end
471
+ end
472
+ do
473
+ local ____export = require("functions.color")
474
+ for ____exportKey, ____exportValue in pairs(____export) do
475
+ if ____exportKey ~= "default" then
476
+ ____exports[____exportKey] = ____exportValue
477
+ end
478
+ end
479
+ end
480
+ do
481
+ local ____export = require("functions.curses")
482
+ for ____exportKey, ____exportValue in pairs(____export) do
483
+ if ____exportKey ~= "default" then
484
+ ____exports[____exportKey] = ____exportValue
485
+ end
486
+ end
487
+ end
488
+ do
489
+ local ____export = require("functions.debug")
490
+ for ____exportKey, ____exportValue in pairs(____export) do
491
+ if ____exportKey ~= "default" then
492
+ ____exports[____exportKey] = ____exportValue
493
+ end
494
+ end
495
+ end
496
+ do
497
+ local ____export = require("functions.deepCopy")
498
+ for ____exportKey, ____exportValue in pairs(____export) do
499
+ if ____exportKey ~= "default" then
500
+ ____exports[____exportKey] = ____exportValue
501
+ end
502
+ end
503
+ end
504
+ do
505
+ local ____export = require("functions.deepCopyTests")
506
+ for ____exportKey, ____exportValue in pairs(____export) do
507
+ if ____exportKey ~= "default" then
508
+ ____exports[____exportKey] = ____exportValue
509
+ end
510
+ end
511
+ end
512
+ do
513
+ local ____export = require("functions.dev")
514
+ for ____exportKey, ____exportValue in pairs(____export) do
515
+ if ____exportKey ~= "default" then
516
+ ____exports[____exportKey] = ____exportValue
517
+ end
518
+ end
519
+ end
520
+ do
521
+ local ____export = require("functions.dimensions")
522
+ for ____exportKey, ____exportValue in pairs(____export) do
523
+ if ____exportKey ~= "default" then
524
+ ____exports[____exportKey] = ____exportValue
525
+ end
526
+ end
527
+ end
528
+ do
529
+ local ____export = require("functions.direction")
530
+ for ____exportKey, ____exportValue in pairs(____export) do
531
+ if ____exportKey ~= "default" then
532
+ ____exports[____exportKey] = ____exportValue
533
+ end
534
+ end
535
+ end
536
+ do
537
+ local ____export = require("functions.doors")
538
+ for ____exportKey, ____exportValue in pairs(____export) do
539
+ if ____exportKey ~= "default" then
540
+ ____exports[____exportKey] = ____exportValue
541
+ end
542
+ end
543
+ end
544
+ do
545
+ local ____export = require("functions.easing")
546
+ for ____exportKey, ____exportValue in pairs(____export) do
547
+ if ____exportKey ~= "default" then
548
+ ____exports[____exportKey] = ____exportValue
549
+ end
550
+ end
551
+ end
552
+ do
553
+ local ____export = require("functions.eden")
554
+ for ____exportKey, ____exportValue in pairs(____export) do
555
+ if ____exportKey ~= "default" then
556
+ ____exports[____exportKey] = ____exportValue
557
+ end
558
+ end
559
+ end
560
+ do
561
+ local ____export = require("functions.effects")
562
+ for ____exportKey, ____exportValue in pairs(____export) do
563
+ if ____exportKey ~= "default" then
564
+ ____exports[____exportKey] = ____exportValue
565
+ end
566
+ end
567
+ end
568
+ do
569
+ local ____export = require("functions.entities")
570
+ for ____exportKey, ____exportValue in pairs(____export) do
571
+ if ____exportKey ~= "default" then
572
+ ____exports[____exportKey] = ____exportValue
573
+ end
574
+ end
575
+ end
576
+ do
577
+ local ____export = require("functions.entitiesSpecific")
578
+ for ____exportKey, ____exportValue in pairs(____export) do
579
+ if ____exportKey ~= "default" then
580
+ ____exports[____exportKey] = ____exportValue
581
+ end
582
+ end
583
+ end
584
+ do
585
+ local ____export = require("functions.entityTypes")
586
+ for ____exportKey, ____exportValue in pairs(____export) do
587
+ if ____exportKey ~= "default" then
588
+ ____exports[____exportKey] = ____exportValue
589
+ end
590
+ end
591
+ end
592
+ do
593
+ local ____export = require("functions.enums")
594
+ for ____exportKey, ____exportValue in pairs(____export) do
595
+ if ____exportKey ~= "default" then
596
+ ____exports[____exportKey] = ____exportValue
597
+ end
598
+ end
599
+ end
600
+ do
601
+ local ____export = require("functions.familiars")
602
+ for ____exportKey, ____exportValue in pairs(____export) do
603
+ if ____exportKey ~= "default" then
604
+ ____exports[____exportKey] = ____exportValue
605
+ end
606
+ end
607
+ end
608
+ do
609
+ local ____export = require("functions.flag")
610
+ for ____exportKey, ____exportValue in pairs(____export) do
611
+ if ____exportKey ~= "default" then
612
+ ____exports[____exportKey] = ____exportValue
613
+ end
614
+ end
615
+ end
616
+ do
617
+ local ____export = require("functions.flying")
618
+ for ____exportKey, ____exportValue in pairs(____export) do
619
+ if ____exportKey ~= "default" then
620
+ ____exports[____exportKey] = ____exportValue
621
+ end
622
+ end
623
+ end
624
+ do
625
+ local ____export = require("functions.globals")
626
+ for ____exportKey, ____exportValue in pairs(____export) do
627
+ if ____exportKey ~= "default" then
628
+ ____exports[____exportKey] = ____exportValue
629
+ end
630
+ end
631
+ end
632
+ do
633
+ local ____export = require("functions.gridEntities")
634
+ for ____exportKey, ____exportValue in pairs(____export) do
635
+ if ____exportKey ~= "default" then
636
+ ____exports[____exportKey] = ____exportValue
637
+ end
638
+ end
639
+ end
640
+ do
641
+ local ____export = require("functions.gridEntitiesSpecific")
642
+ for ____exportKey, ____exportValue in pairs(____export) do
643
+ if ____exportKey ~= "default" then
644
+ ____exports[____exportKey] = ____exportValue
645
+ end
646
+ end
647
+ end
648
+ do
649
+ local ____export = require("functions.input")
650
+ for ____exportKey, ____exportValue in pairs(____export) do
651
+ if ____exportKey ~= "default" then
652
+ ____exports[____exportKey] = ____exportValue
653
+ end
654
+ end
655
+ end
656
+ do
657
+ local ____export = require("functions.isaacAPIClass")
658
+ for ____exportKey, ____exportValue in pairs(____export) do
659
+ if ____exportKey ~= "default" then
660
+ ____exports[____exportKey] = ____exportValue
661
+ end
662
+ end
663
+ end
664
+ do
665
+ local ____export = require("functions.itemPool")
666
+ for ____exportKey, ____exportValue in pairs(____export) do
667
+ if ____exportKey ~= "default" then
668
+ ____exports[____exportKey] = ____exportValue
669
+ end
670
+ end
671
+ end
672
+ do
673
+ local ____export = require("functions.jsonHelpers")
674
+ for ____exportKey, ____exportValue in pairs(____export) do
675
+ if ____exportKey ~= "default" then
676
+ ____exports[____exportKey] = ____exportValue
677
+ end
678
+ end
679
+ end
680
+ do
681
+ local ____export = require("functions.jsonRoom")
682
+ for ____exportKey, ____exportValue in pairs(____export) do
683
+ if ____exportKey ~= "default" then
684
+ ____exports[____exportKey] = ____exportValue
685
+ end
686
+ end
687
+ end
688
+ do
689
+ local ____export = require("functions.kColor")
690
+ for ____exportKey, ____exportValue in pairs(____export) do
691
+ if ____exportKey ~= "default" then
692
+ ____exports[____exportKey] = ____exportValue
693
+ end
694
+ end
695
+ end
696
+ do
697
+ local ____export = require("functions.language")
698
+ for ____exportKey, ____exportValue in pairs(____export) do
699
+ if ____exportKey ~= "default" then
700
+ ____exports[____exportKey] = ____exportValue
701
+ end
702
+ end
703
+ end
704
+ do
705
+ local ____export = require("functions.level")
706
+ for ____exportKey, ____exportValue in pairs(____export) do
707
+ if ____exportKey ~= "default" then
708
+ ____exports[____exportKey] = ____exportValue
709
+ end
710
+ end
711
+ end
712
+ do
713
+ local ____export = require("functions.levelGrid")
714
+ for ____exportKey, ____exportValue in pairs(____export) do
715
+ if ____exportKey ~= "default" then
716
+ ____exports[____exportKey] = ____exportValue
717
+ end
718
+ end
719
+ end
720
+ do
721
+ local ____export = require("functions.log")
722
+ for ____exportKey, ____exportValue in pairs(____export) do
723
+ if ____exportKey ~= "default" then
724
+ ____exports[____exportKey] = ____exportValue
725
+ end
726
+ end
727
+ end
728
+ do
729
+ local ____export = require("functions.logEntities")
730
+ for ____exportKey, ____exportValue in pairs(____export) do
731
+ if ____exportKey ~= "default" then
732
+ ____exports[____exportKey] = ____exportValue
733
+ end
734
+ end
735
+ end
736
+ do
737
+ local ____export = require("functions.map")
738
+ for ____exportKey, ____exportValue in pairs(____export) do
739
+ if ____exportKey ~= "default" then
740
+ ____exports[____exportKey] = ____exportValue
741
+ end
742
+ end
743
+ end
744
+ do
745
+ local ____export = require("functions.math")
746
+ for ____exportKey, ____exportValue in pairs(____export) do
747
+ if ____exportKey ~= "default" then
748
+ ____exports[____exportKey] = ____exportValue
749
+ end
750
+ end
751
+ end
752
+ do
753
+ local ____export = require("functions.mergeTests")
754
+ for ____exportKey, ____exportValue in pairs(____export) do
755
+ if ____exportKey ~= "default" then
756
+ ____exports[____exportKey] = ____exportValue
757
+ end
758
+ end
759
+ end
760
+ do
761
+ local ____export = require("functions.minimap")
762
+ for ____exportKey, ____exportValue in pairs(____export) do
763
+ if ____exportKey ~= "default" then
764
+ ____exports[____exportKey] = ____exportValue
765
+ end
766
+ end
767
+ end
768
+ do
769
+ local ____export = require("functions.nextStage")
770
+ for ____exportKey, ____exportValue in pairs(____export) do
771
+ if ____exportKey ~= "default" then
772
+ ____exports[____exportKey] = ____exportValue
773
+ end
774
+ end
775
+ end
776
+ do
777
+ local ____export = require("functions.npcs")
778
+ for ____exportKey, ____exportValue in pairs(____export) do
779
+ if ____exportKey ~= "default" then
780
+ ____exports[____exportKey] = ____exportValue
781
+ end
782
+ end
783
+ end
784
+ do
785
+ local ____export = require("functions.pickups")
786
+ for ____exportKey, ____exportValue in pairs(____export) do
787
+ if ____exportKey ~= "default" then
788
+ ____exports[____exportKey] = ____exportValue
789
+ end
790
+ end
791
+ end
792
+ do
793
+ local ____export = require("functions.pickupsSpecific")
794
+ for ____exportKey, ____exportValue in pairs(____export) do
795
+ if ____exportKey ~= "default" then
796
+ ____exports[____exportKey] = ____exportValue
797
+ end
798
+ end
799
+ end
800
+ do
801
+ local ____export = require("functions.pickupVariants")
802
+ for ____exportKey, ____exportValue in pairs(____export) do
803
+ if ____exportKey ~= "default" then
804
+ ____exports[____exportKey] = ____exportValue
805
+ end
806
+ end
807
+ end
808
+ do
809
+ local ____export = require("functions.pills")
810
+ for ____exportKey, ____exportValue in pairs(____export) do
811
+ if ____exportKey ~= "default" then
812
+ ____exports[____exportKey] = ____exportValue
813
+ end
814
+ end
815
+ end
816
+ do
817
+ local ____export = require("functions.playerCenter")
818
+ for ____exportKey, ____exportValue in pairs(____export) do
819
+ if ____exportKey ~= "default" then
820
+ ____exports[____exportKey] = ____exportValue
821
+ end
822
+ end
823
+ end
824
+ do
825
+ local ____export = require("functions.playerDataStructures")
826
+ for ____exportKey, ____exportValue in pairs(____export) do
827
+ if ____exportKey ~= "default" then
828
+ ____exports[____exportKey] = ____exportValue
829
+ end
830
+ end
831
+ end
832
+ do
833
+ local ____export = require("functions.playerHealth")
834
+ for ____exportKey, ____exportValue in pairs(____export) do
835
+ if ____exportKey ~= "default" then
836
+ ____exports[____exportKey] = ____exportValue
837
+ end
838
+ end
839
+ end
840
+ do
841
+ local ____export = require("functions.playerIndex")
842
+ for ____exportKey, ____exportValue in pairs(____export) do
843
+ if ____exportKey ~= "default" then
844
+ ____exports[____exportKey] = ____exportValue
845
+ end
846
+ end
847
+ end
848
+ do
849
+ local ____export = require("functions.players")
850
+ for ____exportKey, ____exportValue in pairs(____export) do
851
+ if ____exportKey ~= "default" then
852
+ ____exports[____exportKey] = ____exportValue
853
+ end
854
+ end
855
+ end
856
+ do
857
+ local ____export = require("functions.playerStats")
858
+ for ____exportKey, ____exportValue in pairs(____export) do
859
+ if ____exportKey ~= "default" then
860
+ ____exports[____exportKey] = ____exportValue
861
+ end
862
+ end
863
+ end
864
+ do
865
+ local ____export = require("functions.pocketItems")
866
+ for ____exportKey, ____exportValue in pairs(____export) do
867
+ if ____exportKey ~= "default" then
868
+ ____exports[____exportKey] = ____exportValue
869
+ end
870
+ end
871
+ end
872
+ do
873
+ local ____export = require("functions.positionVelocity")
874
+ for ____exportKey, ____exportValue in pairs(____export) do
875
+ if ____exportKey ~= "default" then
876
+ ____exports[____exportKey] = ____exportValue
877
+ end
878
+ end
879
+ end
880
+ do
881
+ local ____export = require("functions.pressurePlate")
882
+ for ____exportKey, ____exportValue in pairs(____export) do
883
+ if ____exportKey ~= "default" then
884
+ ____exports[____exportKey] = ____exportValue
885
+ end
886
+ end
887
+ end
888
+ do
889
+ local ____export = require("functions.projectiles")
890
+ for ____exportKey, ____exportValue in pairs(____export) do
891
+ if ____exportKey ~= "default" then
892
+ ____exports[____exportKey] = ____exportValue
893
+ end
894
+ end
895
+ end
896
+ do
897
+ local ____export = require("functions.random")
898
+ for ____exportKey, ____exportValue in pairs(____export) do
899
+ if ____exportKey ~= "default" then
900
+ ____exports[____exportKey] = ____exportValue
901
+ end
902
+ end
903
+ end
904
+ do
905
+ local ____export = require("functions.reorderedCallbacks")
906
+ for ____exportKey, ____exportValue in pairs(____export) do
907
+ if ____exportKey ~= "default" then
908
+ ____exports[____exportKey] = ____exportValue
909
+ end
910
+ end
911
+ end
912
+ do
913
+ local ____export = require("functions.revive")
914
+ for ____exportKey, ____exportValue in pairs(____export) do
915
+ if ____exportKey ~= "default" then
916
+ ____exports[____exportKey] = ____exportValue
917
+ end
918
+ end
919
+ end
920
+ do
921
+ local ____export = require("functions.rng")
922
+ for ____exportKey, ____exportValue in pairs(____export) do
923
+ if ____exportKey ~= "default" then
924
+ ____exports[____exportKey] = ____exportValue
925
+ end
926
+ end
927
+ end
928
+ do
929
+ local ____export = require("functions.rockAlt")
930
+ for ____exportKey, ____exportValue in pairs(____export) do
931
+ if ____exportKey ~= "default" then
932
+ ____exports[____exportKey] = ____exportValue
933
+ end
934
+ end
935
+ end
936
+ do
937
+ local ____export = require("functions.roomData")
938
+ for ____exportKey, ____exportValue in pairs(____export) do
939
+ if ____exportKey ~= "default" then
940
+ ____exports[____exportKey] = ____exportValue
941
+ end
942
+ end
943
+ end
944
+ do
945
+ local ____export = require("functions.roomGrid")
946
+ for ____exportKey, ____exportValue in pairs(____export) do
947
+ if ____exportKey ~= "default" then
948
+ ____exports[____exportKey] = ____exportValue
949
+ end
950
+ end
951
+ end
952
+ do
953
+ local ____export = require("functions.rooms")
954
+ for ____exportKey, ____exportValue in pairs(____export) do
955
+ if ____exportKey ~= "default" then
956
+ ____exports[____exportKey] = ____exportValue
957
+ end
958
+ end
959
+ end
960
+ do
961
+ local ____export = require("functions.roomShape")
962
+ for ____exportKey, ____exportValue in pairs(____export) do
963
+ if ____exportKey ~= "default" then
964
+ ____exports[____exportKey] = ____exportValue
965
+ end
966
+ end
967
+ end
968
+ do
969
+ local ____export = require("functions.roomTransition")
970
+ for ____exportKey, ____exportValue in pairs(____export) do
971
+ if ____exportKey ~= "default" then
972
+ ____exports[____exportKey] = ____exportValue
973
+ end
974
+ end
975
+ end
976
+ do
977
+ local ____export = require("functions.run")
978
+ for ____exportKey, ____exportValue in pairs(____export) do
979
+ if ____exportKey ~= "default" then
980
+ ____exports[____exportKey] = ____exportValue
981
+ end
982
+ end
983
+ end
984
+ do
985
+ local ____export = require("functions.saveFile")
986
+ for ____exportKey, ____exportValue in pairs(____export) do
987
+ if ____exportKey ~= "default" then
988
+ ____exports[____exportKey] = ____exportValue
989
+ end
990
+ end
991
+ end
992
+ do
993
+ local ____export = require("functions.seeds")
994
+ for ____exportKey, ____exportValue in pairs(____export) do
995
+ if ____exportKey ~= "default" then
996
+ ____exports[____exportKey] = ____exportValue
997
+ end
998
+ end
999
+ end
1000
+ do
1001
+ local ____export = require("functions.serialization")
1002
+ for ____exportKey, ____exportValue in pairs(____export) do
1003
+ if ____exportKey ~= "default" then
1004
+ ____exports[____exportKey] = ____exportValue
1005
+ end
1006
+ end
1007
+ end
1008
+ do
1009
+ local ____export = require("functions.set")
1010
+ for ____exportKey, ____exportValue in pairs(____export) do
1011
+ if ____exportKey ~= "default" then
1012
+ ____exports[____exportKey] = ____exportValue
1013
+ end
1014
+ end
1015
+ end
1016
+ do
1017
+ local ____export = require("functions.sound")
1018
+ for ____exportKey, ____exportValue in pairs(____export) do
1019
+ if ____exportKey ~= "default" then
1020
+ ____exports[____exportKey] = ____exportValue
1021
+ end
1022
+ end
1023
+ end
1024
+ do
1025
+ local ____export = require("functions.spawnCollectible")
1026
+ for ____exportKey, ____exportValue in pairs(____export) do
1027
+ if ____exportKey ~= "default" then
1028
+ ____exports[____exportKey] = ____exportValue
1029
+ end
1030
+ end
1031
+ end
1032
+ do
1033
+ local ____export = require("functions.sprites")
1034
+ for ____exportKey, ____exportValue in pairs(____export) do
1035
+ if ____exportKey ~= "default" then
1036
+ ____exports[____exportKey] = ____exportValue
1037
+ end
1038
+ end
1039
+ end
1040
+ do
1041
+ local ____export = require("functions.stage")
1042
+ for ____exportKey, ____exportValue in pairs(____export) do
1043
+ if ____exportKey ~= "default" then
1044
+ ____exports[____exportKey] = ____exportValue
1045
+ end
1046
+ end
1047
+ end
1048
+ do
1049
+ local ____export = require("functions.string")
1050
+ for ____exportKey, ____exportValue in pairs(____export) do
1051
+ if ____exportKey ~= "default" then
1052
+ ____exports[____exportKey] = ____exportValue
1053
+ end
1054
+ end
1055
+ end
1056
+ do
1057
+ local ____export = require("functions.table")
1058
+ for ____exportKey, ____exportValue in pairs(____export) do
1059
+ if ____exportKey ~= "default" then
1060
+ ____exports[____exportKey] = ____exportValue
1061
+ end
1062
+ end
1063
+ end
1064
+ do
1065
+ local ____export = require("functions.tears")
1066
+ for ____exportKey, ____exportValue in pairs(____export) do
1067
+ if ____exportKey ~= "default" then
1068
+ ____exports[____exportKey] = ____exportValue
1069
+ end
1070
+ end
1071
+ end
1072
+ do
1073
+ local ____export = require("functions.transformations")
1074
+ for ____exportKey, ____exportValue in pairs(____export) do
1075
+ if ____exportKey ~= "default" then
1076
+ ____exports[____exportKey] = ____exportValue
1077
+ end
1078
+ end
1079
+ end
1080
+ do
1081
+ local ____export = require("functions.trinketCacheFlag")
1082
+ for ____exportKey, ____exportValue in pairs(____export) do
1083
+ if ____exportKey ~= "default" then
1084
+ ____exports[____exportKey] = ____exportValue
1085
+ end
1086
+ end
1087
+ end
1088
+ do
1089
+ local ____export = require("functions.trinketGive")
1090
+ for ____exportKey, ____exportValue in pairs(____export) do
1091
+ if ____exportKey ~= "default" then
1092
+ ____exports[____exportKey] = ____exportValue
1093
+ end
1094
+ end
1095
+ end
1096
+ do
1097
+ local ____export = require("functions.trinkets")
1098
+ for ____exportKey, ____exportValue in pairs(____export) do
1099
+ if ____exportKey ~= "default" then
1100
+ ____exports[____exportKey] = ____exportValue
1101
+ end
1102
+ end
1103
+ end
1104
+ do
1105
+ local ____export = require("functions.tstlClass")
1106
+ for ____exportKey, ____exportValue in pairs(____export) do
1107
+ if ____exportKey ~= "default" then
1108
+ ____exports[____exportKey] = ____exportValue
1109
+ end
1110
+ end
1111
+ end
1112
+ do
1113
+ local ____export = require("functions.types")
1114
+ for ____exportKey, ____exportValue in pairs(____export) do
1115
+ if ____exportKey ~= "default" then
1116
+ ____exports[____exportKey] = ____exportValue
1117
+ end
1118
+ end
1119
+ end
1120
+ do
1121
+ local ____export = require("functions.ui")
1122
+ for ____exportKey, ____exportValue in pairs(____export) do
1123
+ if ____exportKey ~= "default" then
1124
+ ____exports[____exportKey] = ____exportValue
1125
+ end
1126
+ end
1127
+ end
1128
+ do
1129
+ local ____export = require("functions.utils")
1130
+ for ____exportKey, ____exportValue in pairs(____export) do
1131
+ if ____exportKey ~= "default" then
1132
+ ____exports[____exportKey] = ____exportValue
1133
+ end
1134
+ end
1135
+ end
1136
+ do
1137
+ local ____export = require("functions.vector")
1138
+ for ____exportKey, ____exportValue in pairs(____export) do
1139
+ if ____exportKey ~= "default" then
1140
+ ____exports[____exportKey] = ____exportValue
1141
+ end
1142
+ end
1143
+ end
1144
+ do
1145
+ local ____export = require("maps.cardMap")
1146
+ for ____exportKey, ____exportValue in pairs(____export) do
1147
+ if ____exportKey ~= "default" then
1148
+ ____exports[____exportKey] = ____exportValue
1149
+ end
1150
+ end
1151
+ end
1152
+ do
1153
+ local ____export = require("maps.characterMap")
1154
+ for ____exportKey, ____exportValue in pairs(____export) do
1155
+ if ____exportKey ~= "default" then
1156
+ ____exports[____exportKey] = ____exportValue
1157
+ end
1158
+ end
1159
+ end
1160
+ do
1161
+ local ____export = require("maps.pillEffectMap")
1162
+ for ____exportKey, ____exportValue in pairs(____export) do
1163
+ if ____exportKey ~= "default" then
1164
+ ____exports[____exportKey] = ____exportValue
1165
+ end
1166
+ end
1167
+ end
1168
+ do
1169
+ local ____export = require("maps.roomTypeMap")
1170
+ for ____exportKey, ____exportValue in pairs(____export) do
1171
+ if ____exportKey ~= "default" then
1172
+ ____exports[____exportKey] = ____exportValue
1173
+ end
1174
+ end
1175
+ end
1176
+ do
1177
+ local ____export = require("objects.colors")
1178
+ for ____exportKey, ____exportValue in pairs(____export) do
1179
+ if ____exportKey ~= "default" then
1180
+ ____exports[____exportKey] = ____exportValue
1181
+ end
1182
+ end
1183
+ end
1184
+ do
1185
+ local ____export = require("types.PickingUpItem")
60
1186
  for ____exportKey, ____exportValue in pairs(____export) do
61
1187
  if ____exportKey ~= "default" then
62
1188
  ____exports[____exportKey] = ____exportValue