isaacscript-common 87.8.2 → 87.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classes/ModFeature.d.ts.map +1 -1
- package/dist/classes/ModFeature.js +2 -0
- package/dist/classes/ModUpgraded.d.ts.map +1 -1
- package/dist/classes/ModUpgraded.js +1 -0
- package/dist/classes/features/other/CustomPickups.d.ts +6 -5
- package/dist/classes/features/other/CustomPickups.d.ts.map +1 -1
- package/dist/classes/features/other/CustomPickups.js +10 -9
- package/dist/classes/features/other/CustomPickups.lua +5 -5
- package/dist/classes/features/other/CustomTrapdoors.d.ts.map +1 -1
- package/dist/classes/features/other/CustomTrapdoors.js +4 -1
- package/dist/classes/features/other/CustomTrapdoors.lua +3 -1
- package/dist/classes/features/other/FastReset.d.ts.map +1 -1
- package/dist/classes/features/other/FastReset.js +5 -1
- package/dist/classes/features/other/FastReset.lua +4 -1
- package/dist/classes/features/other/Pause.d.ts.map +1 -1
- package/dist/classes/features/other/Pause.js +11 -1
- package/dist/classes/features/other/Pause.lua +14 -3
- package/dist/classes/features/other/saveDataManager/restoreDefaults.js +1 -1
- package/dist/classes/features/other/saveDataManager/restoreDefaults.lua +1 -1
- package/dist/core/constants.d.ts +2 -0
- package/dist/core/constants.d.ts.map +1 -1
- package/dist/core/constants.js +2 -0
- package/dist/core/constants.lua +2 -0
- package/dist/enums/ModCallbackCustom.d.ts +10 -8
- package/dist/enums/ModCallbackCustom.d.ts.map +1 -1
- package/dist/enums/ModCallbackCustom.js +10 -8
- package/dist/functions/bosses.d.ts +2 -2
- package/dist/functions/bosses.d.ts.map +1 -1
- package/dist/functions/bosses.js +2 -2
- package/dist/functions/deepCopyTests.js +10 -16
- package/dist/functions/deepCopyTests.lua +8 -16
- package/dist/functions/entities.d.ts +4 -4
- package/dist/functions/entities.d.ts.map +1 -1
- package/dist/functions/entities.js +4 -4
- package/dist/functions/entitiesSpecific.d.ts +20 -20
- package/dist/functions/entitiesSpecific.d.ts.map +1 -1
- package/dist/functions/entitiesSpecific.js +20 -20
- package/dist/functions/pickupsSpecific.d.ts +18 -18
- package/dist/functions/pickupsSpecific.d.ts.map +1 -1
- package/dist/functions/pickupsSpecific.js +18 -18
- package/dist/functions/playerCollectibles.d.ts.map +1 -1
- package/dist/functions/playerCollectibles.js +1 -3
- package/dist/functions/playerCollectibles.lua +1 -1
- package/dist/index.rollup.d.ts +62 -57
- package/dist/isaacscript-common.lua +676 -46
- package/dist/objects/backdropTypeToRockAltType.d.ts +2 -0
- package/dist/objects/backdropTypeToRockAltType.d.ts.map +1 -1
- package/dist/objects/backdropTypeToRockAltType.js +2 -0
- package/dist/objects/backdropTypeToRockAltType.lua +3 -1
- package/dist/objects/roomTypeNames.d.ts +1 -0
- package/dist/objects/roomTypeNames.d.ts.map +1 -1
- package/dist/objects/roomTypeNames.js +1 -0
- package/dist/objects/roomTypeNames.lua +2 -1
- package/dist/objects/roomTypeSpecialGotoPrefixes.d.ts +1 -0
- package/dist/objects/roomTypeSpecialGotoPrefixes.d.ts.map +1 -1
- package/dist/objects/roomTypeSpecialGotoPrefixes.js +1 -0
- package/dist/objects/roomTypeSpecialGotoPrefixes.lua +2 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +6 -6
- package/src/classes/ModFeature.ts +2 -0
- package/src/classes/ModUpgraded.ts +1 -0
- package/src/classes/features/other/CustomPickups.ts +25 -12
- package/src/classes/features/other/CustomTrapdoors.ts +5 -2
- package/src/classes/features/other/FastReset.ts +5 -1
- package/src/classes/features/other/Pause.ts +15 -2
- package/src/classes/features/other/saveDataManager/restoreDefaults.ts +1 -1
- package/src/core/constants.ts +2 -0
- package/src/enums/ModCallbackCustom.ts +10 -8
- package/src/functions/bosses.ts +3 -3
- package/src/functions/deepCopyTests.ts +10 -16
- package/src/functions/entities.ts +6 -6
- package/src/functions/entitiesSpecific.ts +30 -30
- package/src/functions/pickupsSpecific.ts +27 -27
- package/src/functions/playerCollectibles.ts +1 -3
- package/src/objects/backdropTypeToRockAltType.ts +2 -0
- package/src/objects/roomTypeNames.ts +1 -0
- package/src/objects/roomTypeSpecialGotoPrefixes.ts +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 87.8.
|
|
3
|
+
isaacscript-common 87.8.3
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -3957,6 +3957,14 @@ do
|
|
|
3957
3957
|
end
|
|
3958
3958
|
end
|
|
3959
3959
|
end
|
|
3960
|
+
do
|
|
3961
|
+
local ____export = require("lua_modules.isaac-typescript-definitions.dist.enums.DrawStringAlignment")
|
|
3962
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
3963
|
+
if ____exportKey ~= "default" then
|
|
3964
|
+
____exports[____exportKey] = ____exportValue
|
|
3965
|
+
end
|
|
3966
|
+
end
|
|
3967
|
+
end
|
|
3960
3968
|
do
|
|
3961
3969
|
local ____export = require("lua_modules.isaac-typescript-definitions.dist.enums.EntityCollisionClass")
|
|
3962
3970
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -4213,6 +4221,14 @@ do
|
|
|
4213
4221
|
end
|
|
4214
4222
|
end
|
|
4215
4223
|
end
|
|
4224
|
+
do
|
|
4225
|
+
local ____export = require("lua_modules.isaac-typescript-definitions.dist.enums.JacobEsauControls")
|
|
4226
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
4227
|
+
if ____exportKey ~= "default" then
|
|
4228
|
+
____exports[____exportKey] = ____exportValue
|
|
4229
|
+
end
|
|
4230
|
+
end
|
|
4231
|
+
end
|
|
4216
4232
|
do
|
|
4217
4233
|
local ____export = require("lua_modules.isaac-typescript-definitions.dist.enums.Keyboard")
|
|
4218
4234
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -6121,6 +6137,520 @@ ____exports.SoundEffect.G_FUEL_BULLET_RICOCHET = 831
|
|
|
6121
6137
|
____exports.SoundEffect[____exports.SoundEffect.G_FUEL_BULLET_RICOCHET] = "G_FUEL_BULLET_RICOCHET"
|
|
6122
6138
|
____exports.SoundEffect.G_FUEL_ROCKET_LAUNCHER = 832
|
|
6123
6139
|
____exports.SoundEffect[____exports.SoundEffect.G_FUEL_ROCKET_LAUNCHER] = "G_FUEL_ROCKET_LAUNCHER"
|
|
6140
|
+
____exports.SoundEffect.DEATHMATCH_INTRO = 833
|
|
6141
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATHMATCH_INTRO] = "DEATHMATCH_INTRO"
|
|
6142
|
+
____exports.SoundEffect.ABYSS = 834
|
|
6143
|
+
____exports.SoundEffect[____exports.SoundEffect.ABYSS] = "ABYSS"
|
|
6144
|
+
____exports.SoundEffect.BIG_CHUBBY_ATTACK = 835
|
|
6145
|
+
____exports.SoundEffect[____exports.SoundEffect.BIG_CHUBBY_ATTACK] = "BIG_CHUBBY_ATTACK"
|
|
6146
|
+
____exports.SoundEffect.BOOMERANG_THROW = 836
|
|
6147
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOMERANG_THROW] = "BOOMERANG_THROW"
|
|
6148
|
+
____exports.SoundEffect.BOOMERANG_LOOP = 837
|
|
6149
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOMERANG_LOOP] = "BOOMERANG_LOOP"
|
|
6150
|
+
____exports.SoundEffect.BOOMERANG_CATCH = 838
|
|
6151
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOMERANG_CATCH] = "BOOMERANG_CATCH"
|
|
6152
|
+
____exports.SoundEffect.BOOMERANG_HIT = 839
|
|
6153
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOMERANG_HIT] = "BOOMERANG_HIT"
|
|
6154
|
+
____exports.SoundEffect.BOX_OF_FRIENDS = 840
|
|
6155
|
+
____exports.SoundEffect[____exports.SoundEffect.BOX_OF_FRIENDS] = "BOX_OF_FRIENDS"
|
|
6156
|
+
____exports.SoundEffect.BROWN_NUGGET = 841
|
|
6157
|
+
____exports.SoundEffect[____exports.SoundEffect.BROWN_NUGGET] = "BROWN_NUGGET"
|
|
6158
|
+
____exports.SoundEffect.BUMBO_1 = 842
|
|
6159
|
+
____exports.SoundEffect[____exports.SoundEffect.BUMBO_1] = "BUMBO_1"
|
|
6160
|
+
____exports.SoundEffect.BUMBO_2 = 843
|
|
6161
|
+
____exports.SoundEffect[____exports.SoundEffect.BUMBO_2] = "BUMBO_2"
|
|
6162
|
+
____exports.SoundEffect.BUMBO_3 = 844
|
|
6163
|
+
____exports.SoundEffect[____exports.SoundEffect.BUMBO_3] = "BUMBO_3"
|
|
6164
|
+
____exports.SoundEffect.BUMBO_4 = 845
|
|
6165
|
+
____exports.SoundEffect[____exports.SoundEffect.BUMBO_4] = "BUMBO_4"
|
|
6166
|
+
____exports.SoundEffect.PORTAL_ENTITY_LOOP = 846
|
|
6167
|
+
____exports.SoundEffect[____exports.SoundEffect.PORTAL_ENTITY_LOOP] = "PORTAL_ENTITY_LOOP"
|
|
6168
|
+
____exports.SoundEffect.PORTAL_ENTITY_ENTER = 847
|
|
6169
|
+
____exports.SoundEffect[____exports.SoundEffect.PORTAL_ENTITY_ENTER] = "PORTAL_ENTITY_ENTER"
|
|
6170
|
+
____exports.SoundEffect.CONVERTER = 848
|
|
6171
|
+
____exports.SoundEffect[____exports.SoundEffect.CONVERTER] = "CONVERTER"
|
|
6172
|
+
____exports.SoundEffect.LITTLE_CHUBBY_ATTACK = 849
|
|
6173
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_CHUBBY_ATTACK] = "LITTLE_CHUBBY_ATTACK"
|
|
6174
|
+
____exports.SoundEffect.CRACKED_ORB = 850
|
|
6175
|
+
____exports.SoundEffect[____exports.SoundEffect.CRACKED_ORB] = "CRACKED_ORB"
|
|
6176
|
+
____exports.SoundEffect.CROOKED_PENNY = 851
|
|
6177
|
+
____exports.SoundEffect[____exports.SoundEffect.CROOKED_PENNY] = "CROOKED_PENNY"
|
|
6178
|
+
____exports.SoundEffect.CUBE_BABY_KICK = 852
|
|
6179
|
+
____exports.SoundEffect[____exports.SoundEffect.CUBE_BABY_KICK] = "CUBE_BABY_KICK"
|
|
6180
|
+
____exports.SoundEffect.DARK_BUM_PAYOUT = 853
|
|
6181
|
+
____exports.SoundEffect[____exports.SoundEffect.DARK_BUM_PAYOUT] = "DARK_BUM_PAYOUT"
|
|
6182
|
+
____exports.SoundEffect.DATAMINER = 854
|
|
6183
|
+
____exports.SoundEffect[____exports.SoundEffect.DATAMINER] = "DATAMINER"
|
|
6184
|
+
____exports.SoundEffect.DR_REMOTE_WARNING = 855
|
|
6185
|
+
____exports.SoundEffect[____exports.SoundEffect.DR_REMOTE_WARNING] = "DR_REMOTE_WARNING"
|
|
6186
|
+
____exports.SoundEffect.FLIP_POOF = 856
|
|
6187
|
+
____exports.SoundEffect[____exports.SoundEffect.FLIP_POOF] = "FLIP_POOF"
|
|
6188
|
+
____exports.SoundEffect.ERASER_HIT = 857
|
|
6189
|
+
____exports.SoundEffect[____exports.SoundEffect.ERASER_HIT] = "ERASER_HIT"
|
|
6190
|
+
____exports.SoundEffect.GNAWED_LEAF = 858
|
|
6191
|
+
____exports.SoundEffect[____exports.SoundEffect.GNAWED_LEAF] = "GNAWED_LEAF"
|
|
6192
|
+
____exports.SoundEffect.LIL_HAUNT_CHASE = 859
|
|
6193
|
+
____exports.SoundEffect[____exports.SoundEffect.LIL_HAUNT_CHASE] = "LIL_HAUNT_CHASE"
|
|
6194
|
+
____exports.SoundEffect.LINGER_BEAN = 860
|
|
6195
|
+
____exports.SoundEffect[____exports.SoundEffect.LINGER_BEAN] = "LINGER_BEAN"
|
|
6196
|
+
____exports.SoundEffect.GLOWING_HOURGLASS_ACTIVATE = 861
|
|
6197
|
+
____exports.SoundEffect[____exports.SoundEffect.GLOWING_HOURGLASS_ACTIVATE] = "GLOWING_HOURGLASS_ACTIVATE"
|
|
6198
|
+
____exports.SoundEffect.GLOWING_HOURGLASS_FIZZLE = 862
|
|
6199
|
+
____exports.SoundEffect[____exports.SoundEffect.GLOWING_HOURGLASS_FIZZLE] = "GLOWING_HOURGLASS_FIZZLE"
|
|
6200
|
+
____exports.SoundEffect.INFAMY_DEFLECT = 863
|
|
6201
|
+
____exports.SoundEffect[____exports.SoundEffect.INFAMY_DEFLECT] = "INFAMY_DEFLECT"
|
|
6202
|
+
____exports.SoundEffect.IBS_GURGLE = 864
|
|
6203
|
+
____exports.SoundEffect[____exports.SoundEffect.IBS_GURGLE] = "IBS_GURGLE"
|
|
6204
|
+
____exports.SoundEffect.POOP_THROW = 865
|
|
6205
|
+
____exports.SoundEffect[____exports.SoundEffect.POOP_THROW] = "POOP_THROW"
|
|
6206
|
+
____exports.SoundEffect.GLITTER_BOOM = 866
|
|
6207
|
+
____exports.SoundEffect[____exports.SoundEffect.GLITTER_BOOM] = "GLITTER_BOOM"
|
|
6208
|
+
____exports.SoundEffect.GLITTER_FUSE = 867
|
|
6209
|
+
____exports.SoundEffect[____exports.SoundEffect.GLITTER_FUSE] = "GLITTER_FUSE"
|
|
6210
|
+
____exports.SoundEffect.LITTLE_HORN_SHOOT = 868
|
|
6211
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_SHOOT] = "LITTLE_HORN_SHOOT"
|
|
6212
|
+
____exports.SoundEffect.MEGA_BEAN_BLAST = 869
|
|
6213
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_BEAN_BLAST] = "MEGA_BEAN_BLAST"
|
|
6214
|
+
____exports.SoundEffect.MOM_BOTTLE = 870
|
|
6215
|
+
____exports.SoundEffect[____exports.SoundEffect.MOM_BOTTLE] = "MOM_BOTTLE"
|
|
6216
|
+
____exports.SoundEffect.SUMMON_PENTAGRAM = 871
|
|
6217
|
+
____exports.SoundEffect[____exports.SoundEffect.SUMMON_PENTAGRAM] = "SUMMON_PENTAGRAM"
|
|
6218
|
+
____exports.SoundEffect.SUMMON_WAVE = 872
|
|
6219
|
+
____exports.SoundEffect[____exports.SoundEffect.SUMMON_WAVE] = "SUMMON_WAVE"
|
|
6220
|
+
____exports.SoundEffect.BIGHORN_APPEAR = 873
|
|
6221
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_APPEAR] = "BIGHORN_APPEAR"
|
|
6222
|
+
____exports.SoundEffect.BIGHORN_CLOSE_BIG = 874
|
|
6223
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_CLOSE_BIG] = "BIGHORN_CLOSE_BIG"
|
|
6224
|
+
____exports.SoundEffect.BIGHORN_CRACK_BIG = 875
|
|
6225
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_CRACK_BIG] = "BIGHORN_CRACK_BIG"
|
|
6226
|
+
____exports.SoundEffect.BIGHORN_OPEN_BIG = 876
|
|
6227
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_OPEN_BIG] = "BIGHORN_OPEN_BIG"
|
|
6228
|
+
____exports.SoundEffect.BIGHORN_SHAKE_BIG = 877
|
|
6229
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_SHAKE_BIG] = "BIGHORN_SHAKE_BIG"
|
|
6230
|
+
____exports.SoundEffect.BIGHORN_DEATH = 878
|
|
6231
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_DEATH] = "BIGHORN_DEATH"
|
|
6232
|
+
____exports.SoundEffect.BIGHORN_DIZZY_SHAKE = 879
|
|
6233
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_DIZZY_SHAKE] = "BIGHORN_DIZZY_SHAKE"
|
|
6234
|
+
____exports.SoundEffect.BIGHORN_HAND_APPEAR = 880
|
|
6235
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_HAND_APPEAR] = "BIGHORN_HAND_APPEAR"
|
|
6236
|
+
____exports.SoundEffect.BIGHORN_HAND_HIDE = 881
|
|
6237
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_HAND_HIDE] = "BIGHORN_HAND_HIDE"
|
|
6238
|
+
____exports.SoundEffect.BIGHORN_HIDE = 882
|
|
6239
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_HIDE] = "BIGHORN_HIDE"
|
|
6240
|
+
____exports.SoundEffect.BIGHORN_HURT = 883
|
|
6241
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_HURT] = "BIGHORN_HURT"
|
|
6242
|
+
____exports.SoundEffect.BIGHORN_PRE_SPIT = 884
|
|
6243
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_PRE_SPIT] = "BIGHORN_PRE_SPIT"
|
|
6244
|
+
____exports.SoundEffect.BIGHORN_CLOSE_SMALL = 885
|
|
6245
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_CLOSE_SMALL] = "BIGHORN_CLOSE_SMALL"
|
|
6246
|
+
____exports.SoundEffect.BIGHORN_CRACK_SMALL = 886
|
|
6247
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_CRACK_SMALL] = "BIGHORN_CRACK_SMALL"
|
|
6248
|
+
____exports.SoundEffect.BIGHORN_OPEN_SMALL = 887
|
|
6249
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_OPEN_SMALL] = "BIGHORN_OPEN_SMALL"
|
|
6250
|
+
____exports.SoundEffect.BIGHORN_SHAKE_SMALL = 888
|
|
6251
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_SHAKE_SMALL] = "BIGHORN_SHAKE_SMALL"
|
|
6252
|
+
____exports.SoundEffect.BIGHORN_SPIT = 889
|
|
6253
|
+
____exports.SoundEffect[____exports.SoundEffect.BIGHORN_SPIT] = "BIGHORN_SPIT"
|
|
6254
|
+
____exports.SoundEffect.MOMS_BOX = 890
|
|
6255
|
+
____exports.SoundEffect[____exports.SoundEffect.MOMS_BOX] = "MOMS_BOX"
|
|
6256
|
+
____exports.SoundEffect.MONSTRO_LUNG_BARF = 891
|
|
6257
|
+
____exports.SoundEffect[____exports.SoundEffect.MONSTRO_LUNG_BARF] = "MONSTRO_LUNG_BARF"
|
|
6258
|
+
____exports.SoundEffect.MOVING_BOX_PACK = 892
|
|
6259
|
+
____exports.SoundEffect[____exports.SoundEffect.MOVING_BOX_PACK] = "MOVING_BOX_PACK"
|
|
6260
|
+
____exports.SoundEffect.MOVING_BOX_UNPACK = 893
|
|
6261
|
+
____exports.SoundEffect[____exports.SoundEffect.MOVING_BOX_UNPACK] = "MOVING_BOX_UNPACK"
|
|
6262
|
+
____exports.SoundEffect.PANDORAS_BOX = 894
|
|
6263
|
+
____exports.SoundEffect[____exports.SoundEffect.PANDORAS_BOX] = "PANDORAS_BOX"
|
|
6264
|
+
____exports.SoundEffect.PAUSE_FREEZE = 895
|
|
6265
|
+
____exports.SoundEffect[____exports.SoundEffect.PAUSE_FREEZE] = "PAUSE_FREEZE"
|
|
6266
|
+
____exports.SoundEffect.MONSTRO_LUNG_CHARGE = 896
|
|
6267
|
+
____exports.SoundEffect[____exports.SoundEffect.MONSTRO_LUNG_CHARGE] = "MONSTRO_LUNG_CHARGE"
|
|
6268
|
+
____exports.SoundEffect.PLAN_C = 897
|
|
6269
|
+
____exports.SoundEffect[____exports.SoundEffect.PLAN_C] = "PLAN_C"
|
|
6270
|
+
____exports.SoundEffect.PORTABLE_SLOT_USE = 898
|
|
6271
|
+
____exports.SoundEffect[____exports.SoundEffect.PORTABLE_SLOT_USE] = "PORTABLE_SLOT_USE"
|
|
6272
|
+
____exports.SoundEffect.PORTABLE_SLOT_WIN = 899
|
|
6273
|
+
____exports.SoundEffect[____exports.SoundEffect.PORTABLE_SLOT_WIN] = "PORTABLE_SLOT_WIN"
|
|
6274
|
+
____exports.SoundEffect.SAFETY_SCISSORS = 900
|
|
6275
|
+
____exports.SoundEffect[____exports.SoundEffect.SAFETY_SCISSORS] = "SAFETY_SCISSORS"
|
|
6276
|
+
____exports.SoundEffect.BUTTER_DROP = 901
|
|
6277
|
+
____exports.SoundEffect[____exports.SoundEffect.BUTTER_DROP] = "BUTTER_DROP"
|
|
6278
|
+
____exports.SoundEffect.BUTTER_LAND = 902
|
|
6279
|
+
____exports.SoundEffect[____exports.SoundEffect.BUTTER_LAND] = "BUTTER_LAND"
|
|
6280
|
+
____exports.SoundEffect.PRIDE_ZAP = 903
|
|
6281
|
+
____exports.SoundEffect[____exports.SoundEffect.PRIDE_ZAP] = "PRIDE_ZAP"
|
|
6282
|
+
____exports.SoundEffect.R_KEY = 904
|
|
6283
|
+
____exports.SoundEffect[____exports.SoundEffect.R_KEY] = "R_KEY"
|
|
6284
|
+
____exports.SoundEffect.TEAR_BOUNCE = 905
|
|
6285
|
+
____exports.SoundEffect[____exports.SoundEffect.TEAR_BOUNCE] = "TEAR_BOUNCE"
|
|
6286
|
+
____exports.SoundEffect.SHARP_PLUG = 906
|
|
6287
|
+
____exports.SoundEffect[____exports.SoundEffect.SHARP_PLUG] = "SHARP_PLUG"
|
|
6288
|
+
____exports.SoundEffect.RIB_DEFLECT = 907
|
|
6289
|
+
____exports.SoundEffect[____exports.SoundEffect.RIB_DEFLECT] = "RIB_DEFLECT"
|
|
6290
|
+
____exports.SoundEffect.SMELTER = 908
|
|
6291
|
+
____exports.SoundEffect[____exports.SoundEffect.SMELTER] = "SMELTER"
|
|
6292
|
+
____exports.SoundEffect.TELEKINESIS = 909
|
|
6293
|
+
____exports.SoundEffect[____exports.SoundEffect.TELEKINESIS] = "TELEKINESIS"
|
|
6294
|
+
____exports.SoundEffect.D6_ROLL = 910
|
|
6295
|
+
____exports.SoundEffect[____exports.SoundEffect.D6_ROLL] = "D6_ROLL"
|
|
6296
|
+
____exports.SoundEffect.TICK_BURN = 911
|
|
6297
|
+
____exports.SoundEffect[____exports.SoundEffect.TICK_BURN] = "TICK_BURN"
|
|
6298
|
+
____exports.SoundEffect.TELEPORT_UNDEFINED = 912
|
|
6299
|
+
____exports.SoundEffect[____exports.SoundEffect.TELEPORT_UNDEFINED] = "TELEPORT_UNDEFINED"
|
|
6300
|
+
____exports.SoundEffect.VOID_CONSUME = 913
|
|
6301
|
+
____exports.SoundEffect[____exports.SoundEffect.VOID_CONSUME] = "VOID_CONSUME"
|
|
6302
|
+
____exports.SoundEffect.YO_LISTEN = 914
|
|
6303
|
+
____exports.SoundEffect[____exports.SoundEffect.YO_LISTEN] = "YO_LISTEN"
|
|
6304
|
+
____exports.SoundEffect.SPIN_TO_WIN = 915
|
|
6305
|
+
____exports.SoundEffect[____exports.SoundEffect.SPIN_TO_WIN] = "SPIN_TO_WIN"
|
|
6306
|
+
____exports.SoundEffect.SHOVEL_DIG_2 = 916
|
|
6307
|
+
____exports.SoundEffect[____exports.SoundEffect.SHOVEL_DIG_2] = "SHOVEL_DIG_2"
|
|
6308
|
+
____exports.SoundEffect.SHOVEL_HOLE_OPEN = 917
|
|
6309
|
+
____exports.SoundEffect[____exports.SoundEffect.SHOVEL_HOLE_OPEN] = "SHOVEL_HOLE_OPEN"
|
|
6310
|
+
____exports.SoundEffect.CAGE_DEATH = 918
|
|
6311
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_DEATH] = "CAGE_DEATH"
|
|
6312
|
+
____exports.SoundEffect.CAGE_JUMP = 919
|
|
6313
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_JUMP] = "CAGE_JUMP"
|
|
6314
|
+
____exports.SoundEffect.CAGE_RIBS = 920
|
|
6315
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_RIBS] = "CAGE_RIBS"
|
|
6316
|
+
____exports.SoundEffect.CAGE_ROLL_START = 921
|
|
6317
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_ROLL_START] = "CAGE_ROLL_START"
|
|
6318
|
+
____exports.SoundEffect.CAGE_PREP_SHOOT = 922
|
|
6319
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_PREP_SHOOT] = "CAGE_PREP_SHOOT"
|
|
6320
|
+
____exports.SoundEffect.CAGE_ROLL_STOP = 923
|
|
6321
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_ROLL_STOP] = "CAGE_ROLL_STOP"
|
|
6322
|
+
____exports.SoundEffect.CAGE_ROLL_BOUNCE = 924
|
|
6323
|
+
____exports.SoundEffect[____exports.SoundEffect.CAGE_ROLL_BOUNCE] = "CAGE_ROLL_BOUNCE"
|
|
6324
|
+
____exports.SoundEffect.DEATH_HOURGLASS = 925
|
|
6325
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_HOURGLASS] = "DEATH_HOURGLASS"
|
|
6326
|
+
____exports.SoundEffect.DEATH_SICKLE = 926
|
|
6327
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_SICKLE] = "DEATH_SICKLE"
|
|
6328
|
+
____exports.SoundEffect.DEATH_LEAN = 927
|
|
6329
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_LEAN] = "DEATH_LEAN"
|
|
6330
|
+
____exports.SoundEffect.DEATH_VOX = 928
|
|
6331
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_VOX] = "DEATH_VOX"
|
|
6332
|
+
____exports.SoundEffect.DEATH_SPAWN_PREP = 929
|
|
6333
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_SPAWN_PREP] = "DEATH_SPAWN_PREP"
|
|
6334
|
+
____exports.SoundEffect.DEATH_HORSE_ATTACK = 930
|
|
6335
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_HORSE_ATTACK] = "DEATH_HORSE_ATTACK"
|
|
6336
|
+
____exports.SoundEffect.DEATH_HORSE_WOOSH = 931
|
|
6337
|
+
____exports.SoundEffect[____exports.SoundEffect.DEATH_HORSE_WOOSH] = "DEATH_HORSE_WOOSH"
|
|
6338
|
+
____exports.SoundEffect.PIN_DIVE = 932
|
|
6339
|
+
____exports.SoundEffect[____exports.SoundEffect.PIN_DIVE] = "PIN_DIVE"
|
|
6340
|
+
____exports.SoundEffect.PIN_POPUP = 933
|
|
6341
|
+
____exports.SoundEffect[____exports.SoundEffect.PIN_POPUP] = "PIN_POPUP"
|
|
6342
|
+
____exports.SoundEffect.PIN_PUDDLE = 934
|
|
6343
|
+
____exports.SoundEffect[____exports.SoundEffect.PIN_PUDDLE] = "PIN_PUDDLE"
|
|
6344
|
+
____exports.SoundEffect.PIN_SPIT = 935
|
|
6345
|
+
____exports.SoundEffect[____exports.SoundEffect.PIN_SPIT] = "PIN_SPIT"
|
|
6346
|
+
____exports.SoundEffect.GISH_JUMP = 936
|
|
6347
|
+
____exports.SoundEffect[____exports.SoundEffect.GISH_JUMP] = "GISH_JUMP"
|
|
6348
|
+
____exports.SoundEffect.GISH_JUMP_HIGH = 937
|
|
6349
|
+
____exports.SoundEffect[____exports.SoundEffect.GISH_JUMP_HIGH] = "GISH_JUMP_HIGH"
|
|
6350
|
+
____exports.SoundEffect.GISH_SPIT = 938
|
|
6351
|
+
____exports.SoundEffect[____exports.SoundEffect.GISH_SPIT] = "GISH_SPIT"
|
|
6352
|
+
____exports.SoundEffect.GURDY_FACE_ATTACK_APPEAR = 939
|
|
6353
|
+
____exports.SoundEffect[____exports.SoundEffect.GURDY_FACE_ATTACK_APPEAR] = "GURDY_FACE_ATTACK_APPEAR"
|
|
6354
|
+
____exports.SoundEffect.GURDY_FACE_ATTACK_HIDE = 940
|
|
6355
|
+
____exports.SoundEffect[____exports.SoundEffect.GURDY_FACE_ATTACK_HIDE] = "GURDY_FACE_ATTACK_HIDE"
|
|
6356
|
+
____exports.SoundEffect.GURDY_FACE_SMILE_APPEAR = 941
|
|
6357
|
+
____exports.SoundEffect[____exports.SoundEffect.GURDY_FACE_SMILE_APPEAR] = "GURDY_FACE_SMILE_APPEAR"
|
|
6358
|
+
____exports.SoundEffect.GURDY_FACE_SMILE_HIDE = 942
|
|
6359
|
+
____exports.SoundEffect[____exports.SoundEffect.GURDY_FACE_SMILE_HIDE] = "GURDY_FACE_SMILE_HIDE"
|
|
6360
|
+
____exports.SoundEffect.GURGLING_ATTACK = 943
|
|
6361
|
+
____exports.SoundEffect[____exports.SoundEffect.GURGLING_ATTACK] = "GURGLING_ATTACK"
|
|
6362
|
+
____exports.SoundEffect.LITTLE_HORN_DEATH = 944
|
|
6363
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_DEATH] = "LITTLE_HORN_DEATH"
|
|
6364
|
+
____exports.SoundEffect.LITTLE_HORN_BOMB_DROP = 945
|
|
6365
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_BOMB_DROP] = "LITTLE_HORN_BOMB_DROP"
|
|
6366
|
+
____exports.SoundEffect.LITTLE_HORN_DIVE = 946
|
|
6367
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_DIVE] = "LITTLE_HORN_DIVE"
|
|
6368
|
+
____exports.SoundEffect.LITTLE_HORN_HOLE_OPEN = 947
|
|
6369
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_HOLE_OPEN] = "LITTLE_HORN_HOLE_OPEN"
|
|
6370
|
+
____exports.SoundEffect.LITTLE_HORN_HOLE_EXIT = 948
|
|
6371
|
+
____exports.SoundEffect[____exports.SoundEffect.LITTLE_HORN_HOLE_EXIT] = "LITTLE_HORN_HOLE_EXIT"
|
|
6372
|
+
____exports.SoundEffect.LOKI_GIGGLE = 949
|
|
6373
|
+
____exports.SoundEffect[____exports.SoundEffect.LOKI_GIGGLE] = "LOKI_GIGGLE"
|
|
6374
|
+
____exports.SoundEffect.LOKI_JUMP_OUT = 950
|
|
6375
|
+
____exports.SoundEffect[____exports.SoundEffect.LOKI_JUMP_OUT] = "LOKI_JUMP_OUT"
|
|
6376
|
+
____exports.SoundEffect.LOKI_JUMP_IN = 951
|
|
6377
|
+
____exports.SoundEffect[____exports.SoundEffect.LOKI_JUMP_IN] = "LOKI_JUMP_IN"
|
|
6378
|
+
____exports.SoundEffect.LOKI_SHOOT = 952
|
|
6379
|
+
____exports.SoundEffect[____exports.SoundEffect.LOKI_SHOOT] = "LOKI_SHOOT"
|
|
6380
|
+
____exports.SoundEffect.LOKI_SHOOT_8 = 953
|
|
6381
|
+
____exports.SoundEffect[____exports.SoundEffect.LOKI_SHOOT_8] = "LOKI_SHOOT_8"
|
|
6382
|
+
____exports.SoundEffect.MASK_INFAMY_MAD = 954
|
|
6383
|
+
____exports.SoundEffect[____exports.SoundEffect.MASK_INFAMY_MAD] = "MASK_INFAMY_MAD"
|
|
6384
|
+
____exports.SoundEffect.MASK_INFAMY_DASH = 955
|
|
6385
|
+
____exports.SoundEffect[____exports.SoundEffect.MASK_INFAMY_DASH] = "MASK_INFAMY_DASH"
|
|
6386
|
+
____exports.SoundEffect.MEGA_FATTY_GULP = 956
|
|
6387
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_FATTY_GULP] = "MEGA_FATTY_GULP"
|
|
6388
|
+
____exports.SoundEffect.MEGA_FATTY_SUCKING = 957
|
|
6389
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_FATTY_SUCKING] = "MEGA_FATTY_SUCKING"
|
|
6390
|
+
____exports.SoundEffect.MEGA_FATTY_VOMIT = 958
|
|
6391
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_FATTY_VOMIT] = "MEGA_FATTY_VOMIT"
|
|
6392
|
+
____exports.SoundEffect.STAIN_ATTACK_VOX = 959
|
|
6393
|
+
____exports.SoundEffect[____exports.SoundEffect.STAIN_ATTACK_VOX] = "STAIN_ATTACK_VOX"
|
|
6394
|
+
____exports.SoundEffect.SISTERS_VIS_SCARE = 960
|
|
6395
|
+
____exports.SoundEffect[____exports.SoundEffect.SISTERS_VIS_SCARE] = "SISTERS_VIS_SCARE"
|
|
6396
|
+
____exports.SoundEffect.STEVEN_DEATH_BIG = 961
|
|
6397
|
+
____exports.SoundEffect[____exports.SoundEffect.STEVEN_DEATH_BIG] = "STEVEN_DEATH_BIG"
|
|
6398
|
+
____exports.SoundEffect.STEVEN_DEATH_SMALL = 963
|
|
6399
|
+
____exports.SoundEffect[____exports.SoundEffect.STEVEN_DEATH_SMALL] = "STEVEN_DEATH_SMALL"
|
|
6400
|
+
____exports.SoundEffect.FALLEN_FLAP_CHASE = 964
|
|
6401
|
+
____exports.SoundEffect[____exports.SoundEffect.FALLEN_FLAP_CHASE] = "FALLEN_FLAP_CHASE"
|
|
6402
|
+
____exports.SoundEffect.FALLEN_GROWL = 965
|
|
6403
|
+
____exports.SoundEffect[____exports.SoundEffect.FALLEN_GROWL] = "FALLEN_GROWL"
|
|
6404
|
+
____exports.SoundEffect.FALLEN_FLAP = 966
|
|
6405
|
+
____exports.SoundEffect[____exports.SoundEffect.FALLEN_FLAP] = "FALLEN_FLAP"
|
|
6406
|
+
____exports.SoundEffect.FALLEN_OPEN_WINGS = 967
|
|
6407
|
+
____exports.SoundEffect[____exports.SoundEffect.FALLEN_OPEN_WINGS] = "FALLEN_OPEN_WINGS"
|
|
6408
|
+
____exports.SoundEffect.TERATOMA_BOUNCE_BIG = 968
|
|
6409
|
+
____exports.SoundEffect[____exports.SoundEffect.TERATOMA_BOUNCE_BIG] = "TERATOMA_BOUNCE_BIG"
|
|
6410
|
+
____exports.SoundEffect.TERATOMA_BOUNCE_MEDIUM = 969
|
|
6411
|
+
____exports.SoundEffect[____exports.SoundEffect.TERATOMA_BOUNCE_MEDIUM] = "TERATOMA_BOUNCE_MEDIUM"
|
|
6412
|
+
____exports.SoundEffect.TERATOMA_BOUNCE_SMALL = 970
|
|
6413
|
+
____exports.SoundEffect[____exports.SoundEffect.TERATOMA_BOUNCE_SMALL] = "TERATOMA_BOUNCE_SMALL"
|
|
6414
|
+
____exports.SoundEffect.FORSAKEN_LASER = 971
|
|
6415
|
+
____exports.SoundEffect[____exports.SoundEffect.FORSAKEN_LASER] = "FORSAKEN_LASER"
|
|
6416
|
+
____exports.SoundEffect.FORSAKEN_ARMS_UP = 972
|
|
6417
|
+
____exports.SoundEffect[____exports.SoundEffect.FORSAKEN_ARMS_UP] = "FORSAKEN_ARMS_UP"
|
|
6418
|
+
____exports.SoundEffect.FORSAKEN_FADE = 973
|
|
6419
|
+
____exports.SoundEffect[____exports.SoundEffect.FORSAKEN_FADE] = "FORSAKEN_FADE"
|
|
6420
|
+
____exports.SoundEffect.FISTULA_BOUNCE_LARGE = 974
|
|
6421
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_BOUNCE_LARGE] = "FISTULA_BOUNCE_LARGE"
|
|
6422
|
+
____exports.SoundEffect.FISTULA_BOUNCE_MEDIUM = 975
|
|
6423
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_BOUNCE_MEDIUM] = "FISTULA_BOUNCE_MEDIUM"
|
|
6424
|
+
____exports.SoundEffect.FISTULA_BOUNCE_SMALL = 976
|
|
6425
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_BOUNCE_SMALL] = "FISTULA_BOUNCE_SMALL"
|
|
6426
|
+
____exports.SoundEffect.FISTULA_BURST_LARGE = 977
|
|
6427
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_BURST_LARGE] = "FISTULA_BURST_LARGE"
|
|
6428
|
+
____exports.SoundEffect.FISTULA_GROWL_LARGE = 978
|
|
6429
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_GROWL_LARGE] = "FISTULA_GROWL_LARGE"
|
|
6430
|
+
____exports.SoundEffect.FISTULA_GROWL_MEDIUM = 979
|
|
6431
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_GROWL_MEDIUM] = "FISTULA_GROWL_MEDIUM"
|
|
6432
|
+
____exports.SoundEffect.FISTULA_GROWL_SMALL = 980
|
|
6433
|
+
____exports.SoundEffect[____exports.SoundEffect.FISTULA_GROWL_SMALL] = "FISTULA_GROWL_SMALL"
|
|
6434
|
+
____exports.SoundEffect.RAG_MEGA_BALL_ATTACK = 981
|
|
6435
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_BALL_ATTACK] = "RAG_MEGA_BALL_ATTACK"
|
|
6436
|
+
____exports.SoundEffect.RAG_MEGA_BEAM = 982
|
|
6437
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_BEAM] = "RAG_MEGA_BEAM"
|
|
6438
|
+
____exports.SoundEffect.RAG_MEGA_INHALE = 983
|
|
6439
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_INHALE] = "RAG_MEGA_INHALE"
|
|
6440
|
+
____exports.SoundEffect.RAG_MEGA_EXHALE = 984
|
|
6441
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_EXHALE] = "RAG_MEGA_EXHALE"
|
|
6442
|
+
____exports.SoundEffect.RAG_MEGA_INVINCIBLE_ON = 985
|
|
6443
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_INVINCIBLE_ON] = "RAG_MEGA_INVINCIBLE_ON"
|
|
6444
|
+
____exports.SoundEffect.RAG_MEGA_INVINCIBLE_OFF = 986
|
|
6445
|
+
____exports.SoundEffect[____exports.SoundEffect.RAG_MEGA_INVINCIBLE_OFF] = "RAG_MEGA_INVINCIBLE_OFF"
|
|
6446
|
+
____exports.SoundEffect.BLASTOCYST_JUMP_BIG = 987
|
|
6447
|
+
____exports.SoundEffect[____exports.SoundEffect.BLASTOCYST_JUMP_BIG] = "BLASTOCYST_JUMP_BIG"
|
|
6448
|
+
____exports.SoundEffect.BLASTOCYST_JUMP = 988
|
|
6449
|
+
____exports.SoundEffect[____exports.SoundEffect.BLASTOCYST_JUMP] = "BLASTOCYST_JUMP"
|
|
6450
|
+
____exports.SoundEffect.BLASTOCYST_JUMP_SMALL = 989
|
|
6451
|
+
____exports.SoundEffect[____exports.SoundEffect.BLASTOCYST_JUMP_SMALL] = "BLASTOCYST_JUMP_SMALL"
|
|
6452
|
+
____exports.SoundEffect.POOP_DROP = 990
|
|
6453
|
+
____exports.SoundEffect[____exports.SoundEffect.POOP_DROP] = "POOP_DROP"
|
|
6454
|
+
____exports.SoundEffect.CARRION_QUEEN_BOUNCE = 991
|
|
6455
|
+
____exports.SoundEffect[____exports.SoundEffect.CARRION_QUEEN_BOUNCE] = "CARRION_QUEEN_BOUNCE"
|
|
6456
|
+
____exports.SoundEffect.CARRION_QUEEN_DIAGONAL_START = 992
|
|
6457
|
+
____exports.SoundEffect[____exports.SoundEffect.CARRION_QUEEN_DIAGONAL_START] = "CARRION_QUEEN_DIAGONAL_START"
|
|
6458
|
+
____exports.SoundEffect.CARRION_QUEEN_DIAGONAL_VOX = 993
|
|
6459
|
+
____exports.SoundEffect[____exports.SoundEffect.CARRION_QUEEN_DIAGONAL_VOX] = "CARRION_QUEEN_DIAGONAL_VOX"
|
|
6460
|
+
____exports.SoundEffect.CARRION_QUEEN_ROAR = 994
|
|
6461
|
+
____exports.SoundEffect[____exports.SoundEffect.CARRION_QUEEN_ROAR] = "CARRION_QUEEN_ROAR"
|
|
6462
|
+
____exports.SoundEffect.HAUNT_CHARGE = 995
|
|
6463
|
+
____exports.SoundEffect[____exports.SoundEffect.HAUNT_CHARGE] = "HAUNT_CHARGE"
|
|
6464
|
+
____exports.SoundEffect.HAUNT_DEATH = 996
|
|
6465
|
+
____exports.SoundEffect[____exports.SoundEffect.HAUNT_DEATH] = "HAUNT_DEATH"
|
|
6466
|
+
____exports.SoundEffect.HAUNT_ROAR = 997
|
|
6467
|
+
____exports.SoundEffect[____exports.SoundEffect.HAUNT_ROAR] = "HAUNT_ROAR"
|
|
6468
|
+
____exports.SoundEffect.HAUNT_RELEASE_LIL = 998
|
|
6469
|
+
____exports.SoundEffect[____exports.SoundEffect.HAUNT_RELEASE_LIL] = "HAUNT_RELEASE_LIL"
|
|
6470
|
+
____exports.SoundEffect.LARRY_JR_DEATH_1 = 999
|
|
6471
|
+
____exports.SoundEffect[____exports.SoundEffect.LARRY_JR_DEATH_1] = "LARRY_JR_DEATH_1"
|
|
6472
|
+
____exports.SoundEffect.LARRY_JR_DEATH_2 = 1000
|
|
6473
|
+
____exports.SoundEffect[____exports.SoundEffect.LARRY_JR_DEATH_2] = "LARRY_JR_DEATH_2"
|
|
6474
|
+
____exports.SoundEffect.LARRY_JR_ROAR = 1001
|
|
6475
|
+
____exports.SoundEffect[____exports.SoundEffect.LARRY_JR_ROAR] = "LARRY_JR_ROAR"
|
|
6476
|
+
____exports.SoundEffect.MEGA_FATTY_MEGA_FART = 1002
|
|
6477
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_FATTY_MEGA_FART] = "MEGA_FATTY_MEGA_FART"
|
|
6478
|
+
____exports.SoundEffect.HOLLOW_DEATH_1 = 1003
|
|
6479
|
+
____exports.SoundEffect[____exports.SoundEffect.HOLLOW_DEATH_1] = "HOLLOW_DEATH_1"
|
|
6480
|
+
____exports.SoundEffect.HOLLOW_DEATH_2 = 1004
|
|
6481
|
+
____exports.SoundEffect[____exports.SoundEffect.HOLLOW_DEATH_2] = "HOLLOW_DEATH_2"
|
|
6482
|
+
____exports.SoundEffect.HOLLOW_ROAR = 1005
|
|
6483
|
+
____exports.SoundEffect[____exports.SoundEffect.HOLLOW_ROAR] = "HOLLOW_ROAR"
|
|
6484
|
+
____exports.SoundEffect.WAR_KNOCKDOWN = 1006
|
|
6485
|
+
____exports.SoundEffect[____exports.SoundEffect.WAR_KNOCKDOWN] = "WAR_KNOCKDOWN"
|
|
6486
|
+
____exports.SoundEffect.WAR_CHARGE = 1007
|
|
6487
|
+
____exports.SoundEffect[____exports.SoundEffect.WAR_CHARGE] = "WAR_CHARGE"
|
|
6488
|
+
____exports.SoundEffect.BOSS_NEAR = 1008
|
|
6489
|
+
____exports.SoundEffect[____exports.SoundEffect.BOSS_NEAR] = "BOSS_NEAR"
|
|
6490
|
+
____exports.SoundEffect.CAMBION_CONCEPTION = 1009
|
|
6491
|
+
____exports.SoundEffect[____exports.SoundEffect.CAMBION_CONCEPTION] = "CAMBION_CONCEPTION"
|
|
6492
|
+
____exports.SoundEffect.IMMACULATE_CONCEPTION = 1010
|
|
6493
|
+
____exports.SoundEffect[____exports.SoundEffect.IMMACULATE_CONCEPTION] = "IMMACULATE_CONCEPTION"
|
|
6494
|
+
____exports.SoundEffect.CHARGED_BABY_BATTERY = 1011
|
|
6495
|
+
____exports.SoundEffect[____exports.SoundEffect.CHARGED_BABY_BATTERY] = "CHARGED_BABY_BATTERY"
|
|
6496
|
+
____exports.SoundEffect.CHARGED_BABY_CHARGE = 1012
|
|
6497
|
+
____exports.SoundEffect[____exports.SoundEffect.CHARGED_BABY_CHARGE] = "CHARGED_BABY_CHARGE"
|
|
6498
|
+
____exports.SoundEffect.CHARGED_BABY_STUN = 1013
|
|
6499
|
+
____exports.SoundEffect[____exports.SoundEffect.CHARGED_BABY_STUN] = "CHARGED_BABY_STUN"
|
|
6500
|
+
____exports.SoundEffect.ROCK_SHINE = 1014
|
|
6501
|
+
____exports.SoundEffect[____exports.SoundEffect.ROCK_SHINE] = "ROCK_SHINE"
|
|
6502
|
+
____exports.SoundEffect.BLUE_SPIDER_DIE = 1015
|
|
6503
|
+
____exports.SoundEffect[____exports.SoundEffect.BLUE_SPIDER_DIE] = "BLUE_SPIDER_DIE"
|
|
6504
|
+
____exports.SoundEffect.SISSY_LONGLEGS_CHARM = 1016
|
|
6505
|
+
____exports.SoundEffect[____exports.SoundEffect.SISSY_LONGLEGS_CHARM] = "SISSY_LONGLEGS_CHARM"
|
|
6506
|
+
____exports.SoundEffect.ITEM_RAISE = 1017
|
|
6507
|
+
____exports.SoundEffect[____exports.SoundEffect.ITEM_RAISE] = "ITEM_RAISE"
|
|
6508
|
+
____exports.SoundEffect.CLOG_POOP_SMOKE = 1018
|
|
6509
|
+
____exports.SoundEffect[____exports.SoundEffect.CLOG_POOP_SMOKE] = "CLOG_POOP_SMOKE"
|
|
6510
|
+
____exports.SoundEffect.FRIENDLY_BALL_CAPTURE = 1019
|
|
6511
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_CAPTURE] = "FRIENDLY_BALL_CAPTURE"
|
|
6512
|
+
____exports.SoundEffect.FRIENDLY_BALL_LAND = 1020
|
|
6513
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_LAND] = "FRIENDLY_BALL_LAND"
|
|
6514
|
+
____exports.SoundEffect.FRIENDLY_BALL_PICKUP = 1021
|
|
6515
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_PICKUP] = "FRIENDLY_BALL_PICKUP"
|
|
6516
|
+
____exports.SoundEffect.FRIENDLY_BALL_RAISE = 1022
|
|
6517
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_RAISE] = "FRIENDLY_BALL_RAISE"
|
|
6518
|
+
____exports.SoundEffect.FRIENDLY_BALL_RELEASE = 1023
|
|
6519
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_RELEASE] = "FRIENDLY_BALL_RELEASE"
|
|
6520
|
+
____exports.SoundEffect.FRIENDLY_BALL_THROW = 1024
|
|
6521
|
+
____exports.SoundEffect[____exports.SoundEffect.FRIENDLY_BALL_THROW] = "FRIENDLY_BALL_THROW"
|
|
6522
|
+
____exports.SoundEffect.BEST_FRIEND = 1025
|
|
6523
|
+
____exports.SoundEffect[____exports.SoundEffect.BEST_FRIEND] = "BEST_FRIEND"
|
|
6524
|
+
____exports.SoundEffect.BOOK_SHADOWS_START = 1026
|
|
6525
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOK_SHADOWS_START] = "BOOK_SHADOWS_START"
|
|
6526
|
+
____exports.SoundEffect.BOOK_SHADOWS_END = 1027
|
|
6527
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOK_SHADOWS_END] = "BOOK_SHADOWS_END"
|
|
6528
|
+
____exports.SoundEffect.BOOK_SHADOWS_SIGIL = 1028
|
|
6529
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOK_SHADOWS_SIGIL] = "BOOK_SHADOWS_SIGIL"
|
|
6530
|
+
____exports.SoundEffect.BOX_SPIDERS = 1029
|
|
6531
|
+
____exports.SoundEffect[____exports.SoundEffect.BOX_SPIDERS] = "BOX_SPIDERS"
|
|
6532
|
+
____exports.SoundEffect.SUPLEX_ACTIVATE = 1030
|
|
6533
|
+
____exports.SoundEffect[____exports.SoundEffect.SUPLEX_ACTIVATE] = "SUPLEX_ACTIVATE"
|
|
6534
|
+
____exports.SoundEffect.SUPLEX_GRAB = 1031
|
|
6535
|
+
____exports.SoundEffect[____exports.SoundEffect.SUPLEX_GRAB] = "SUPLEX_GRAB"
|
|
6536
|
+
____exports.SoundEffect.SUPLEX_JUMP = 1032
|
|
6537
|
+
____exports.SoundEffect[____exports.SoundEffect.SUPLEX_JUMP] = "SUPLEX_JUMP"
|
|
6538
|
+
____exports.SoundEffect.SUPLEX_LAND = 1033
|
|
6539
|
+
____exports.SoundEffect[____exports.SoundEffect.SUPLEX_LAND] = "SUPLEX_LAND"
|
|
6540
|
+
____exports.SoundEffect.DEAD_SEA_SCROLLS = 1034
|
|
6541
|
+
____exports.SoundEffect[____exports.SoundEffect.DEAD_SEA_SCROLLS] = "DEAD_SEA_SCROLLS"
|
|
6542
|
+
____exports.SoundEffect.MOMS_BRA = 1035
|
|
6543
|
+
____exports.SoundEffect[____exports.SoundEffect.MOMS_BRA] = "MOMS_BRA"
|
|
6544
|
+
____exports.SoundEffect.RED_CANDLE = 1036
|
|
6545
|
+
____exports.SoundEffect[____exports.SoundEffect.RED_CANDLE] = "RED_CANDLE"
|
|
6546
|
+
____exports.SoundEffect.SATANIC_BIBLE = 1037
|
|
6547
|
+
____exports.SoundEffect[____exports.SoundEffect.SATANIC_BIBLE] = "SATANIC_BIBLE"
|
|
6548
|
+
____exports.SoundEffect.BIBLE = 1038
|
|
6549
|
+
____exports.SoundEffect[____exports.SoundEffect.BIBLE] = "BIBLE"
|
|
6550
|
+
____exports.SoundEffect.HOURGLASS = 1039
|
|
6551
|
+
____exports.SoundEffect[____exports.SoundEffect.HOURGLASS] = "HOURGLASS"
|
|
6552
|
+
____exports.SoundEffect.MEGA_MUSH_SHRINK = 1040
|
|
6553
|
+
____exports.SoundEffect[____exports.SoundEffect.MEGA_MUSH_SHRINK] = "MEGA_MUSH_SHRINK"
|
|
6554
|
+
____exports.SoundEffect.MAGIC_SKIN = 1041
|
|
6555
|
+
____exports.SoundEffect[____exports.SoundEffect.MAGIC_SKIN] = "MAGIC_SKIN"
|
|
6556
|
+
____exports.SoundEffect.BOOK_OF_SIN = 1042
|
|
6557
|
+
____exports.SoundEffect[____exports.SoundEffect.BOOK_OF_SIN] = "BOOK_OF_SIN"
|
|
6558
|
+
____exports.SoundEffect.BROKEN_SHOVEL = 1043
|
|
6559
|
+
____exports.SoundEffect[____exports.SoundEffect.BROKEN_SHOVEL] = "BROKEN_SHOVEL"
|
|
6560
|
+
____exports.SoundEffect.DULL_RAZOR = 1044
|
|
6561
|
+
____exports.SoundEffect[____exports.SoundEffect.DULL_RAZOR] = "DULL_RAZOR"
|
|
6562
|
+
____exports.SoundEffect.DARK_ARTS = 1045
|
|
6563
|
+
____exports.SoundEffect[____exports.SoundEffect.DARK_ARTS] = "DARK_ARTS"
|
|
6564
|
+
____exports.SoundEffect.DECAP_ACTIVATE = 1046
|
|
6565
|
+
____exports.SoundEffect[____exports.SoundEffect.DECAP_ACTIVATE] = "DECAP_ACTIVATE"
|
|
6566
|
+
____exports.SoundEffect.DECAP_THROW = 1047
|
|
6567
|
+
____exports.SoundEffect[____exports.SoundEffect.DECAP_THROW] = "DECAP_THROW"
|
|
6568
|
+
____exports.SoundEffect.ESAU_JR = 1048
|
|
6569
|
+
____exports.SoundEffect[____exports.SoundEffect.ESAU_JR] = "ESAU_JR"
|
|
6570
|
+
____exports.SoundEffect.NECROMANCER = 1049
|
|
6571
|
+
____exports.SoundEffect[____exports.SoundEffect.NECROMANCER] = "NECROMANCER"
|
|
6572
|
+
____exports.SoundEffect.GELLO = 1050
|
|
6573
|
+
____exports.SoundEffect[____exports.SoundEffect.GELLO] = "GELLO"
|
|
6574
|
+
____exports.SoundEffect.HEAVENS_DOOR_ENTER = 1051
|
|
6575
|
+
____exports.SoundEffect[____exports.SoundEffect.HEAVENS_DOOR_ENTER] = "HEAVENS_DOOR_ENTER"
|
|
6576
|
+
____exports.SoundEffect.TRAP_DOOR_LEVEL = 1052
|
|
6577
|
+
____exports.SoundEffect[____exports.SoundEffect.TRAP_DOOR_LEVEL] = "TRAP_DOOR_LEVEL"
|
|
6578
|
+
____exports.SoundEffect.CRYSTAL_BALL = 1053
|
|
6579
|
+
____exports.SoundEffect[____exports.SoundEffect.CRYSTAL_BALL] = "CRYSTAL_BALL"
|
|
6580
|
+
____exports.SoundEffect.FORGET_ME_NOW = 1054
|
|
6581
|
+
____exports.SoundEffect[____exports.SoundEffect.FORGET_ME_NOW] = "FORGET_ME_NOW"
|
|
6582
|
+
____exports.SoundEffect.HOW_TO_JUMP = 1055
|
|
6583
|
+
____exports.SoundEffect[____exports.SoundEffect.HOW_TO_JUMP] = "HOW_TO_JUMP"
|
|
6584
|
+
____exports.SoundEffect.IV_BAG = 1056
|
|
6585
|
+
____exports.SoundEffect[____exports.SoundEffect.IV_BAG] = "IV_BAG"
|
|
6586
|
+
____exports.SoundEffect.NOTCHED_AXE = 1057
|
|
6587
|
+
____exports.SoundEffect[____exports.SoundEffect.NOTCHED_AXE] = "NOTCHED_AXE"
|
|
6588
|
+
____exports.SoundEffect.RAZOR_BLADE = 1058
|
|
6589
|
+
____exports.SoundEffect[____exports.SoundEffect.RAZOR_BLADE] = "RAZOR_BLADE"
|
|
6590
|
+
____exports.SoundEffect.TELEPATHY_DUMMY = 1059
|
|
6591
|
+
____exports.SoundEffect[____exports.SoundEffect.TELEPATHY_DUMMY] = "TELEPATHY_DUMMY"
|
|
6592
|
+
____exports.SoundEffect.JAR_OF_FLIES = 1060
|
|
6593
|
+
____exports.SoundEffect[____exports.SoundEffect.JAR_OF_FLIES] = "JAR_OF_FLIES"
|
|
6594
|
+
____exports.SoundEffect.DIPLOPIA = 1061
|
|
6595
|
+
____exports.SoundEffect[____exports.SoundEffect.DIPLOPIA] = "DIPLOPIA"
|
|
6596
|
+
____exports.SoundEffect.MINE_CRAFTER = 1062
|
|
6597
|
+
____exports.SoundEffect[____exports.SoundEffect.MINE_CRAFTER] = "MINE_CRAFTER"
|
|
6598
|
+
____exports.SoundEffect.TEAR_DETONATOR = 1063
|
|
6599
|
+
____exports.SoundEffect[____exports.SoundEffect.TEAR_DETONATOR] = "TEAR_DETONATOR"
|
|
6600
|
+
____exports.SoundEffect.VENTRICLE_RAZOR = 1064
|
|
6601
|
+
____exports.SoundEffect[____exports.SoundEffect.VENTRICLE_RAZOR] = "VENTRICLE_RAZOR"
|
|
6602
|
+
____exports.SoundEffect.WOODEN_NICKEL = 1065
|
|
6603
|
+
____exports.SoundEffect[____exports.SoundEffect.WOODEN_NICKEL] = "WOODEN_NICKEL"
|
|
6604
|
+
____exports.SoundEffect.WOODEN_NICKEL_SPAWN = 1066
|
|
6605
|
+
____exports.SoundEffect[____exports.SoundEffect.WOODEN_NICKEL_SPAWN] = "WOODEN_NICKEL_SPAWN"
|
|
6606
|
+
____exports.SoundEffect.BLACK_HOLE_ACTIVATE = 1067
|
|
6607
|
+
____exports.SoundEffect[____exports.SoundEffect.BLACK_HOLE_ACTIVATE] = "BLACK_HOLE_ACTIVATE"
|
|
6608
|
+
____exports.SoundEffect.BLACK_HOLE_THROW = 1068
|
|
6609
|
+
____exports.SoundEffect[____exports.SoundEffect.BLACK_HOLE_THROW] = "BLACK_HOLE_THROW"
|
|
6610
|
+
____exports.SoundEffect.MR_ME = 1069
|
|
6611
|
+
____exports.SoundEffect[____exports.SoundEffect.MR_ME] = "MR_ME"
|
|
6612
|
+
____exports.SoundEffect.SPRINKLER_SPAWN = 1070
|
|
6613
|
+
____exports.SoundEffect[____exports.SoundEffect.SPRINKLER_SPAWN] = "SPRINKLER_SPAWN"
|
|
6614
|
+
____exports.SoundEffect.VOID_SUCCESS = 1071
|
|
6615
|
+
____exports.SoundEffect[____exports.SoundEffect.VOID_SUCCESS] = "VOID_SUCCESS"
|
|
6616
|
+
____exports.SoundEffect.VOID_FAIL = 1072
|
|
6617
|
+
____exports.SoundEffect[____exports.SoundEffect.VOID_FAIL] = "VOID_FAIL"
|
|
6618
|
+
____exports.SoundEffect.ABYSS_SUCCESS = 1073
|
|
6619
|
+
____exports.SoundEffect[____exports.SoundEffect.ABYSS_SUCCESS] = "ABYSS_SUCCESS"
|
|
6620
|
+
____exports.SoundEffect.BAG_OF_CRAFTING = 1074
|
|
6621
|
+
____exports.SoundEffect[____exports.SoundEffect.BAG_OF_CRAFTING] = "BAG_OF_CRAFTING"
|
|
6622
|
+
____exports.SoundEffect.GIANT_CHEST_OPEN = 1075
|
|
6623
|
+
____exports.SoundEffect[____exports.SoundEffect.GIANT_CHEST_OPEN] = "GIANT_CHEST_OPEN"
|
|
6624
|
+
____exports.SoundEffect.IMP_GROWL = 1076
|
|
6625
|
+
____exports.SoundEffect[____exports.SoundEffect.IMP_GROWL] = "IMP_GROWL"
|
|
6626
|
+
____exports.SoundEffect.IMP_SHOOT = 1077
|
|
6627
|
+
____exports.SoundEffect[____exports.SoundEffect.IMP_SHOOT] = "IMP_SHOOT"
|
|
6628
|
+
____exports.SoundEffect.IMP_WARP_OUT = 1078
|
|
6629
|
+
____exports.SoundEffect[____exports.SoundEffect.IMP_WARP_OUT] = "IMP_WARP_OUT"
|
|
6630
|
+
____exports.SoundEffect.IMP_WARP_IN = 1079
|
|
6631
|
+
____exports.SoundEffect[____exports.SoundEffect.IMP_WARP_IN] = "IMP_WARP_IN"
|
|
6632
|
+
____exports.SoundEffect.BRAIN_MOVE = 1080
|
|
6633
|
+
____exports.SoundEffect[____exports.SoundEffect.BRAIN_MOVE] = "BRAIN_MOVE"
|
|
6634
|
+
____exports.SoundEffect.POISON_MIND_HURT = 1081
|
|
6635
|
+
____exports.SoundEffect[____exports.SoundEffect.POISON_MIND_HURT] = "POISON_MIND_HURT"
|
|
6636
|
+
____exports.SoundEffect.KNIGHT_GROWL = 1082
|
|
6637
|
+
____exports.SoundEffect[____exports.SoundEffect.KNIGHT_GROWL] = "KNIGHT_GROWL"
|
|
6638
|
+
____exports.SoundEffect.SELFLESS_KNIGHT_GROWL = 1083
|
|
6639
|
+
____exports.SoundEffect[____exports.SoundEffect.SELFLESS_KNIGHT_GROWL] = "SELFLESS_KNIGHT_GROWL"
|
|
6640
|
+
____exports.SoundEffect.FLOATING_KNIGHT_GROWL = 1084
|
|
6641
|
+
____exports.SoundEffect[____exports.SoundEffect.FLOATING_KNIGHT_GROWL] = "FLOATING_KNIGHT_GROWL"
|
|
6642
|
+
____exports.SoundEffect.BUTTLICKER_GROWL = 1085
|
|
6643
|
+
____exports.SoundEffect[____exports.SoundEffect.BUTTLICKER_GROWL] = "BUTTLICKER_GROWL"
|
|
6644
|
+
____exports.SoundEffect.LADDER = 1086
|
|
6645
|
+
____exports.SoundEffect[____exports.SoundEffect.LADDER] = "LADDER"
|
|
6646
|
+
____exports.SoundEffect.OCULAR_RIFT_SHOOT = 1087
|
|
6647
|
+
____exports.SoundEffect[____exports.SoundEffect.OCULAR_RIFT_SHOOT] = "OCULAR_RIFT_SHOOT"
|
|
6648
|
+
____exports.SoundEffect.OCULAR_RIFT_PORTAL = 1088
|
|
6649
|
+
____exports.SoundEffect[____exports.SoundEffect.OCULAR_RIFT_PORTAL] = "OCULAR_RIFT_PORTAL"
|
|
6650
|
+
____exports.SoundEffect.UNBORN_GROWL = 1089
|
|
6651
|
+
____exports.SoundEffect[____exports.SoundEffect.UNBORN_GROWL] = "UNBORN_GROWL"
|
|
6652
|
+
____exports.SoundEffect.UNBORN_WARP = 1090
|
|
6653
|
+
____exports.SoundEffect[____exports.SoundEffect.UNBORN_WARP] = "UNBORN_WARP"
|
|
6124
6654
|
return ____exports
|
|
6125
6655
|
end,
|
|
6126
6656
|
["lua_modules.isaac-typescript-definitions.dist.enums.SortingLayer"] = function(...)
|
|
@@ -6362,6 +6892,8 @@ ____exports.RoomType.BLUE = 28
|
|
|
6362
6892
|
____exports.RoomType[____exports.RoomType.BLUE] = "BLUE"
|
|
6363
6893
|
____exports.RoomType.ULTRA_SECRET = 29
|
|
6364
6894
|
____exports.RoomType[____exports.RoomType.ULTRA_SECRET] = "ULTRA_SECRET"
|
|
6895
|
+
____exports.RoomType.DEATHMATCH = 30
|
|
6896
|
+
____exports.RoomType[____exports.RoomType.DEATHMATCH] = "DEATHMATCH"
|
|
6365
6897
|
return ____exports
|
|
6366
6898
|
end,
|
|
6367
6899
|
["lua_modules.isaac-typescript-definitions.dist.enums.RoomTransitionAnim"] = function(...)
|
|
@@ -8041,6 +8573,8 @@ ____exports.Music.MINESHAFT_ESCAPE = 117
|
|
|
8041
8573
|
____exports.Music[____exports.Music.MINESHAFT_ESCAPE] = "MINESHAFT_ESCAPE"
|
|
8042
8574
|
____exports.Music.REVERSE_GENESIS = 118
|
|
8043
8575
|
____exports.Music[____exports.Music.REVERSE_GENESIS] = "REVERSE_GENESIS"
|
|
8576
|
+
____exports.Music.MUSIC_DEATHMATCH = 119
|
|
8577
|
+
____exports.Music[____exports.Music.MUSIC_DEATHMATCH] = "MUSIC_DEATHMATCH"
|
|
8044
8578
|
return ____exports
|
|
8045
8579
|
end,
|
|
8046
8580
|
["lua_modules.isaac-typescript-definitions.dist.enums.Mouse"] = function(...)
|
|
@@ -8885,6 +9419,16 @@ ____exports.Keyboard.RIGHT_SUPER = 347
|
|
|
8885
9419
|
____exports.Keyboard[____exports.Keyboard.RIGHT_SUPER] = "RIGHT_SUPER"
|
|
8886
9420
|
____exports.Keyboard.MENU = 348
|
|
8887
9421
|
____exports.Keyboard[____exports.Keyboard.MENU] = "MENU"
|
|
9422
|
+
return ____exports
|
|
9423
|
+
end,
|
|
9424
|
+
["lua_modules.isaac-typescript-definitions.dist.enums.JacobEsauControls"] = function(...)
|
|
9425
|
+
local ____exports = {}
|
|
9426
|
+
--- Added in Repentance+.
|
|
9427
|
+
____exports.JacobEsauControls = {}
|
|
9428
|
+
____exports.JacobEsauControls.CLASSIC = 0
|
|
9429
|
+
____exports.JacobEsauControls[____exports.JacobEsauControls.CLASSIC] = "CLASSIC"
|
|
9430
|
+
____exports.JacobEsauControls.BETTER = 1
|
|
9431
|
+
____exports.JacobEsauControls[____exports.JacobEsauControls.BETTER] = "BETTER"
|
|
8888
9432
|
return ____exports
|
|
8889
9433
|
end,
|
|
8890
9434
|
["lua_modules.isaac-typescript-definitions.dist.enums.ItemType"] = function(...)
|
|
@@ -9097,6 +9641,10 @@ ____exports.GridRoom.EXTRA_BOSS = -17
|
|
|
9097
9641
|
____exports.GridRoom[____exports.GridRoom.EXTRA_BOSS] = "EXTRA_BOSS"
|
|
9098
9642
|
____exports.GridRoom.ANGEL_SHOP = -18
|
|
9099
9643
|
____exports.GridRoom[____exports.GridRoom.ANGEL_SHOP] = "ANGEL_SHOP"
|
|
9644
|
+
____exports.GridRoom.DEATHMATCH = -19
|
|
9645
|
+
____exports.GridRoom[____exports.GridRoom.DEATHMATCH] = "DEATHMATCH"
|
|
9646
|
+
____exports.GridRoom.LIL_PORTAL = -20
|
|
9647
|
+
____exports.GridRoom[____exports.GridRoom.LIL_PORTAL] = "LIL_PORTAL"
|
|
9100
9648
|
return ____exports
|
|
9101
9649
|
end,
|
|
9102
9650
|
["lua_modules.isaac-typescript-definitions.dist.enums.GridPath"] = function(...)
|
|
@@ -9387,6 +9935,14 @@ ____exports.GameStateFlag.BACKWARDS_PATH_INIT = 47
|
|
|
9387
9935
|
____exports.GameStateFlag[____exports.GameStateFlag.BACKWARDS_PATH_INIT] = "BACKWARDS_PATH_INIT"
|
|
9388
9936
|
____exports.GameStateFlag.BACKWARDS_PATH = 48
|
|
9389
9937
|
____exports.GameStateFlag[____exports.GameStateFlag.BACKWARDS_PATH] = "BACKWARDS_PATH"
|
|
9938
|
+
____exports.GameStateFlag.MEGA_SATAN_DOOR_OPENED = 49
|
|
9939
|
+
____exports.GameStateFlag[____exports.GameStateFlag.MEGA_SATAN_DOOR_OPENED] = "MEGA_SATAN_DOOR_OPENED"
|
|
9940
|
+
____exports.GameStateFlag.URIEL_KILLED = 50
|
|
9941
|
+
____exports.GameStateFlag[____exports.GameStateFlag.URIEL_KILLED] = "URIEL_KILLED"
|
|
9942
|
+
____exports.GameStateFlag.GABRIEL_KILLED = 51
|
|
9943
|
+
____exports.GameStateFlag[____exports.GameStateFlag.GABRIEL_KILLED] = "GABRIEL_KILLED"
|
|
9944
|
+
____exports.GameStateFlag.MOTHER_HEART_DOOR_OPENED = 52
|
|
9945
|
+
____exports.GameStateFlag[____exports.GameStateFlag.MOTHER_HEART_DOOR_OPENED] = "MOTHER_HEART_DOOR_OPENED"
|
|
9390
9946
|
return ____exports
|
|
9391
9947
|
end,
|
|
9392
9948
|
["lua_modules.isaac-typescript-definitions.dist.enums.flags.UseFlag"] = function(...)
|
|
@@ -10786,6 +11342,30 @@ ____exports.EntityCollisionClass.ENEMIES = 3
|
|
|
10786
11342
|
____exports.EntityCollisionClass[____exports.EntityCollisionClass.ENEMIES] = "ENEMIES"
|
|
10787
11343
|
____exports.EntityCollisionClass.ALL = 4
|
|
10788
11344
|
____exports.EntityCollisionClass[____exports.EntityCollisionClass.ALL] = "ALL"
|
|
11345
|
+
return ____exports
|
|
11346
|
+
end,
|
|
11347
|
+
["lua_modules.isaac-typescript-definitions.dist.enums.DrawStringAlignment"] = function(...)
|
|
11348
|
+
local ____exports = {}
|
|
11349
|
+
--- Added in Repentance+.
|
|
11350
|
+
____exports.DrawStringAlignment = {}
|
|
11351
|
+
____exports.DrawStringAlignment.TOP_LEFT = 0
|
|
11352
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.TOP_LEFT] = "TOP_LEFT"
|
|
11353
|
+
____exports.DrawStringAlignment.TOP_CENTER = 1
|
|
11354
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.TOP_CENTER] = "TOP_CENTER"
|
|
11355
|
+
____exports.DrawStringAlignment.TOP_RIGHT = 2
|
|
11356
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.TOP_RIGHT] = "TOP_RIGHT"
|
|
11357
|
+
____exports.DrawStringAlignment.MIDDLE_LEFT = 3
|
|
11358
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.MIDDLE_LEFT] = "MIDDLE_LEFT"
|
|
11359
|
+
____exports.DrawStringAlignment.MIDDLE_CENTER = 4
|
|
11360
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.MIDDLE_CENTER] = "MIDDLE_CENTER"
|
|
11361
|
+
____exports.DrawStringAlignment.MIDDLE_RIGHT = 5
|
|
11362
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.MIDDLE_RIGHT] = "MIDDLE_RIGHT"
|
|
11363
|
+
____exports.DrawStringAlignment.BOTTOM_LEFT = 6
|
|
11364
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.BOTTOM_LEFT] = "BOTTOM_LEFT"
|
|
11365
|
+
____exports.DrawStringAlignment.BOTTOM_CENTER = 7
|
|
11366
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.BOTTOM_CENTER] = "BOTTOM_CENTER"
|
|
11367
|
+
____exports.DrawStringAlignment.BOTTOM_RIGHT = 8
|
|
11368
|
+
____exports.DrawStringAlignment[____exports.DrawStringAlignment.BOTTOM_RIGHT] = "BOTTOM_RIGHT"
|
|
10789
11369
|
return ____exports
|
|
10790
11370
|
end,
|
|
10791
11371
|
["lua_modules.isaac-typescript-definitions.dist.enums.Direction"] = function(...)
|
|
@@ -13200,6 +13780,16 @@ ____exports.EffectVariant.GENERIC_TRACER = 198
|
|
|
13200
13780
|
____exports.EffectVariant[____exports.EffectVariant.GENERIC_TRACER] = "GENERIC_TRACER"
|
|
13201
13781
|
____exports.EffectVariant.ULTRA_DEATH_SCYTHE = 199
|
|
13202
13782
|
____exports.EffectVariant[____exports.EffectVariant.ULTRA_DEATH_SCYTHE] = "ULTRA_DEATH_SCYTHE"
|
|
13783
|
+
____exports.EffectVariant.BULLET_POOF_STATIC = 200
|
|
13784
|
+
____exports.EffectVariant[____exports.EffectVariant.BULLET_POOF_STATIC] = "BULLET_POOF_STATIC"
|
|
13785
|
+
____exports.EffectVariant.UMBILICAL_CORD_HELPER = 201
|
|
13786
|
+
____exports.EffectVariant[____exports.EffectVariant.UMBILICAL_CORD_HELPER] = "UMBILICAL_CORD_HELPER"
|
|
13787
|
+
____exports.EffectVariant.MEGA_BEAN_EXPLOSION = 202
|
|
13788
|
+
____exports.EffectVariant[____exports.EffectVariant.MEGA_BEAN_EXPLOSION] = "MEGA_BEAN_EXPLOSION"
|
|
13789
|
+
____exports.EffectVariant.SPAWN_PENTAGRAM = 203
|
|
13790
|
+
____exports.EffectVariant[____exports.EffectVariant.SPAWN_PENTAGRAM] = "SPAWN_PENTAGRAM"
|
|
13791
|
+
____exports.EffectVariant.PLAYER_CREEP_YELLOW = 204
|
|
13792
|
+
____exports.EffectVariant[____exports.EffectVariant.PLAYER_CREEP_YELLOW] = "PLAYER_CREEP_YELLOW"
|
|
13203
13793
|
return ____exports
|
|
13204
13794
|
end,
|
|
13205
13795
|
["lua_modules.isaac-typescript-definitions.dist.enums.collections.subTypes"] = function(...)
|
|
@@ -17472,12 +18062,18 @@ ____exports.ButtonAction.MENU_CONFIRM = 14
|
|
|
17472
18062
|
____exports.ButtonAction[____exports.ButtonAction.MENU_CONFIRM] = "MENU_CONFIRM"
|
|
17473
18063
|
____exports.ButtonAction.MENU_BACK = 15
|
|
17474
18064
|
____exports.ButtonAction[____exports.ButtonAction.MENU_BACK] = "MENU_BACK"
|
|
17475
|
-
____exports.ButtonAction.
|
|
17476
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
17477
|
-
____exports.ButtonAction.
|
|
17478
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
17479
|
-
____exports.ButtonAction.
|
|
17480
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
18065
|
+
____exports.ButtonAction.RESTART_REPENTANCE = 16
|
|
18066
|
+
____exports.ButtonAction[____exports.ButtonAction.RESTART_REPENTANCE] = "RESTART_REPENTANCE"
|
|
18067
|
+
____exports.ButtonAction.FULLSCREEN_REPENTANCE_PLUS = 16
|
|
18068
|
+
____exports.ButtonAction[____exports.ButtonAction.FULLSCREEN_REPENTANCE_PLUS] = "FULLSCREEN_REPENTANCE_PLUS"
|
|
18069
|
+
____exports.ButtonAction.FULLSCREEN_REPENTANCE = 17
|
|
18070
|
+
____exports.ButtonAction[____exports.ButtonAction.FULLSCREEN_REPENTANCE] = "FULLSCREEN_REPENTANCE"
|
|
18071
|
+
____exports.ButtonAction.MUTE_REPENTANCE_PLUS = 17
|
|
18072
|
+
____exports.ButtonAction[____exports.ButtonAction.MUTE_REPENTANCE_PLUS] = "MUTE_REPENTANCE_PLUS"
|
|
18073
|
+
____exports.ButtonAction.MUTE_REPENTANCE = 18
|
|
18074
|
+
____exports.ButtonAction[____exports.ButtonAction.MUTE_REPENTANCE] = "MUTE_REPENTANCE"
|
|
18075
|
+
____exports.ButtonAction.RESTART_REPENTANCE_PLUS = 18
|
|
18076
|
+
____exports.ButtonAction[____exports.ButtonAction.RESTART_REPENTANCE_PLUS] = "RESTART_REPENTANCE_PLUS"
|
|
17481
18077
|
____exports.ButtonAction.JOIN_MULTIPLAYER = 19
|
|
17482
18078
|
____exports.ButtonAction[____exports.ButtonAction.JOIN_MULTIPLAYER] = "JOIN_MULTIPLAYER"
|
|
17483
18079
|
____exports.ButtonAction.MENU_LEFT = 20
|
|
@@ -17488,14 +18084,30 @@ ____exports.ButtonAction.MENU_UP = 22
|
|
|
17488
18084
|
____exports.ButtonAction[____exports.ButtonAction.MENU_UP] = "MENU_UP"
|
|
17489
18085
|
____exports.ButtonAction.MENU_DOWN = 23
|
|
17490
18086
|
____exports.ButtonAction[____exports.ButtonAction.MENU_DOWN] = "MENU_DOWN"
|
|
17491
|
-
____exports.ButtonAction.
|
|
17492
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
17493
|
-
____exports.ButtonAction.
|
|
17494
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
17495
|
-
____exports.ButtonAction.
|
|
17496
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
17497
|
-
____exports.ButtonAction.
|
|
17498
|
-
____exports.ButtonAction[____exports.ButtonAction.
|
|
18087
|
+
____exports.ButtonAction.MENU_LEFT_TRIGGER_REPENTANCE = 24
|
|
18088
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_LEFT_TRIGGER_REPENTANCE] = "MENU_LEFT_TRIGGER_REPENTANCE"
|
|
18089
|
+
____exports.ButtonAction.MENU_LEFT_SHOULDER = 24
|
|
18090
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_LEFT_SHOULDER] = "MENU_LEFT_SHOULDER"
|
|
18091
|
+
____exports.ButtonAction.MENU_RIGHT_TRIGGER_REPENTANCE = 25
|
|
18092
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_RIGHT_TRIGGER_REPENTANCE] = "MENU_RIGHT_TRIGGER_REPENTANCE"
|
|
18093
|
+
____exports.ButtonAction.MENU_RIGHT_SHOULDER = 25
|
|
18094
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_RIGHT_SHOULDER] = "MENU_RIGHT_SHOULDER"
|
|
18095
|
+
____exports.ButtonAction.MENU_TAB_REPENTANCE = 26
|
|
18096
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_TAB_REPENTANCE] = "MENU_TAB_REPENTANCE"
|
|
18097
|
+
____exports.ButtonAction.MENU_LEFT_TRIGGER_REPENTANCE_PLUS = 26
|
|
18098
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_LEFT_TRIGGER_REPENTANCE_PLUS] = "MENU_LEFT_TRIGGER_REPENTANCE_PLUS"
|
|
18099
|
+
____exports.ButtonAction.MENU_RIGHT_TRIGGER_REPENTANCE_PLUS = 27
|
|
18100
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_RIGHT_TRIGGER_REPENTANCE_PLUS] = "MENU_RIGHT_TRIGGER_REPENTANCE_PLUS"
|
|
18101
|
+
____exports.ButtonAction.CONSOLE_REPENTANCE = 28
|
|
18102
|
+
____exports.ButtonAction[____exports.ButtonAction.CONSOLE_REPENTANCE] = "CONSOLE_REPENTANCE"
|
|
18103
|
+
____exports.ButtonAction.MENU_TAB_REPENTANCE_PLUS = 28
|
|
18104
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_TAB_REPENTANCE_PLUS] = "MENU_TAB_REPENTANCE_PLUS"
|
|
18105
|
+
____exports.ButtonAction.MENU_EX = 29
|
|
18106
|
+
____exports.ButtonAction[____exports.ButtonAction.MENU_EX] = "MENU_EX"
|
|
18107
|
+
____exports.ButtonAction.EMOTES = 30
|
|
18108
|
+
____exports.ButtonAction[____exports.ButtonAction.EMOTES] = "EMOTES"
|
|
18109
|
+
____exports.ButtonAction.CONSOLE_REPENTANCE_PLUS = 32
|
|
18110
|
+
____exports.ButtonAction[____exports.ButtonAction.CONSOLE_REPENTANCE_PLUS] = "CONSOLE_REPENTANCE_PLUS"
|
|
17499
18111
|
return ____exports
|
|
17500
18112
|
end,
|
|
17501
18113
|
["lua_modules.isaac-typescript-definitions.dist.enums.BrokenWatchState"] = function(...)
|
|
@@ -17633,6 +18245,10 @@ ____exports.BackdropType.ASHPIT_SHAFT = 59
|
|
|
17633
18245
|
____exports.BackdropType[____exports.BackdropType.ASHPIT_SHAFT] = "ASHPIT_SHAFT"
|
|
17634
18246
|
____exports.BackdropType.DARK_CLOSET = 60
|
|
17635
18247
|
____exports.BackdropType[____exports.BackdropType.DARK_CLOSET] = "DARK_CLOSET"
|
|
18248
|
+
____exports.BackdropType.DEATHMATCH = 61
|
|
18249
|
+
____exports.BackdropType[____exports.BackdropType.DEATHMATCH] = "DEATHMATCH"
|
|
18250
|
+
____exports.BackdropType.LIL_PORTAL = 62
|
|
18251
|
+
____exports.BackdropType[____exports.BackdropType.LIL_PORTAL] = "LIL_PORTAL"
|
|
17636
18252
|
return ____exports
|
|
17637
18253
|
end,
|
|
17638
18254
|
["lua_modules.isaac-typescript-definitions.dist.enums.AnnouncerVoiceMode"] = function(...)
|
|
@@ -20789,6 +21405,8 @@ ____exports.MAX_TAINTED_SAMSON_BERSERK_CHARGE = 100000
|
|
|
20789
21405
|
____exports.NUM_DIMENSIONS = getEnumLength(nil, Dimension) - 1
|
|
20790
21406
|
--- An array containing every valid `Dimension`, not including `Dimension.CURRENT`. (This is derived
|
|
20791
21407
|
-- from the `NUM_DIMENSIONS` constant.)
|
|
21408
|
+
--
|
|
21409
|
+
-- We cannot use the values of the `Dimension` enum because it includes -1.
|
|
20792
21410
|
____exports.DIMENSIONS = eRange(nil, ____exports.NUM_DIMENSIONS)
|
|
20793
21411
|
--- The pill pool for each run is comprised of one effect for each unique pill color (minus gold and
|
|
20794
21412
|
-- horse pills.)
|
|
@@ -28486,7 +29104,7 @@ end
|
|
|
28486
29104
|
-- the prices for items in the shop would be the same as if Isaac had two Steam Sales.)
|
|
28487
29105
|
function ____exports.getAdjustedPrice(self, basePrice)
|
|
28488
29106
|
local numSteamSales = ____exports.getTotalPlayerCollectibles(nil, CollectibleType.STEAM_SALE)
|
|
28489
|
-
return
|
|
29107
|
+
return math.ceil(basePrice / (numSteamSales + 1))
|
|
28490
29108
|
end
|
|
28491
29109
|
--- Helper function to return the total amount of collectibles that a player has that match the
|
|
28492
29110
|
-- collectible type(s) provided.
|
|
@@ -31531,7 +32149,8 @@ ____exports.ROOM_TYPE_NAMES = {
|
|
|
31531
32149
|
[RoomType.TELEPORTER_EXIT] = "Teleporter Exit Room",
|
|
31532
32150
|
[RoomType.SECRET_EXIT] = "Secret Exit",
|
|
31533
32151
|
[RoomType.BLUE] = "Blue Room",
|
|
31534
|
-
[RoomType.ULTRA_SECRET] = "Ultra Secret Room"
|
|
32152
|
+
[RoomType.ULTRA_SECRET] = "Ultra Secret Room",
|
|
32153
|
+
[RoomType.DEATHMATCH] = "Deathmatch"
|
|
31535
32154
|
}
|
|
31536
32155
|
return ____exports
|
|
31537
32156
|
end,
|
|
@@ -32101,7 +32720,8 @@ ____exports.ROOM_TYPE_SPECIAL_GOTO_PREFIXES = {
|
|
|
32101
32720
|
[RoomType.TELEPORTER_EXIT] = "teleporterexit",
|
|
32102
32721
|
[RoomType.SECRET_EXIT] = "secretexit",
|
|
32103
32722
|
[RoomType.BLUE] = "blue",
|
|
32104
|
-
[RoomType.ULTRA_SECRET] = "ultrasecret"
|
|
32723
|
+
[RoomType.ULTRA_SECRET] = "ultrasecret",
|
|
32724
|
+
[RoomType.DEATHMATCH] = "deathmatch"
|
|
32105
32725
|
}
|
|
32106
32726
|
return ____exports
|
|
32107
32727
|
end,
|
|
@@ -43669,7 +44289,7 @@ function ____exports.restoreDefaultForFeatureKey(self, saveDataDefaultsMap, subs
|
|
|
43669
44289
|
end
|
|
43670
44290
|
local childTableDefaults = saveDataDefaults[saveDataKey]
|
|
43671
44291
|
if childTableDefaults == nil then
|
|
43672
|
-
logError((
|
|
44292
|
+
logError(String:raw({[1] = "Failed to find the default copy of the child table \"", [2] = "\" for subscriber \"", [3] = "\". This error usually means that your mod-specific save data is out of date. You can try purging all of your mod-specific save data by deleting the following directory: C:Program Files (x86)SteamsteamappscommonThe Binding of Isaac Rebirthdata", raw = {"Failed to find the default copy of the child table \"", "\" for subscriber \"", "\". This error usually means that your mod-specific save data is out of date. You can try purging all of your mod-specific save data by deleting the following directory: C:\\Program Files (x86)\\Steam\\steamapps\\common\\The Binding of Isaac Rebirth\\data"}}, saveDataKey, subscriberName))
|
|
43673
44293
|
return
|
|
43674
44294
|
end
|
|
43675
44295
|
local childTableDefaultsCopy = deepCopy(nil, childTableDefaults, SerializationType.NONE, (subscriberName .. " --> ") .. saveDataKey)
|
|
@@ -47552,9 +48172,9 @@ function CustomPickups.prototype.____constructor(self)
|
|
|
47552
48172
|
if player == nil then
|
|
47553
48173
|
return nil
|
|
47554
48174
|
end
|
|
47555
|
-
local shouldPickup = customPickupFunctions.collisionFunc(player)
|
|
47556
|
-
if
|
|
47557
|
-
return
|
|
48175
|
+
local shouldPickup = customPickupFunctions.collisionFunc(pickup, player)
|
|
48176
|
+
if shouldPickup ~= nil then
|
|
48177
|
+
return shouldPickup
|
|
47558
48178
|
end
|
|
47559
48179
|
pickup:Remove()
|
|
47560
48180
|
local pickupSprite = pickup:GetSprite()
|
|
@@ -47563,7 +48183,7 @@ function CustomPickups.prototype.____constructor(self)
|
|
|
47563
48183
|
local effectSprite = effect:GetSprite()
|
|
47564
48184
|
effectSprite:Load(fileName, true)
|
|
47565
48185
|
effectSprite:Play("Collect", true)
|
|
47566
|
-
customPickupFunctions.collectFunc(player)
|
|
48186
|
+
customPickupFunctions.collectFunc(pickup, player)
|
|
47567
48187
|
return nil
|
|
47568
48188
|
end
|
|
47569
48189
|
self.postEffectRenderPickupEffect = function(____, effect)
|
|
@@ -47579,7 +48199,7 @@ function CustomPickups.prototype.____constructor(self)
|
|
|
47579
48199
|
end
|
|
47580
48200
|
function CustomPickups.prototype.registerCustomPickup(self, pickupVariantCustom, subType, collectFunc, collisionFunc)
|
|
47581
48201
|
if collisionFunc == nil then
|
|
47582
|
-
collisionFunc = function() return
|
|
48202
|
+
collisionFunc = function() return nil end
|
|
47583
48203
|
end
|
|
47584
48204
|
local entityID = getEntityIDFromConstituents(nil, EntityType.PICKUP, pickupVariantCustom, subType)
|
|
47585
48205
|
local customPickupFunctions = {collectFunc = collectFunc, collisionFunc = collisionFunc}
|
|
@@ -47676,7 +48296,9 @@ ____exports.BACKDROP_TYPE_TO_ROCK_ALT_TYPE = {
|
|
|
47676
48296
|
[BackdropType.DUNGEON_BEAST] = RockAltType.URN,
|
|
47677
48297
|
[BackdropType.MINES_SHAFT] = RockAltType.MUSHROOM,
|
|
47678
48298
|
[BackdropType.ASHPIT_SHAFT] = RockAltType.MUSHROOM,
|
|
47679
|
-
[BackdropType.DARK_CLOSET] = RockAltType.SKULL
|
|
48299
|
+
[BackdropType.DARK_CLOSET] = RockAltType.SKULL,
|
|
48300
|
+
[BackdropType.DEATHMATCH] = RockAltType.URN,
|
|
48301
|
+
[BackdropType.LIL_PORTAL] = RockAltType.URN
|
|
47680
48302
|
}
|
|
47681
48303
|
return ____exports
|
|
47682
48304
|
end,
|
|
@@ -49087,6 +49709,7 @@ local ____tstlClass = require("functions.tstlClass")
|
|
|
49087
49709
|
local getTSTLClassName = ____tstlClass.getTSTLClassName
|
|
49088
49710
|
local ____utils = require("functions.utils")
|
|
49089
49711
|
local assertDefined = ____utils.assertDefined
|
|
49712
|
+
local isRepentancePlus = ____utils.isRepentancePlus
|
|
49090
49713
|
local ____vector = require("functions.vector")
|
|
49091
49714
|
local isVector = ____vector.isVector
|
|
49092
49715
|
local ____ReadonlySet = require("types.ReadonlySet")
|
|
@@ -49372,7 +49995,8 @@ function CustomTrapdoors.prototype.playerTouchedCustomTrapdoor(self, gridEntity,
|
|
|
49372
49995
|
self:logStateChanged()
|
|
49373
49996
|
local tstlClassName = getTSTLClassName(nil, self)
|
|
49374
49997
|
assertDefined(nil, tstlClassName, "Failed to find get the class name for the custom trapdoor feature.")
|
|
49375
|
-
local
|
|
49998
|
+
local buttonActionConsole = isRepentancePlus(nil) and ButtonAction.CONSOLE_REPENTANCE_PLUS or ButtonAction.CONSOLE_REPENTANCE
|
|
49999
|
+
local whitelist = __TS__New(ReadonlySet, {buttonActionConsole})
|
|
49376
50000
|
self.disableInputs:disableAllInputsExceptFor(tstlClassName, whitelist)
|
|
49377
50001
|
setPlayerAttributes(nil, player, gridEntity.Position)
|
|
49378
50002
|
dropTaintedForgotten(nil, player)
|
|
@@ -49588,6 +50212,9 @@ local ButtonAction = ____isaac_2Dtypescript_2Ddefinitions.ButtonAction
|
|
|
49588
50212
|
local CollectibleType = ____isaac_2Dtypescript_2Ddefinitions.CollectibleType
|
|
49589
50213
|
local InputHook = ____isaac_2Dtypescript_2Ddefinitions.InputHook
|
|
49590
50214
|
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
50215
|
+
local SoundEffect = ____isaac_2Dtypescript_2Ddefinitions.SoundEffect
|
|
50216
|
+
local ____cachedClasses = require("core.cachedClasses")
|
|
50217
|
+
local sfxManager = ____cachedClasses.sfxManager
|
|
49591
50218
|
local ____constants = require("core.constants")
|
|
49592
50219
|
local VectorZero = ____constants.VectorZero
|
|
49593
50220
|
local ____decorators = require("decorators")
|
|
@@ -49609,6 +50236,7 @@ local ____tstlClass = require("functions.tstlClass")
|
|
|
49609
50236
|
local getTSTLClassName = ____tstlClass.getTSTLClassName
|
|
49610
50237
|
local ____utils = require("functions.utils")
|
|
49611
50238
|
local assertDefined = ____utils.assertDefined
|
|
50239
|
+
local isRepentancePlus = ____utils.isRepentancePlus
|
|
49612
50240
|
local ____ReadonlySet = require("types.ReadonlySet")
|
|
49613
50241
|
local ReadonlySet = ____ReadonlySet.ReadonlySet
|
|
49614
50242
|
local ____Feature = require("classes.private.Feature")
|
|
@@ -49631,6 +50259,9 @@ function Pause.prototype.____constructor(self, disableInputs)
|
|
|
49631
50259
|
end
|
|
49632
50260
|
local firstPlayer = Isaac.GetPlayer()
|
|
49633
50261
|
useActiveItemTemp(nil, firstPlayer, CollectibleType.PAUSE)
|
|
50262
|
+
if isRepentancePlus(nil) then
|
|
50263
|
+
sfxManager:Stop(SoundEffect.PAUSE_FREEZE)
|
|
50264
|
+
end
|
|
49634
50265
|
self:stopTearsAndProjectilesFromMoving()
|
|
49635
50266
|
end
|
|
49636
50267
|
self.inputActionGetActionValue = function(____, _entity, _inputHook, buttonAction)
|
|
@@ -49658,7 +50289,7 @@ function Pause.prototype.stopTearsAndProjectilesFromMoving(self)
|
|
|
49658
50289
|
local ptrHash = GetPtrHash(tearOrProjectile)
|
|
49659
50290
|
local initialDescription = v.run.initialDescriptions:get(ptrHash)
|
|
49660
50291
|
if initialDescription == nil then
|
|
49661
|
-
goto
|
|
50292
|
+
goto __continue10
|
|
49662
50293
|
end
|
|
49663
50294
|
tearOrProjectile.Position = initialDescription.position
|
|
49664
50295
|
tearOrProjectile.PositionOffset = initialDescription.positionOffset
|
|
@@ -49671,7 +50302,7 @@ function Pause.prototype.stopTearsAndProjectilesFromMoving(self)
|
|
|
49671
50302
|
tearOrProjectile.FallingAccel = initialDescription.fallingAcceleration
|
|
49672
50303
|
end
|
|
49673
50304
|
end
|
|
49674
|
-
::
|
|
50305
|
+
::__continue10::
|
|
49675
50306
|
end
|
|
49676
50307
|
end
|
|
49677
50308
|
function Pause.prototype.isPaused(self)
|
|
@@ -49705,9 +50336,13 @@ function Pause.prototype.pause(self)
|
|
|
49705
50336
|
end
|
|
49706
50337
|
local firstPlayer = Isaac.GetPlayer()
|
|
49707
50338
|
useActiveItemTemp(nil, firstPlayer, CollectibleType.PAUSE)
|
|
50339
|
+
if isRepentancePlus(nil) then
|
|
50340
|
+
sfxManager:Stop(SoundEffect.PAUSE_FREEZE)
|
|
50341
|
+
end
|
|
49708
50342
|
local tstlClassName = getTSTLClassName(nil, self)
|
|
49709
50343
|
assertDefined(nil, tstlClassName, "Failed to get the class name for the pause feature.")
|
|
49710
|
-
local
|
|
50344
|
+
local buttonActionConsole = isRepentancePlus(nil) and ButtonAction.CONSOLE_REPENTANCE_PLUS or ButtonAction.CONSOLE_REPENTANCE
|
|
50345
|
+
local whitelist = __TS__New(ReadonlySet, {ButtonAction.MENU_CONFIRM, buttonActionConsole})
|
|
49711
50346
|
self.disableInputs:disableAllInputsExceptFor(tstlClassName, whitelist)
|
|
49712
50347
|
for ____, player in ipairs(getAllPlayers(nil)) do
|
|
49713
50348
|
player.ControlsEnabled = false
|
|
@@ -55670,8 +56305,7 @@ end
|
|
|
55670
56305
|
function copiedMapIsMap(self)
|
|
55671
56306
|
local keyToLookFor = "abc"
|
|
55672
56307
|
local valueToLookFor = "def"
|
|
55673
|
-
local oldMap = __TS__New(Map)
|
|
55674
|
-
oldMap:set(keyToLookFor, valueToLookFor)
|
|
56308
|
+
local oldMap = __TS__New(Map, {{keyToLookFor, valueToLookFor}})
|
|
55675
56309
|
local newMap = deepCopy(nil, oldMap, SerializationType.NONE, "copiedMapIsMap")
|
|
55676
56310
|
if not isTSTLMap(nil, newMap) then
|
|
55677
56311
|
error("The copied Map was not a Map and has a type of: " .. __TS__TypeOf(newMap))
|
|
@@ -55680,8 +56314,7 @@ end
|
|
|
55680
56314
|
function copiedMapHasValue(self)
|
|
55681
56315
|
local keyToLookFor = "abc"
|
|
55682
56316
|
local valueToLookFor = "def"
|
|
55683
|
-
local oldMap = __TS__New(Map)
|
|
55684
|
-
oldMap:set(keyToLookFor, valueToLookFor)
|
|
56317
|
+
local oldMap = __TS__New(Map, {{keyToLookFor, valueToLookFor}})
|
|
55685
56318
|
local newMap = deepCopy(nil, oldMap, SerializationType.NONE, "copiedMapHasValue")
|
|
55686
56319
|
if not isTSTLMap(nil, newMap) then
|
|
55687
56320
|
error("The copied Map was not a Map and has a type of: " .. __TS__TypeOf(newMap))
|
|
@@ -55696,8 +56329,7 @@ function copiedMapHasValue(self)
|
|
|
55696
56329
|
end
|
|
55697
56330
|
function copiedSetIsSet(self)
|
|
55698
56331
|
local valueToLookFor = "abc"
|
|
55699
|
-
local oldSet = __TS__New(Set)
|
|
55700
|
-
oldSet:add(valueToLookFor)
|
|
56332
|
+
local oldSet = __TS__New(Set, {valueToLookFor})
|
|
55701
56333
|
local newSet = deepCopy(nil, oldSet, SerializationType.NONE, "copiedSetIsSet")
|
|
55702
56334
|
if not isTSTLSet(nil, newSet) then
|
|
55703
56335
|
error("The copied Set was not a Set and has a type of: " .. __TS__TypeOf(newSet))
|
|
@@ -55705,8 +56337,7 @@ function copiedSetIsSet(self)
|
|
|
55705
56337
|
end
|
|
55706
56338
|
function copiedSetHasValue(self)
|
|
55707
56339
|
local valueToLookFor = "abc"
|
|
55708
|
-
local oldSet = __TS__New(Set)
|
|
55709
|
-
oldSet:add(valueToLookFor)
|
|
56340
|
+
local oldSet = __TS__New(Set, {valueToLookFor})
|
|
55710
56341
|
local newSet = deepCopy(nil, oldSet, SerializationType.NONE, "copiedSetHasValue")
|
|
55711
56342
|
if not isTSTLSet(nil, newSet) then
|
|
55712
56343
|
error("The copied Set was not a Set and has a type of: " .. __TS__TypeOf(newSet))
|
|
@@ -55719,11 +56350,9 @@ end
|
|
|
55719
56350
|
function copiedMapHasChildMap(self)
|
|
55720
56351
|
local childMapKey = 123
|
|
55721
56352
|
local childMapValue = 456
|
|
55722
|
-
local oldChildMap = __TS__New(Map)
|
|
55723
|
-
oldChildMap:set(childMapKey, childMapValue)
|
|
56353
|
+
local oldChildMap = __TS__New(Map, {{childMapKey, childMapValue}})
|
|
55724
56354
|
local keyToLookFor = "childMap"
|
|
55725
|
-
local oldMap = __TS__New(Map)
|
|
55726
|
-
oldMap:set(keyToLookFor, oldChildMap)
|
|
56355
|
+
local oldMap = __TS__New(Map, {{keyToLookFor, oldChildMap}})
|
|
55727
56356
|
local newMap = deepCopy(nil, oldMap, SerializationType.NONE, "copiedMapHasChildMap")
|
|
55728
56357
|
if not isTSTLMap(nil, newMap) then
|
|
55729
56358
|
error("The copied Map was not a Map and had a type of: " .. __TS__TypeOf(newMap))
|
|
@@ -55796,8 +56425,7 @@ end
|
|
|
55796
56425
|
function copiedSerializedMapHasStringKey(self)
|
|
55797
56426
|
local mapKey = "123"
|
|
55798
56427
|
local mapValue = 456
|
|
55799
|
-
local oldMap = __TS__New(Map)
|
|
55800
|
-
oldMap:set(mapKey, mapValue)
|
|
56428
|
+
local oldMap = __TS__New(Map, {{mapKey, mapValue}})
|
|
55801
56429
|
local serializedOldMap = deepCopy(nil, oldMap, SerializationType.SERIALIZE, "copiedSerializedMapHasStringKey-serialize")
|
|
55802
56430
|
local newTable = deepCopy(nil, serializedOldMap, SerializationType.DESERIALIZE, "copiedSerializedMapHasStringKey-deserialize")
|
|
55803
56431
|
local newMap = newTable
|
|
@@ -55809,8 +56437,7 @@ end
|
|
|
55809
56437
|
function copiedSerializedMapHasNumberKey(self)
|
|
55810
56438
|
local mapKey = 123
|
|
55811
56439
|
local mapValue = 456
|
|
55812
|
-
local oldMap = __TS__New(Map)
|
|
55813
|
-
oldMap:set(mapKey, mapValue)
|
|
56440
|
+
local oldMap = __TS__New(Map, {{mapKey, mapValue}})
|
|
55814
56441
|
local serializedOldMap = deepCopy(nil, oldMap, SerializationType.SERIALIZE, "copiedSerializedMapHasNumberKey-serialize")
|
|
55815
56442
|
local newTable = deepCopy(nil, serializedOldMap, SerializationType.DESERIALIZE, "copiedSerializedMapHasNumberKey-deserialize")
|
|
55816
56443
|
local newMap = newTable
|
|
@@ -62284,6 +62911,8 @@ local isActionTriggeredOnAnyInput = ____input.isActionTriggeredOnAnyInput
|
|
|
62284
62911
|
local isModifierKeyPressed = ____input.isModifierKeyPressed
|
|
62285
62912
|
local ____run = require("functions.run")
|
|
62286
62913
|
local restart = ____run.restart
|
|
62914
|
+
local ____utils = require("functions.utils")
|
|
62915
|
+
local isRepentancePlus = ____utils.isRepentancePlus
|
|
62287
62916
|
local ____Feature = require("classes.private.Feature")
|
|
62288
62917
|
local Feature = ____Feature.Feature
|
|
62289
62918
|
function checkResetInput(self)
|
|
@@ -62297,7 +62926,8 @@ function checkResetInput(self)
|
|
|
62297
62926
|
if isModifierKeyPressed(nil) then
|
|
62298
62927
|
return
|
|
62299
62928
|
end
|
|
62300
|
-
|
|
62929
|
+
local buttonActionRestart = isRepentancePlus(nil) and ButtonAction.RESTART_REPENTANCE_PLUS or ButtonAction.RESTART_REPENTANCE
|
|
62930
|
+
if isActionTriggeredOnAnyInput(nil, buttonActionRestart) then
|
|
62301
62931
|
restart(nil)
|
|
62302
62932
|
end
|
|
62303
62933
|
end
|