isaacscript-common 13.3.0 → 13.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +12 -5
- package/dist/isaacscript-common.lua +17 -18
- package/dist/src/classes/ModUpgraded.d.ts.map +1 -1
- package/dist/src/classes/ModUpgraded.lua +8 -8
- package/dist/src/functions/log.d.ts +9 -2
- package/dist/src/functions/log.d.ts.map +1 -1
- package/dist/src/functions/log.lua +17 -10
- package/dist/src/indexLua.d.ts +185 -0
- package/dist/src/indexLua.d.ts.map +1 -0
- package/dist/src/indexLua.lua +1314 -0
- package/package.json +2 -2
- package/src/classes/ModUpgraded.ts +14 -7
- package/src/functions/log.ts +23 -16
package/dist/index.d.ts
CHANGED
|
@@ -2977,11 +2977,6 @@ data: GridEntityCustomData
|
|
|
2977
2977
|
*/
|
|
2978
2978
|
export declare function getCustomGridEntityType(gridEntityOrGridIndex: GridEntity | int): GridEntityType | undefined;
|
|
2979
2979
|
|
|
2980
|
-
/**
|
|
2981
|
-
* Helper function to prefix the name of the function and the line number before a debug message.
|
|
2982
|
-
*/
|
|
2983
|
-
export declare function getDebugPrependString(msg: string, numParentFunctions?: number): string;
|
|
2984
|
-
|
|
2985
2980
|
/**
|
|
2986
2981
|
* Helper function to get a set containing all of the global variable names that are contained
|
|
2987
2982
|
* within the Isaac environment by default.
|
|
@@ -3963,6 +3958,18 @@ export declare function getOppositeDoorSlot(doorSlot: DoorSlot): DoorSlot | unde
|
|
|
3963
3958
|
*/
|
|
3964
3959
|
export declare function getOtherPlayers(player: EntityPlayer): EntityPlayer[];
|
|
3965
3960
|
|
|
3961
|
+
/**
|
|
3962
|
+
* Helper function to get the name and the line number of the current calling function.
|
|
3963
|
+
*
|
|
3964
|
+
* For this function to work properly, the "--luadebug" flag must be enabled. Otherwise, it will
|
|
3965
|
+
* always return undefined.
|
|
3966
|
+
*
|
|
3967
|
+
* @param levels Optional. The amount of levels to look backwards in the call stack. Default is 3
|
|
3968
|
+
* (because the first level is this function, the second level is the calling
|
|
3969
|
+
* function, and the third level is the parent of the calling function).
|
|
3970
|
+
*/
|
|
3971
|
+
export declare function getParentFunctionDescription(levels?: number): string | undefined;
|
|
3972
|
+
|
|
3966
3973
|
/**
|
|
3967
3974
|
* Helper function to get the closest value from an array of strings based on partial search text.
|
|
3968
3975
|
* For the purposes of this function, both search text and the array are converted to lowercase
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 13.3.
|
|
3
|
+
isaacscript-common 13.3.2
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -16295,24 +16295,24 @@ return ____exports
|
|
|
16295
16295
|
end,
|
|
16296
16296
|
["src.functions.log"] = function(...)
|
|
16297
16297
|
local ____exports = {}
|
|
16298
|
-
function ____exports.
|
|
16299
|
-
if
|
|
16300
|
-
|
|
16298
|
+
function ____exports.getParentFunctionDescription(self, levels)
|
|
16299
|
+
if levels == nil then
|
|
16300
|
+
levels = 3
|
|
16301
16301
|
end
|
|
16302
16302
|
if debug ~= nil then
|
|
16303
|
-
local debugTable = debug.getinfo(
|
|
16303
|
+
local debugTable = debug.getinfo(levels)
|
|
16304
16304
|
if debugTable ~= nil then
|
|
16305
|
-
return (
|
|
16305
|
+
return (tostring(debugTable.name) .. ":") .. tostring(debugTable.linedefined)
|
|
16306
16306
|
end
|
|
16307
16307
|
end
|
|
16308
16308
|
if SandboxGetParentFunctionDescription ~= nil then
|
|
16309
|
-
|
|
16310
|
-
return (tostring(parentFunctionDescription) .. " - ") .. msg
|
|
16309
|
+
return SandboxGetParentFunctionDescription(levels)
|
|
16311
16310
|
end
|
|
16312
|
-
return
|
|
16311
|
+
return nil
|
|
16313
16312
|
end
|
|
16314
16313
|
function ____exports.log(self, msg)
|
|
16315
|
-
local
|
|
16314
|
+
local parentFunctionDescription = ____exports.getParentFunctionDescription(nil)
|
|
16315
|
+
local debugMsg = parentFunctionDescription == nil and msg or (parentFunctionDescription .. " - ") .. msg
|
|
16316
16316
|
Isaac.DebugString(debugMsg)
|
|
16317
16317
|
end
|
|
16318
16318
|
return ____exports
|
|
@@ -19244,7 +19244,7 @@ local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
|
19244
19244
|
local ____benchmark = require("src.functions.benchmark")
|
|
19245
19245
|
local getTime = ____benchmark.getTime
|
|
19246
19246
|
local ____log = require("src.functions.log")
|
|
19247
|
-
local
|
|
19247
|
+
local getParentFunctionDescription = ____log.getParentFunctionDescription
|
|
19248
19248
|
local ____callbackRegisterFunctions = require("src.objects.callbackRegisterFunctions")
|
|
19249
19249
|
local CALLBACK_REGISTER_FUNCTIONS = ____callbackRegisterFunctions.CALLBACK_REGISTER_FUNCTIONS
|
|
19250
19250
|
____exports.ModUpgraded = __TS__Class()
|
|
@@ -19261,20 +19261,19 @@ function ModUpgraded.prototype.AddCallback(self, modCallback, ...)
|
|
|
19261
19261
|
if self.Debug then
|
|
19262
19262
|
local callback = args[1]
|
|
19263
19263
|
local optionalArg = args[2]
|
|
19264
|
+
local parentFunctionDescription = getParentFunctionDescription(nil)
|
|
19264
19265
|
local callbackName = "ModCallback." .. tostring(ModCallback[modCallback])
|
|
19266
|
+
local signature = parentFunctionDescription == nil and callbackName or (parentFunctionDescription .. " - ") .. callbackName
|
|
19265
19267
|
local function callbackWithLogger(____, ...)
|
|
19266
19268
|
local startTime = getTime(nil)
|
|
19267
|
-
|
|
19269
|
+
Isaac.DebugString(signature .. " - START")
|
|
19268
19270
|
callback(nil, ...)
|
|
19269
19271
|
local endTime = getTime(nil)
|
|
19270
19272
|
local elapsedTime = endTime - startTime
|
|
19271
|
-
if self.TimeThreshold == nil or self.TimeThreshold
|
|
19272
|
-
|
|
19273
|
-
nil,
|
|
19274
|
-
(callbackName .. " - END - time: ") .. tostring(elapsedTime)
|
|
19275
|
-
)
|
|
19273
|
+
if self.TimeThreshold == nil or self.TimeThreshold <= elapsedTime then
|
|
19274
|
+
Isaac.DebugString((signature .. " - END - time: ") .. tostring(elapsedTime))
|
|
19276
19275
|
else
|
|
19277
|
-
|
|
19276
|
+
Isaac.DebugString(signature .. " - END")
|
|
19278
19277
|
end
|
|
19279
19278
|
end
|
|
19280
19279
|
self.Mod:AddCallback(modCallback, callbackWithLogger, optionalArg)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModUpgraded.d.ts","sourceRoot":"","sources":["../../../src/classes/ModUpgraded.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAG/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,kDAAkD,CAAC;AAG9F;;;;;;;GAOG;AACH,qBAAa,WAAY,YAAW,GAAG;IAKrC;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;IAMb,4FAA4F;IAC5F,GAAG,EAAE,GAAG,CAAC;IAET,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,KAAK,GAAG,SAAS,CAAC;gBAErB,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,OAAO,EAAE,aAAa,CAAC,EAAE,KAAK;IAW3D,WAAW,CAAC,CAAC,SAAS,WAAW,EAC/B,WAAW,EAAE,CAAC,EACd,GAAG,IAAI,EAAE,oBAAoB,CAAC,CAAC,CAAC,GAC/B,IAAI;
|
|
1
|
+
{"version":3,"file":"ModUpgraded.d.ts","sourceRoot":"","sources":["../../../src/classes/ModUpgraded.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAG/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,kDAAkD,CAAC;AAG9F;;;;;;;GAOG;AACH,qBAAa,WAAY,YAAW,GAAG;IAKrC;;;OAGG;IACH,IAAI,EAAE,MAAM,CAAC;IAMb,4FAA4F;IAC5F,GAAG,EAAE,GAAG,CAAC;IAET,KAAK,EAAE,OAAO,CAAC;IACf,aAAa,EAAE,KAAK,GAAG,SAAS,CAAC;gBAErB,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,OAAO,EAAE,aAAa,CAAC,EAAE,KAAK;IAW3D,WAAW,CAAC,CAAC,SAAS,WAAW,EAC/B,WAAW,EAAE,CAAC,EACd,GAAG,IAAI,EAAE,oBAAoB,CAAC,CAAC,CAAC,GAC/B,IAAI;IA2CP,OAAO,IAAI,OAAO;IAIlB,QAAQ,IAAI,MAAM;IAIlB;;;OAGG;IACH,cAAc,CAAC,CAAC,SAAS,WAAW,EAClC,WAAW,EAAE,CAAC,EACd,QAAQ,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GACnC,IAAI;IAIP,UAAU,IAAI,IAAI;IAIlB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAS5B,iBAAiB,CAAC,CAAC,SAAS,iBAAiB,EAC3C,iBAAiB,EAAE,CAAC,EACpB,GAAG,IAAI,EAAE,0BAA0B,CAAC,CAAC,CAAC,GACrC,IAAI;CAKR"}
|
|
@@ -7,7 +7,7 @@ local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
|
7
7
|
local ____benchmark = require("src.functions.benchmark")
|
|
8
8
|
local getTime = ____benchmark.getTime
|
|
9
9
|
local ____log = require("src.functions.log")
|
|
10
|
-
local
|
|
10
|
+
local getParentFunctionDescription = ____log.getParentFunctionDescription
|
|
11
11
|
local ____callbackRegisterFunctions = require("src.objects.callbackRegisterFunctions")
|
|
12
12
|
local CALLBACK_REGISTER_FUNCTIONS = ____callbackRegisterFunctions.CALLBACK_REGISTER_FUNCTIONS
|
|
13
13
|
--- `isaacscript-common` has many custom callbacks that you can use in your mods. Instead of
|
|
@@ -30,20 +30,20 @@ function ModUpgraded.prototype.AddCallback(self, modCallback, ...)
|
|
|
30
30
|
if self.Debug then
|
|
31
31
|
local callback = args[1]
|
|
32
32
|
local optionalArg = args[2]
|
|
33
|
+
local parentFunctionDescription = getParentFunctionDescription(nil)
|
|
33
34
|
local callbackName = "ModCallback." .. tostring(ModCallback[modCallback])
|
|
35
|
+
local signature = parentFunctionDescription == nil and callbackName or (parentFunctionDescription .. " - ") .. callbackName
|
|
36
|
+
--- We don't use the "log" helper function since it will always show the same "unknown" prefix.
|
|
34
37
|
local function callbackWithLogger(____, ...)
|
|
35
38
|
local startTime = getTime(nil)
|
|
36
|
-
|
|
39
|
+
Isaac.DebugString(signature .. " - START")
|
|
37
40
|
callback(nil, ...)
|
|
38
41
|
local endTime = getTime(nil)
|
|
39
42
|
local elapsedTime = endTime - startTime
|
|
40
|
-
if self.TimeThreshold == nil or self.TimeThreshold
|
|
41
|
-
|
|
42
|
-
nil,
|
|
43
|
-
(callbackName .. " - END - time: ") .. tostring(elapsedTime)
|
|
44
|
-
)
|
|
43
|
+
if self.TimeThreshold == nil or self.TimeThreshold <= elapsedTime then
|
|
44
|
+
Isaac.DebugString((signature .. " - END - time: ") .. tostring(elapsedTime))
|
|
45
45
|
else
|
|
46
|
-
|
|
46
|
+
Isaac.DebugString(signature .. " - END")
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
49
|
self.Mod:AddCallback(modCallback, callbackWithLogger, optionalArg)
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Helper function to
|
|
2
|
+
* Helper function to get the name and the line number of the current calling function.
|
|
3
|
+
*
|
|
4
|
+
* For this function to work properly, the "--luadebug" flag must be enabled. Otherwise, it will
|
|
5
|
+
* always return undefined.
|
|
6
|
+
*
|
|
7
|
+
* @param levels Optional. The amount of levels to look backwards in the call stack. Default is 3
|
|
8
|
+
* (because the first level is this function, the second level is the calling
|
|
9
|
+
* function, and the third level is the parent of the calling function).
|
|
3
10
|
*/
|
|
4
|
-
export declare function
|
|
11
|
+
export declare function getParentFunctionDescription(levels?: number): string | undefined;
|
|
5
12
|
/**
|
|
6
13
|
* Helper function to avoid typing out `Isaac.DebugString()`.
|
|
7
14
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../../src/functions/log.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../../src/functions/log.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,wBAAgB,4BAA4B,CAK1C,MAAM,SAAI,GACT,MAAM,GAAG,SAAS,CAiBpB;AAED;;;;;GAKG;AACH,wBAAgB,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAOrC"}
|
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
local ____exports = {}
|
|
2
|
-
--- Helper function to
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
--- Helper function to get the name and the line number of the current calling function.
|
|
3
|
+
--
|
|
4
|
+
-- For this function to work properly, the "--luadebug" flag must be enabled. Otherwise, it will
|
|
5
|
+
-- always return undefined.
|
|
6
|
+
--
|
|
7
|
+
-- @param levels Optional. The amount of levels to look backwards in the call stack. Default is 3
|
|
8
|
+
-- (because the first level is this function, the second level is the calling
|
|
9
|
+
-- function, and the third level is the parent of the calling function).
|
|
10
|
+
function ____exports.getParentFunctionDescription(self, levels)
|
|
11
|
+
if levels == nil then
|
|
12
|
+
levels = 3
|
|
6
13
|
end
|
|
7
14
|
if debug ~= nil then
|
|
8
|
-
local debugTable = debug.getinfo(
|
|
15
|
+
local debugTable = debug.getinfo(levels)
|
|
9
16
|
if debugTable ~= nil then
|
|
10
|
-
return (
|
|
17
|
+
return (tostring(debugTable.name) .. ":") .. tostring(debugTable.linedefined)
|
|
11
18
|
end
|
|
12
19
|
end
|
|
13
20
|
if SandboxGetParentFunctionDescription ~= nil then
|
|
14
|
-
|
|
15
|
-
return (tostring(parentFunctionDescription) .. " - ") .. msg
|
|
21
|
+
return SandboxGetParentFunctionDescription(levels)
|
|
16
22
|
end
|
|
17
|
-
return
|
|
23
|
+
return nil
|
|
18
24
|
end
|
|
19
25
|
--- Helper function to avoid typing out `Isaac.DebugString()`.
|
|
20
26
|
--
|
|
21
27
|
-- If you have the "--luadebug" launch flag turned on or the Racing+ sandbox enabled, then this
|
|
22
28
|
-- function will also prepend the function name and the line number before the string.
|
|
23
29
|
function ____exports.log(self, msg)
|
|
24
|
-
local
|
|
30
|
+
local parentFunctionDescription = ____exports.getParentFunctionDescription(nil)
|
|
31
|
+
local debugMsg = parentFunctionDescription == nil and msg or (parentFunctionDescription .. " - ") .. msg
|
|
25
32
|
Isaac.DebugString(debugMsg)
|
|
26
33
|
end
|
|
27
34
|
return ____exports
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
export * from "./classes/DefaultMap";
|
|
2
|
+
export * from "./classes/ModUpgraded";
|
|
3
|
+
export * from "./core/cachedClasses";
|
|
4
|
+
export * from "./core/constants";
|
|
5
|
+
export * from "./core/constantsFirstLast";
|
|
6
|
+
export * from "./core/upgradeMod";
|
|
7
|
+
export * from "./enums/AmbushType";
|
|
8
|
+
export * from "./enums/CornerType";
|
|
9
|
+
export * from "./enums/HealthType";
|
|
10
|
+
export * from "./enums/ModCallbackCustom";
|
|
11
|
+
export * from "./enums/PocketItemType";
|
|
12
|
+
export * from "./enums/RockAltType";
|
|
13
|
+
export * from "./enums/SaveDataKey";
|
|
14
|
+
export * from "./enums/SerializationType";
|
|
15
|
+
export * from "./enums/SlotDestructionType";
|
|
16
|
+
export * from "./enums/StatType";
|
|
17
|
+
export * from "./features/characterHealthConversion";
|
|
18
|
+
export * from "./features/characterStats";
|
|
19
|
+
export * from "./features/collectibleItemPoolType";
|
|
20
|
+
export * from "./features/customDoor";
|
|
21
|
+
export * from "./features/customGridEntity";
|
|
22
|
+
export * from "./features/customPickup";
|
|
23
|
+
export * from "./features/customStage/exports";
|
|
24
|
+
export * from "./features/customTrapdoor/exports";
|
|
25
|
+
export * from "./features/debugDisplay/exports";
|
|
26
|
+
export * from "./features/deployJSONRoom";
|
|
27
|
+
export * from "./features/disableAllSound";
|
|
28
|
+
export * from "./features/disableInputs";
|
|
29
|
+
export * from "./features/extraConsoleCommands/exports";
|
|
30
|
+
export * from "./features/fadeInRemover";
|
|
31
|
+
export * from "./features/fastReset";
|
|
32
|
+
export * from "./features/firstLast";
|
|
33
|
+
export * from "./features/forgottenSwitch";
|
|
34
|
+
export * from "./features/pause";
|
|
35
|
+
export * from "./features/persistentEntities";
|
|
36
|
+
export * from "./features/pickupIndex";
|
|
37
|
+
export * from "./features/playerInventory";
|
|
38
|
+
export * from "./features/ponyDetection";
|
|
39
|
+
export * from "./features/preventChildEntities";
|
|
40
|
+
export * from "./features/preventCollectibleRotation";
|
|
41
|
+
export * from "./features/roomClearFrame";
|
|
42
|
+
export * from "./features/roomHistory";
|
|
43
|
+
export * from "./features/runInNFrames";
|
|
44
|
+
export * from "./features/saveDataManager/exports";
|
|
45
|
+
export * from "./features/setHotkey";
|
|
46
|
+
export * from "./features/sirenHelpers";
|
|
47
|
+
export * from "./features/stageHistory";
|
|
48
|
+
export * from "./features/taintedLazarusPlayers";
|
|
49
|
+
export * from "./functions/ambush";
|
|
50
|
+
export * from "./functions/array";
|
|
51
|
+
export * from "./functions/arrayLua";
|
|
52
|
+
export * from "./functions/benchmark";
|
|
53
|
+
export * from "./functions/bitSet128";
|
|
54
|
+
export * from "./functions/bitwise";
|
|
55
|
+
export * from "./functions/bombs";
|
|
56
|
+
export * from "./functions/bosses";
|
|
57
|
+
export * from "./functions/cards";
|
|
58
|
+
export * from "./functions/challenges";
|
|
59
|
+
export * from "./functions/characters";
|
|
60
|
+
export * from "./functions/charge";
|
|
61
|
+
export * from "./functions/chargeBar";
|
|
62
|
+
export * from "./functions/collectibleCacheFlag";
|
|
63
|
+
export * from "./functions/collectibles";
|
|
64
|
+
export * from "./functions/collectibleSet";
|
|
65
|
+
export * from "./functions/collectibleTag";
|
|
66
|
+
export * from "./functions/color";
|
|
67
|
+
export * from "./functions/curses";
|
|
68
|
+
export * from "./functions/debugFunctions";
|
|
69
|
+
export * from "./functions/deepCopy";
|
|
70
|
+
export * from "./functions/deepCopyTests";
|
|
71
|
+
export * from "./functions/dimensions";
|
|
72
|
+
export * from "./functions/direction";
|
|
73
|
+
export * from "./functions/doors";
|
|
74
|
+
export * from "./functions/easing";
|
|
75
|
+
export * from "./functions/eden";
|
|
76
|
+
export * from "./functions/effects";
|
|
77
|
+
export * from "./functions/emptyRoom";
|
|
78
|
+
export * from "./functions/entities";
|
|
79
|
+
export * from "./functions/entitiesSpecific";
|
|
80
|
+
export * from "./functions/entityTypes";
|
|
81
|
+
export * from "./functions/enums";
|
|
82
|
+
export * from "./functions/familiars";
|
|
83
|
+
export * from "./functions/flag";
|
|
84
|
+
export * from "./functions/flying";
|
|
85
|
+
export * from "./functions/globals";
|
|
86
|
+
export * from "./functions/gridEntities";
|
|
87
|
+
export * from "./functions/gridEntitiesSpecific";
|
|
88
|
+
export * from "./functions/gridIndex";
|
|
89
|
+
export * from "./functions/hex";
|
|
90
|
+
export * from "./functions/initArray";
|
|
91
|
+
export * from "./functions/input";
|
|
92
|
+
export * from "./functions/isaacAPIClass";
|
|
93
|
+
export * from "./functions/itemPool";
|
|
94
|
+
export * from "./functions/jsonHelpers";
|
|
95
|
+
export * from "./functions/jsonRoom";
|
|
96
|
+
export * from "./functions/kColor";
|
|
97
|
+
export * from "./functions/language";
|
|
98
|
+
export * from "./functions/level";
|
|
99
|
+
export * from "./functions/levelGrid";
|
|
100
|
+
export * from "./functions/log";
|
|
101
|
+
export * from "./functions/logEntities";
|
|
102
|
+
export * from "./functions/logMisc";
|
|
103
|
+
export * from "./functions/map";
|
|
104
|
+
export * from "./functions/math";
|
|
105
|
+
export * from "./functions/mergeTests";
|
|
106
|
+
export * from "./functions/minimap";
|
|
107
|
+
export * from "./functions/nextStage";
|
|
108
|
+
export * from "./functions/npcs";
|
|
109
|
+
export * from "./functions/pickups";
|
|
110
|
+
export * from "./functions/pickupsSpecific";
|
|
111
|
+
export * from "./functions/pickupVariants";
|
|
112
|
+
export * from "./functions/pills";
|
|
113
|
+
export * from "./functions/playerCenter";
|
|
114
|
+
export * from "./functions/playerDataStructures";
|
|
115
|
+
export * from "./functions/playerHealth";
|
|
116
|
+
export * from "./functions/playerIndex";
|
|
117
|
+
export * from "./functions/players";
|
|
118
|
+
export * from "./functions/playerStats";
|
|
119
|
+
export * from "./functions/pocketItems";
|
|
120
|
+
export * from "./functions/positionVelocity";
|
|
121
|
+
export * from "./functions/pressurePlate";
|
|
122
|
+
export * from "./functions/projectiles";
|
|
123
|
+
export * from "./functions/random";
|
|
124
|
+
export * from "./functions/reorderedCallbacks";
|
|
125
|
+
export * from "./functions/revive";
|
|
126
|
+
export * from "./functions/rng";
|
|
127
|
+
export * from "./functions/rockAlt";
|
|
128
|
+
export * from "./functions/roomData";
|
|
129
|
+
export * from "./functions/roomGrid";
|
|
130
|
+
export * from "./functions/rooms";
|
|
131
|
+
export * from "./functions/roomShape";
|
|
132
|
+
export * from "./functions/roomShapeWalls";
|
|
133
|
+
export * from "./functions/roomTransition";
|
|
134
|
+
export * from "./functions/run";
|
|
135
|
+
export * from "./functions/saveFile";
|
|
136
|
+
export * from "./functions/seeds";
|
|
137
|
+
export * from "./functions/serialization";
|
|
138
|
+
export * from "./functions/set";
|
|
139
|
+
export * from "./functions/sound";
|
|
140
|
+
export * from "./functions/spawnCollectible";
|
|
141
|
+
export * from "./functions/sprites";
|
|
142
|
+
export * from "./functions/stage";
|
|
143
|
+
export * from "./functions/string";
|
|
144
|
+
export * from "./functions/table";
|
|
145
|
+
export * from "./functions/tears";
|
|
146
|
+
export * from "./functions/transformations";
|
|
147
|
+
export * from "./functions/trinketCacheFlag";
|
|
148
|
+
export * from "./functions/trinketGive";
|
|
149
|
+
export * from "./functions/trinkets";
|
|
150
|
+
export * from "./functions/trinketSet";
|
|
151
|
+
export * from "./functions/tstlClass";
|
|
152
|
+
export * from "./functions/types";
|
|
153
|
+
export * from "./functions/ui";
|
|
154
|
+
export * from "./functions/utils";
|
|
155
|
+
export * from "./functions/vector";
|
|
156
|
+
export * from "./functions/weighted";
|
|
157
|
+
export * from "./interfaces/ChargeBarSprites";
|
|
158
|
+
export * from "./interfaces/Corner";
|
|
159
|
+
export * from "./interfaces/CustomStageTSConfig";
|
|
160
|
+
export * from "./interfaces/GridEntityCustomData";
|
|
161
|
+
export * from "./interfaces/JSONRoomsFile";
|
|
162
|
+
export * from "./interfaces/PlayerHealth";
|
|
163
|
+
export * from "./interfaces/PocketItemDescription";
|
|
164
|
+
export * from "./interfaces/RoomDescription";
|
|
165
|
+
export * from "./interfaces/SaveData";
|
|
166
|
+
export * from "./interfaces/StatTypeType";
|
|
167
|
+
export * from "./interfaces/TrinketSituation";
|
|
168
|
+
export * from "./maps/cardNameToTypeMap";
|
|
169
|
+
export * from "./maps/characterNameToTypeMap";
|
|
170
|
+
export * from "./maps/pillNameToEffectMap";
|
|
171
|
+
export * from "./maps/roomNameToTypeMap";
|
|
172
|
+
export * from "./objects/colors";
|
|
173
|
+
export * from "./objects/kColors";
|
|
174
|
+
export * from "./types/AnyEntity";
|
|
175
|
+
export * from "./types/AnyGridEntity";
|
|
176
|
+
export * from "./types/CollectibleIndex";
|
|
177
|
+
export * from "./types/Immutable";
|
|
178
|
+
export * from "./types/PickingUpItem";
|
|
179
|
+
export * from "./types/PickupIndex";
|
|
180
|
+
export * from "./types/PlayerIndex";
|
|
181
|
+
export * from "./types/PossibleStatType";
|
|
182
|
+
export * from "./types/TSTLClass";
|
|
183
|
+
export * from "./types/WeightedArray";
|
|
184
|
+
export * from "isaac-typescript-definitions";
|
|
185
|
+
//# sourceMappingURL=indexLua.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"indexLua.d.ts","sourceRoot":"","sources":["../../src/indexLua.ts"],"names":[],"mappings":"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"}
|