isaacscript-common 30.4.6 → 30.5.1
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.rollup.d.ts +17 -2
- package/dist/isaacscript-common.lua +14 -12
- package/dist/src/functions/array.d.ts.map +1 -1
- package/dist/src/functions/array.lua +9 -7
- package/dist/src/functions/players.d.ts +17 -2
- package/dist/src/functions/players.d.ts.map +1 -1
- package/dist/src/functions/players.lua +15 -4
- package/package.json +1 -1
- package/src/functions/array.ts +5 -3
- package/src/functions/players.ts +26 -3
- package/dist/src/indexLua.d.ts +0 -186
- package/dist/src/indexLua.d.ts.map +0 -1
- package/dist/src/indexLua.lua +0 -1114
package/dist/index.rollup.d.ts
CHANGED
|
@@ -1002,9 +1002,24 @@ export declare type AnyGridEntity = GridEntity | GridEntityDoor | GridEntityPit
|
|
|
1002
1002
|
*/
|
|
1003
1003
|
export declare function anyPlayerCloserThan(position: Vector, distance: float): boolean;
|
|
1004
1004
|
|
|
1005
|
-
|
|
1005
|
+
/**
|
|
1006
|
+
* Helper function to check to see if any player has a particular collectible.
|
|
1007
|
+
*
|
|
1008
|
+
* @param collectibleType The collectible type to check for.
|
|
1009
|
+
* @param ignoreModifiers If set to true, only counts collectibles the player actually owns and
|
|
1010
|
+
* ignores effects granted by items like Zodiac, 3 Dollar Bill and Lemegeton.
|
|
1011
|
+
* Default is false.
|
|
1012
|
+
*/
|
|
1013
|
+
export declare function anyPlayerHasCollectible(collectibleType: CollectibleType, ignoreModifiers?: boolean): boolean;
|
|
1006
1014
|
|
|
1007
|
-
|
|
1015
|
+
/**
|
|
1016
|
+
* Helper function to check to see if any player has a particular trinket.
|
|
1017
|
+
*
|
|
1018
|
+
* @param trinketType The trinket type to check for.
|
|
1019
|
+
* @param ignoreModifiers If set to true, only counts trinkets the player actually holds and ignores
|
|
1020
|
+
* effects granted by other items. Default is false.
|
|
1021
|
+
*/
|
|
1022
|
+
export declare function anyPlayerHasTrinket(trinketType: TrinketType, ignoreModifiers?: boolean): boolean;
|
|
1008
1023
|
|
|
1009
1024
|
/**
|
|
1010
1025
|
* Helper function to determine if the given character is present.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 30.
|
|
3
|
+
isaacscript-common 30.5.1
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -16858,13 +16858,15 @@ function ____exports.getRandomArrayElement(self, array, seedOrRNG, exceptions)
|
|
|
16858
16858
|
if #array == 0 then
|
|
16859
16859
|
error("Failed to get a random array element since the provided array is empty.")
|
|
16860
16860
|
end
|
|
16861
|
-
|
|
16862
|
-
|
|
16863
|
-
|
|
16864
|
-
|
|
16865
|
-
|
|
16866
|
-
|
|
16867
|
-
|
|
16861
|
+
if #exceptions > 0 then
|
|
16862
|
+
array = ____exports.arrayRemove(
|
|
16863
|
+
nil,
|
|
16864
|
+
array,
|
|
16865
|
+
table.unpack(exceptions)
|
|
16866
|
+
)
|
|
16867
|
+
end
|
|
16868
|
+
local randomIndex = ____exports.getRandomArrayIndex(nil, array, seedOrRNG)
|
|
16869
|
+
local randomElement = array[randomIndex + 1]
|
|
16868
16870
|
if randomElement == nil then
|
|
16869
16871
|
error(("Failed to get a random array element since the random index of " .. tostring(randomIndex)) .. " was not valid.")
|
|
16870
16872
|
end
|
|
@@ -21644,18 +21646,18 @@ function ____exports.addTrinketCostume(self, player, trinketType)
|
|
|
21644
21646
|
end
|
|
21645
21647
|
player:AddCostume(itemConfigTrinket, false)
|
|
21646
21648
|
end
|
|
21647
|
-
function ____exports.anyPlayerHasCollectible(self, collectibleType)
|
|
21649
|
+
function ____exports.anyPlayerHasCollectible(self, collectibleType, ignoreModifiers)
|
|
21648
21650
|
local players = getAllPlayers(nil)
|
|
21649
21651
|
return __TS__ArraySome(
|
|
21650
21652
|
players,
|
|
21651
|
-
function(____, player) return player:HasCollectible(collectibleType) end
|
|
21653
|
+
function(____, player) return player:HasCollectible(collectibleType, ignoreModifiers) end
|
|
21652
21654
|
)
|
|
21653
21655
|
end
|
|
21654
|
-
function ____exports.anyPlayerHasTrinket(self, trinketType)
|
|
21656
|
+
function ____exports.anyPlayerHasTrinket(self, trinketType, ignoreModifiers)
|
|
21655
21657
|
local players = getAllPlayers(nil)
|
|
21656
21658
|
return __TS__ArraySome(
|
|
21657
21659
|
players,
|
|
21658
|
-
function(____, player) return player:HasTrinket(trinketType) end
|
|
21660
|
+
function(____, player) return player:HasTrinket(trinketType, ignoreModifiers) end
|
|
21659
21661
|
)
|
|
21660
21662
|
end
|
|
21661
21663
|
function ____exports.anyPlayerIs(self, ...)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../../src/functions/array.ts"],"names":[],"mappings":";;;AAMA;;;GAGG;AACH,wBAAgB,WAAW,CAAC,CAAC,EAC3B,MAAM,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EAC1B,MAAM,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,GACzB,OAAO,CAST;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,WAAW,CAAC,CAAC,EAC3B,aAAa,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EACjC,GAAG,gBAAgB,EAAE,CAAC,EAAE,GACvB,CAAC,EAAE,CAIL;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAC9B,aAAa,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EACjC,GAAG,gBAAgB,EAAE,CAAC,EAAE,GACvB,CAAC,EAAE,CAIL;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,EACrC,KAAK,EAAE,CAAC,EAAE,EACV,GAAG,gBAAgB,EAAE,CAAC,EAAE,GACvB,OAAO,CAcT;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,kBAAkB,CAAC,CAAC,EAClC,KAAK,EAAE,CAAC,EAAE,EACV,GAAG,gBAAgB,EAAE,CAAC,EAAE,GACvB,OAAO,CAWT;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,CAAC,EAChC,aAAa,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EACjC,GAAG,eAAe,EAAE,GAAG,EAAE,GACxB,CAAC,EAAE,CAWL;AAED;;;;;;;;GAQG;AACH,wBAAgB,uBAAuB,CAAC,CAAC,EACvC,KAAK,EAAE,CAAC,EAAE,EACV,GAAG,eAAe,EAAE,GAAG,EAAE,GACxB,OAAO,CAeT;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,MAAM,CAQtD;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAAE,GAAG,MAAM,EAAE,KAAK,CAAC,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAS1E;AAED;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,CAAC,EACzB,QAAQ,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EAC5B,WAAW,CAAC,EAAE,GAAG,GAChB,CAAC,EAAE,CAcL;AAED,0EAA0E;AAC1E,wBAAgB,UAAU,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,IAAI,CAE9C;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAgB,oBAAoB,CAAC,CAAC,EACpC,KAAK,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EACzB,iBAAiB,EAAE,OAAO,EAC1B,GAAG,CAAC,EAAE,GAAG,EACT,GAAG,CAAC,EAAE,GAAG,GACR,aAAa,CAAC,SAAS,CAAC,EAAE,CAAC,CA0C7B;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,GAAG,GAAG,EAAE,CAEnE;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,GAAG,CAAC,GAAG,SAAS,CAE3D;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,EACrC,KAAK,EAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAE,EACzB,SAAS,GAAE,IAAI,GAAG,GAAqB,EACvC,UAAU,GAAE,CAAC,EAAE,GAAG,SAAS,CAAC,EAAO,GAClC,CAAC,
|
|
1
|
+
{"version":3,"file":"array.d.ts","sourceRoot":"","sources":["../../../src/functions/array.ts"],"names":[],"mappings":"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"}
|
|
@@ -368,13 +368,15 @@ function ____exports.getRandomArrayElement(self, array, seedOrRNG, exceptions)
|
|
|
368
368
|
if #array == 0 then
|
|
369
369
|
error("Failed to get a random array element since the provided array is empty.")
|
|
370
370
|
end
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
371
|
+
if #exceptions > 0 then
|
|
372
|
+
array = ____exports.arrayRemove(
|
|
373
|
+
nil,
|
|
374
|
+
array,
|
|
375
|
+
table.unpack(exceptions)
|
|
376
|
+
)
|
|
377
|
+
end
|
|
378
|
+
local randomIndex = ____exports.getRandomArrayIndex(nil, array, seedOrRNG)
|
|
379
|
+
local randomElement = array[randomIndex + 1]
|
|
378
380
|
if randomElement == nil then
|
|
379
381
|
error(("Failed to get a random array element since the random index of " .. tostring(randomIndex)) .. " was not valid.")
|
|
380
382
|
end
|
|
@@ -8,8 +8,23 @@ import { ActiveSlot, CollectibleType, ControllerIndex, PlayerForm, PlayerType, T
|
|
|
8
8
|
export declare function addCollectible(player: EntityPlayer, ...collectibleTypes: CollectibleType[]): void;
|
|
9
9
|
export declare function addCollectibleCostume(player: EntityPlayer, collectibleType: CollectibleType): void;
|
|
10
10
|
export declare function addTrinketCostume(player: EntityPlayer, trinketType: TrinketType): void;
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Helper function to check to see if any player has a particular collectible.
|
|
13
|
+
*
|
|
14
|
+
* @param collectibleType The collectible type to check for.
|
|
15
|
+
* @param ignoreModifiers If set to true, only counts collectibles the player actually owns and
|
|
16
|
+
* ignores effects granted by items like Zodiac, 3 Dollar Bill and Lemegeton.
|
|
17
|
+
* Default is false.
|
|
18
|
+
*/
|
|
19
|
+
export declare function anyPlayerHasCollectible(collectibleType: CollectibleType, ignoreModifiers?: boolean): boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Helper function to check to see if any player has a particular trinket.
|
|
22
|
+
*
|
|
23
|
+
* @param trinketType The trinket type to check for.
|
|
24
|
+
* @param ignoreModifiers If set to true, only counts trinkets the player actually holds and ignores
|
|
25
|
+
* effects granted by other items. Default is false.
|
|
26
|
+
*/
|
|
27
|
+
export declare function anyPlayerHasTrinket(trinketType: TrinketType, ignoreModifiers?: boolean): boolean;
|
|
13
28
|
/**
|
|
14
29
|
* Helper function to determine if the given character is present.
|
|
15
30
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"players.d.ts","sourceRoot":"","sources":["../../../src/functions/players.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EAEV,eAAe,EACf,eAAe,EAEf,UAAU,EACV,UAAU,EACV,WAAW,EACZ,MAAM,8BAA8B,CAAC;AAkBtC;;;;;GAKG;AACH,wBAAgB,cAAc,CAC5B,MAAM,EAAE,YAAY,EACpB,GAAG,gBAAgB,EAAE,eAAe,EAAE,GACrC,IAAI,CAIN;AAED,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,YAAY,EACpB,eAAe,EAAE,eAAe,GAC/B,IAAI,CAON;AAED,wBAAgB,iBAAiB,CAC/B,MAAM,EAAE,YAAY,EACpB,WAAW,EAAE,WAAW,GACvB,IAAI,CAON;AAED,wBAAgB,uBAAuB,CACrC,eAAe,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"players.d.ts","sourceRoot":"","sources":["../../../src/functions/players.ts"],"names":[],"mappings":"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"}
|
|
@@ -88,18 +88,29 @@ function ____exports.addTrinketCostume(self, player, trinketType)
|
|
|
88
88
|
end
|
|
89
89
|
player:AddCostume(itemConfigTrinket, false)
|
|
90
90
|
end
|
|
91
|
-
function
|
|
91
|
+
--- Helper function to check to see if any player has a particular collectible.
|
|
92
|
+
--
|
|
93
|
+
-- @param collectibleType The collectible type to check for.
|
|
94
|
+
-- @param ignoreModifiers If set to true, only counts collectibles the player actually owns and
|
|
95
|
+
-- ignores effects granted by items like Zodiac, 3 Dollar Bill and Lemegeton.
|
|
96
|
+
-- Default is false.
|
|
97
|
+
function ____exports.anyPlayerHasCollectible(self, collectibleType, ignoreModifiers)
|
|
92
98
|
local players = getAllPlayers(nil)
|
|
93
99
|
return __TS__ArraySome(
|
|
94
100
|
players,
|
|
95
|
-
function(____, player) return player:HasCollectible(collectibleType) end
|
|
101
|
+
function(____, player) return player:HasCollectible(collectibleType, ignoreModifiers) end
|
|
96
102
|
)
|
|
97
103
|
end
|
|
98
|
-
function
|
|
104
|
+
--- Helper function to check to see if any player has a particular trinket.
|
|
105
|
+
--
|
|
106
|
+
-- @param trinketType The trinket type to check for.
|
|
107
|
+
-- @param ignoreModifiers If set to true, only counts trinkets the player actually holds and ignores
|
|
108
|
+
-- effects granted by other items. Default is false.
|
|
109
|
+
function ____exports.anyPlayerHasTrinket(self, trinketType, ignoreModifiers)
|
|
99
110
|
local players = getAllPlayers(nil)
|
|
100
111
|
return __TS__ArraySome(
|
|
101
112
|
players,
|
|
102
|
-
function(____, player) return player:HasTrinket(trinketType) end
|
|
113
|
+
function(____, player) return player:HasTrinket(trinketType, ignoreModifiers) end
|
|
103
114
|
)
|
|
104
115
|
end
|
|
105
116
|
--- Helper function to determine if the given character is present.
|
package/package.json
CHANGED
package/src/functions/array.ts
CHANGED
|
@@ -342,9 +342,11 @@ export function getRandomArrayElement<T>(
|
|
|
342
342
|
);
|
|
343
343
|
}
|
|
344
344
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
345
|
+
if (exceptions.length > 0) {
|
|
346
|
+
array = arrayRemove(array, ...exceptions);
|
|
347
|
+
}
|
|
348
|
+
const randomIndex = getRandomArrayIndex(array, seedOrRNG);
|
|
349
|
+
const randomElement = array[randomIndex];
|
|
348
350
|
if (randomElement === undefined) {
|
|
349
351
|
error(
|
|
350
352
|
`Failed to get a random array element since the random index of ${randomIndex} was not valid.`,
|
package/src/functions/players.ts
CHANGED
|
@@ -64,16 +64,39 @@ export function addTrinketCostume(
|
|
|
64
64
|
player.AddCostume(itemConfigTrinket, false);
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
/**
|
|
68
|
+
* Helper function to check to see if any player has a particular collectible.
|
|
69
|
+
*
|
|
70
|
+
* @param collectibleType The collectible type to check for.
|
|
71
|
+
* @param ignoreModifiers If set to true, only counts collectibles the player actually owns and
|
|
72
|
+
* ignores effects granted by items like Zodiac, 3 Dollar Bill and Lemegeton.
|
|
73
|
+
* Default is false.
|
|
74
|
+
*/
|
|
67
75
|
export function anyPlayerHasCollectible(
|
|
68
76
|
collectibleType: CollectibleType,
|
|
77
|
+
ignoreModifiers?: boolean,
|
|
69
78
|
): boolean {
|
|
70
79
|
const players = getAllPlayers();
|
|
71
|
-
return players.some((player) =>
|
|
80
|
+
return players.some((player) =>
|
|
81
|
+
player.HasCollectible(collectibleType, ignoreModifiers),
|
|
82
|
+
);
|
|
72
83
|
}
|
|
73
84
|
|
|
74
|
-
|
|
85
|
+
/**
|
|
86
|
+
* Helper function to check to see if any player has a particular trinket.
|
|
87
|
+
*
|
|
88
|
+
* @param trinketType The trinket type to check for.
|
|
89
|
+
* @param ignoreModifiers If set to true, only counts trinkets the player actually holds and ignores
|
|
90
|
+
* effects granted by other items. Default is false.
|
|
91
|
+
*/
|
|
92
|
+
export function anyPlayerHasTrinket(
|
|
93
|
+
trinketType: TrinketType,
|
|
94
|
+
ignoreModifiers?: boolean,
|
|
95
|
+
): boolean {
|
|
75
96
|
const players = getAllPlayers();
|
|
76
|
-
return players.some((player) =>
|
|
97
|
+
return players.some((player) =>
|
|
98
|
+
player.HasTrinket(trinketType, ignoreModifiers),
|
|
99
|
+
);
|
|
77
100
|
}
|
|
78
101
|
|
|
79
102
|
/**
|
package/dist/src/indexLua.d.ts
DELETED
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
export * from "./classes/DefaultMap";
|
|
2
|
-
export * from "./classes/ModFeature";
|
|
3
|
-
export * from "./classes/ModUpgraded";
|
|
4
|
-
export * from "./core/cachedClasses";
|
|
5
|
-
export * from "./core/constants";
|
|
6
|
-
export * from "./core/constantsFirstLast";
|
|
7
|
-
export * from "./core/upgradeMod";
|
|
8
|
-
export * from "./enums/AmbushType";
|
|
9
|
-
export * from "./enums/CornerType";
|
|
10
|
-
export * from "./enums/HealthType";
|
|
11
|
-
export * from "./enums/ISCFeature";
|
|
12
|
-
export * from "./enums/LadderSubTypeCustom";
|
|
13
|
-
export * from "./enums/ModCallbackCustom";
|
|
14
|
-
export * from "./enums/MysteriousPaperEffect";
|
|
15
|
-
export * from "./enums/PocketItemType";
|
|
16
|
-
export * from "./enums/RockAltType";
|
|
17
|
-
export * from "./enums/SaveDataKey";
|
|
18
|
-
export * from "./enums/SerializationType";
|
|
19
|
-
export * from "./enums/SlotDestructionType";
|
|
20
|
-
export * from "./enums/StatType";
|
|
21
|
-
export * from "./functions/ambush";
|
|
22
|
-
export * from "./functions/array";
|
|
23
|
-
export * from "./functions/arrayLua";
|
|
24
|
-
export * from "./functions/benchmark";
|
|
25
|
-
export * from "./functions/bitSet128";
|
|
26
|
-
export * from "./functions/bitwise";
|
|
27
|
-
export * from "./functions/bombs";
|
|
28
|
-
export * from "./functions/bosses";
|
|
29
|
-
export * from "./functions/cards";
|
|
30
|
-
export * from "./functions/challenges";
|
|
31
|
-
export * from "./functions/characters";
|
|
32
|
-
export * from "./functions/charge";
|
|
33
|
-
export * from "./functions/chargeBar";
|
|
34
|
-
export * from "./functions/collectibles";
|
|
35
|
-
export * from "./functions/collectibleTag";
|
|
36
|
-
export * from "./functions/color";
|
|
37
|
-
export * from "./functions/console";
|
|
38
|
-
export * from "./functions/curses";
|
|
39
|
-
export * from "./functions/debugFunctions";
|
|
40
|
-
export * from "./functions/decorators";
|
|
41
|
-
export * from "./functions/deepCopy";
|
|
42
|
-
export * from "./functions/deepCopyTests";
|
|
43
|
-
export * from "./functions/dimensions";
|
|
44
|
-
export * from "./functions/direction";
|
|
45
|
-
export * from "./functions/doors";
|
|
46
|
-
export * from "./functions/easing";
|
|
47
|
-
export * from "./functions/effects";
|
|
48
|
-
export * from "./functions/emptyRoom";
|
|
49
|
-
export * from "./functions/entities";
|
|
50
|
-
export * from "./functions/entitiesSpecific";
|
|
51
|
-
export * from "./functions/entityTypes";
|
|
52
|
-
export * from "./functions/enums";
|
|
53
|
-
export * from "./functions/familiars";
|
|
54
|
-
export * from "./functions/flag";
|
|
55
|
-
export * from "./functions/globals";
|
|
56
|
-
export * from "./functions/gridEntities";
|
|
57
|
-
export * from "./functions/gridEntitiesSpecific";
|
|
58
|
-
export * from "./functions/gridIndex";
|
|
59
|
-
export * from "./functions/hex";
|
|
60
|
-
export * from "./functions/initArray";
|
|
61
|
-
export * from "./functions/input";
|
|
62
|
-
export * from "./functions/isaacAPIClass";
|
|
63
|
-
export * from "./functions/itemPool";
|
|
64
|
-
export * from "./functions/jsonHelpers";
|
|
65
|
-
export * from "./functions/jsonRoom";
|
|
66
|
-
export * from "./functions/kColor";
|
|
67
|
-
export * from "./functions/language";
|
|
68
|
-
export * from "./functions/level";
|
|
69
|
-
export * from "./functions/levelGrid";
|
|
70
|
-
export * from "./functions/log";
|
|
71
|
-
export * from "./functions/logEntities";
|
|
72
|
-
export * from "./functions/logMisc";
|
|
73
|
-
export * from "./functions/map";
|
|
74
|
-
export * from "./functions/math";
|
|
75
|
-
export * from "./functions/merge";
|
|
76
|
-
export * from "./functions/mergeTests";
|
|
77
|
-
export * from "./functions/minimap";
|
|
78
|
-
export * from "./functions/modFeatures";
|
|
79
|
-
export * from "./functions/nextStage";
|
|
80
|
-
export * from "./functions/npcs";
|
|
81
|
-
export * from "./functions/pickups";
|
|
82
|
-
export * from "./functions/pickupsSpecific";
|
|
83
|
-
export * from "./functions/pickupVariants";
|
|
84
|
-
export * from "./functions/pills";
|
|
85
|
-
export * from "./functions/playerCenter";
|
|
86
|
-
export * from "./functions/playerDataStructures";
|
|
87
|
-
export * from "./functions/playerHealth";
|
|
88
|
-
export * from "./functions/playerIndex";
|
|
89
|
-
export * from "./functions/players";
|
|
90
|
-
export * from "./functions/playerStats";
|
|
91
|
-
export * from "./functions/pocketItems";
|
|
92
|
-
export * from "./functions/positionVelocity";
|
|
93
|
-
export * from "./functions/pressurePlate";
|
|
94
|
-
export * from "./functions/projectiles";
|
|
95
|
-
export * from "./functions/random";
|
|
96
|
-
export * from "./functions/readOnly";
|
|
97
|
-
export * from "./functions/revive";
|
|
98
|
-
export * from "./functions/rng";
|
|
99
|
-
export * from "./functions/rockAlt";
|
|
100
|
-
export * from "./functions/roomData";
|
|
101
|
-
export * from "./functions/roomGrid";
|
|
102
|
-
export * from "./functions/rooms";
|
|
103
|
-
export * from "./functions/roomShape";
|
|
104
|
-
export * from "./functions/roomShapeWalls";
|
|
105
|
-
export * from "./functions/roomTransition";
|
|
106
|
-
export * from "./functions/run";
|
|
107
|
-
export * from "./functions/seeds";
|
|
108
|
-
export * from "./functions/serialization";
|
|
109
|
-
export * from "./functions/set";
|
|
110
|
-
export * from "./functions/slots";
|
|
111
|
-
export * from "./functions/sort";
|
|
112
|
-
export * from "./functions/sound";
|
|
113
|
-
export * from "./functions/spawnCollectible";
|
|
114
|
-
export * from "./functions/sprites";
|
|
115
|
-
export * from "./functions/stage";
|
|
116
|
-
export * from "./functions/stats";
|
|
117
|
-
export * from "./functions/string";
|
|
118
|
-
export * from "./functions/table";
|
|
119
|
-
export * from "./functions/tears";
|
|
120
|
-
export * from "./functions/transformations";
|
|
121
|
-
export * from "./functions/trinketGive";
|
|
122
|
-
export * from "./functions/trinkets";
|
|
123
|
-
export * from "./functions/tstlClass";
|
|
124
|
-
export * from "./functions/types";
|
|
125
|
-
export * from "./functions/ui";
|
|
126
|
-
export * from "./functions/utils";
|
|
127
|
-
export * from "./functions/vector";
|
|
128
|
-
export * from "./functions/weighted";
|
|
129
|
-
export * from "./interfaces/ChargeBarSprites";
|
|
130
|
-
export * from "./interfaces/Corner";
|
|
131
|
-
export * from "./interfaces/CustomStageTSConfig";
|
|
132
|
-
export * from "./interfaces/GridEntityCustomData";
|
|
133
|
-
export * from "./interfaces/JSONRoomsFile";
|
|
134
|
-
export * from "./interfaces/PlayerHealth";
|
|
135
|
-
export * from "./interfaces/PocketItemDescription";
|
|
136
|
-
export * from "./interfaces/RoomDescription";
|
|
137
|
-
export * from "./interfaces/SaveData";
|
|
138
|
-
export * from "./interfaces/StageHistoryEntry";
|
|
139
|
-
export * from "./interfaces/StatTypeType";
|
|
140
|
-
export * from "./interfaces/TrinketSituation";
|
|
141
|
-
export * from "./interfaces/TSTLClassMetatable";
|
|
142
|
-
export * from "./maps/cardNameToTypeMap";
|
|
143
|
-
export * from "./maps/characterNameToTypeMap";
|
|
144
|
-
export * from "./maps/pillNameToEffectMap";
|
|
145
|
-
export * from "./maps/roomNameToTypeMap";
|
|
146
|
-
export * from "./maps/transformationNameToPlayerFormMap";
|
|
147
|
-
export * from "./objects/colors";
|
|
148
|
-
export * from "./objects/kColors";
|
|
149
|
-
export * from "./types/AllButFirst";
|
|
150
|
-
export * from "./types/AllButLast";
|
|
151
|
-
export * from "./types/AnyClass";
|
|
152
|
-
export * from "./types/AnyEntity";
|
|
153
|
-
export * from "./types/AnyFunction";
|
|
154
|
-
export * from "./types/AnyGridEntity";
|
|
155
|
-
export * from "./types/ConversionHeartSubType";
|
|
156
|
-
export * from "./types/Decrement";
|
|
157
|
-
export * from "./types/EntityID";
|
|
158
|
-
export * from "./types/FunctionTuple";
|
|
159
|
-
export * from "./types/GridEntityID";
|
|
160
|
-
export * from "./types/HasFunction";
|
|
161
|
-
export * from "./types/Immutable";
|
|
162
|
-
export * from "./types/Increment";
|
|
163
|
-
export * from "./types/LowercaseKeys";
|
|
164
|
-
export * from "./types/NaturalNumbersLessThan";
|
|
165
|
-
export * from "./types/NaturalNumbersLessThanOrEqualTo";
|
|
166
|
-
export * from "./types/PickingUpItem";
|
|
167
|
-
export * from "./types/PickupIndex";
|
|
168
|
-
export * from "./types/PlayerIndex";
|
|
169
|
-
export * from "./types/PossibleStatType";
|
|
170
|
-
export * from "./types/PublicInterface";
|
|
171
|
-
export * from "./types/Range";
|
|
172
|
-
export * from "./types/ReadonlyMap";
|
|
173
|
-
export * from "./types/ReadonlySet";
|
|
174
|
-
export * from "./types/StartsWithLowercase";
|
|
175
|
-
export * from "./types/StartsWithUppercase";
|
|
176
|
-
export * from "./types/TSTLClass";
|
|
177
|
-
export * from "./types/Tuple";
|
|
178
|
-
export * from "./types/TupleToIntersection";
|
|
179
|
-
export * from "./types/TupleToUnion";
|
|
180
|
-
export * from "./types/TupleWithMaxLength";
|
|
181
|
-
export * from "./types/UnionToIntersection";
|
|
182
|
-
export * from "./types/UppercaseKeys";
|
|
183
|
-
export * from "./types/WeightedArray";
|
|
184
|
-
export * from "./types/Writable";
|
|
185
|
-
export * from "isaac-typescript-definitions";
|
|
186
|
-
//# sourceMappingURL=indexLua.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"indexLua.d.ts","sourceRoot":"","sources":["../../../../../packages/isaacscript-common/src/indexLua.ts"],"names":[],"mappings":"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"}
|