isaacscript-common 29.1.1 → 29.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.rollup.d.ts +57 -14
- package/dist/isaacscript-common.lua +199 -124
- package/dist/src/callbackClasses.d.ts +1 -0
- package/dist/src/callbackClasses.d.ts.map +1 -1
- package/dist/src/callbackClasses.lua +5 -0
- package/dist/src/callbacks.d.ts +15 -14
- package/dist/src/callbacks.d.ts.map +1 -1
- package/dist/src/callbacks.lua +1 -0
- package/dist/src/classes/callbacks/PostUsePillFilter.d.ts +20 -0
- package/dist/src/classes/callbacks/PostUsePillFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/PostUsePillFilter.lua +49 -0
- package/dist/src/enums/ModCallbackCustom.d.ts +37 -14
- package/dist/src/enums/ModCallbackCustom.d.ts.map +1 -1
- package/dist/src/enums/ModCallbackCustom.lua +16 -14
- package/dist/src/functions/playerDataStructures.d.ts +5 -0
- package/dist/src/functions/playerDataStructures.d.ts.map +1 -1
- package/dist/src/functions/playerDataStructures.lua +6 -0
- package/dist/src/functions/pocketItems.d.ts +7 -0
- package/dist/src/functions/pocketItems.d.ts.map +1 -1
- package/dist/src/functions/pocketItems.lua +17 -0
- package/dist/src/indexLua.d.ts +186 -0
- package/dist/src/indexLua.d.ts.map +1 -0
- package/dist/src/indexLua.lua +1114 -0
- package/dist/src/interfaces/private/AddCallbackParametersCustom.d.ts +6 -1
- package/dist/src/interfaces/private/AddCallbackParametersCustom.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/callbackClasses.ts +1 -0
- package/src/callbacks.ts +1 -0
- package/src/classes/callbacks/PostUsePillFilter.ts +75 -0
- package/src/enums/ModCallbackCustom.ts +24 -0
- package/src/functions/playerDataStructures.ts +12 -0
- package/src/functions/pocketItems.ts +23 -0
- package/src/interfaces/private/AddCallbackParametersCustom.ts +14 -0
package/dist/src/callbacks.d.ts
CHANGED
|
@@ -124,20 +124,21 @@ declare const MOD_CALLBACK_CUSTOM_TO_CLASS: {
|
|
|
124
124
|
readonly 121: typeof cc.PostTNTUpdate;
|
|
125
125
|
readonly 122: typeof cc.PostTransformation;
|
|
126
126
|
readonly 123: typeof cc.PostTrinketBreak;
|
|
127
|
-
readonly 124: typeof cc.
|
|
128
|
-
readonly 125: typeof cc.
|
|
129
|
-
readonly 126: typeof cc.
|
|
130
|
-
readonly 127: typeof cc.
|
|
131
|
-
readonly 128: typeof cc.
|
|
132
|
-
readonly 129: typeof cc.
|
|
133
|
-
readonly 130: typeof cc.
|
|
134
|
-
readonly 131: typeof cc.
|
|
135
|
-
readonly 132: typeof cc.
|
|
136
|
-
readonly 133: typeof cc.
|
|
137
|
-
readonly 134: typeof cc.
|
|
138
|
-
readonly 135: typeof cc.
|
|
139
|
-
readonly 136: typeof cc.
|
|
140
|
-
readonly 137: typeof cc.
|
|
127
|
+
readonly 124: typeof cc.PostUsePillFilter;
|
|
128
|
+
readonly 125: typeof cc.PreBerserkDeath;
|
|
129
|
+
readonly 126: typeof cc.PreBombCollisionFilter;
|
|
130
|
+
readonly 127: typeof cc.PreCustomRevive;
|
|
131
|
+
readonly 128: typeof cc.PreEntitySpawnFilter;
|
|
132
|
+
readonly 129: typeof cc.PreFamiliarCollisionFilter;
|
|
133
|
+
readonly 130: typeof cc.PreGetPedestal;
|
|
134
|
+
readonly 131: typeof cc.PreItemPickup;
|
|
135
|
+
readonly 132: typeof cc.PreKnifeCollisionFilter;
|
|
136
|
+
readonly 133: typeof cc.PreNewLevel;
|
|
137
|
+
readonly 134: typeof cc.PreNPCCollisionFilter;
|
|
138
|
+
readonly 135: typeof cc.PreNPCUpdateFilter;
|
|
139
|
+
readonly 136: typeof cc.PreProjectileCollisionFilter;
|
|
140
|
+
readonly 137: typeof cc.PreRoomEntitySpawnFilter;
|
|
141
|
+
readonly 138: typeof cc.PreTearCollisionFilter;
|
|
141
142
|
};
|
|
142
143
|
export type ModCallbackCustomToClass = {
|
|
143
144
|
readonly [K in keyof typeof MOD_CALLBACK_CUSTOM_TO_CLASS]: InstanceType<(typeof MOD_CALLBACK_CUSTOM_TO_CLASS)[K]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callbacks.d.ts","sourceRoot":"","sources":["../../src/callbacks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAKxC,QAAA,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"callbacks.d.ts","sourceRoot":"","sources":["../../src/callbacks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAKxC,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8JsB,CAAC;AAEzD,MAAM,MAAM,wBAAwB,GAAG;IACrC,QAAQ,EAAE,CAAC,IAAI,MAAM,OAAO,4BAA4B,GAAG,YAAY,CACrE,CAAC,OAAO,4BAA4B,CAAC,CAAC,CAAC,CAAC,CACzC;CACF,CAAC;AAEF,wBAAgB,YAAY,IAAI,wBAAwB,CASvD"}
|
package/dist/src/callbacks.lua
CHANGED
|
@@ -131,6 +131,7 @@ local MOD_CALLBACK_CUSTOM_TO_CLASS = {
|
|
|
131
131
|
[ModCallbackCustom.POST_TNT_UPDATE] = cc.PostTNTUpdate,
|
|
132
132
|
[ModCallbackCustom.POST_TRANSFORMATION] = cc.PostTransformation,
|
|
133
133
|
[ModCallbackCustom.POST_TRINKET_BREAK] = cc.PostTrinketBreak,
|
|
134
|
+
[ModCallbackCustom.POST_USE_PILL_FILTER] = cc.PostUsePillFilter,
|
|
134
135
|
[ModCallbackCustom.PRE_BERSERK_DEATH] = cc.PreBerserkDeath,
|
|
135
136
|
[ModCallbackCustom.PRE_BOMB_COLLISION_FILTER] = cc.PreBombCollisionFilter,
|
|
136
137
|
[ModCallbackCustom.PRE_CUSTOM_REVIVE] = cc.PreCustomRevive,
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ModCallbackCustom } from "../../enums/ModCallbackCustom";
|
|
2
|
+
import { PocketItemDescription } from "../../interfaces/PocketItemDescription";
|
|
3
|
+
import { PlayerIndex } from "../../types/PlayerIndex";
|
|
4
|
+
import { CustomCallback } from "../private/CustomCallback";
|
|
5
|
+
/**
|
|
6
|
+
* The vanilla `POST_USE_PILL` callback does not pass the `PillColor` of the used pill. Thus, we
|
|
7
|
+
* must keep track of the pills that the player is holding on every frame.
|
|
8
|
+
*/
|
|
9
|
+
export declare class PostUsePillFilter extends CustomCallback<ModCallbackCustom.POST_USE_PILL_FILTER> {
|
|
10
|
+
v: {
|
|
11
|
+
run: {
|
|
12
|
+
playerFirstPill: Map<PlayerIndex, PocketItemDescription>;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
constructor();
|
|
16
|
+
private postUsePill;
|
|
17
|
+
private postPEffectUpdateReordered;
|
|
18
|
+
private updateCurrentHeldPills;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=PostUsePillFilter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PostUsePillFilter.d.ts","sourceRoot":"","sources":["../../../../src/classes/callbacks/PostUsePillFilter.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAOlE,OAAO,EAAE,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAC/E,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAQ3D;;;GAGG;AACH,qBAAa,iBAAkB,SAAQ,cAAc,CAAC,iBAAiB,CAAC,oBAAoB,CAAC;IAC3E,CAAC;;;;MAAK;;IAmBtB,OAAO,CAAC,WAAW,CAYjB;IAGF,OAAO,CAAC,0BAA0B,CAEhC;IAEF,OAAO,CAAC,sBAAsB;CAQ/B"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local Map = ____lualib.Map
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local __TS__Class = ____lualib.__TS__Class
|
|
5
|
+
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
6
|
+
local ____exports = {}
|
|
7
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
8
|
+
local ModCallback = ____isaac_2Dtypescript_2Ddefinitions.ModCallback
|
|
9
|
+
local PillColor = ____isaac_2Dtypescript_2Ddefinitions.PillColor
|
|
10
|
+
local ____ModCallbackCustom = require("src.enums.ModCallbackCustom")
|
|
11
|
+
local ModCallbackCustom = ____ModCallbackCustom.ModCallbackCustom
|
|
12
|
+
local ____playerDataStructures = require("src.functions.playerDataStructures")
|
|
13
|
+
local mapDeletePlayer = ____playerDataStructures.mapDeletePlayer
|
|
14
|
+
local mapGetPlayer = ____playerDataStructures.mapGetPlayer
|
|
15
|
+
local mapSetPlayer = ____playerDataStructures.mapSetPlayer
|
|
16
|
+
local ____pocketItems = require("src.functions.pocketItems")
|
|
17
|
+
local getFirstPill = ____pocketItems.getFirstPill
|
|
18
|
+
local ____CustomCallback = require("src.classes.private.CustomCallback")
|
|
19
|
+
local CustomCallback = ____CustomCallback.CustomCallback
|
|
20
|
+
local v = {run = {playerFirstPill = __TS__New(Map)}}
|
|
21
|
+
--- The vanilla `POST_USE_PILL` callback does not pass the `PillColor` of the used pill. Thus, we
|
|
22
|
+
-- must keep track of the pills that the player is holding on every frame.
|
|
23
|
+
____exports.PostUsePillFilter = __TS__Class()
|
|
24
|
+
local PostUsePillFilter = ____exports.PostUsePillFilter
|
|
25
|
+
PostUsePillFilter.name = "PostUsePillFilter"
|
|
26
|
+
__TS__ClassExtends(PostUsePillFilter, CustomCallback)
|
|
27
|
+
function PostUsePillFilter.prototype.____constructor(self)
|
|
28
|
+
CustomCallback.prototype.____constructor(self)
|
|
29
|
+
self.v = v
|
|
30
|
+
self.postUsePill = function(____, pillEffect, player, useFlags)
|
|
31
|
+
local firstPill = mapGetPlayer(nil, v.run.playerFirstPill, player)
|
|
32
|
+
local pillColor = firstPill == nil and PillColor.NULL or firstPill.subType
|
|
33
|
+
self:fire(pillEffect, pillColor, player, useFlags)
|
|
34
|
+
end
|
|
35
|
+
self.postPEffectUpdateReordered = function(____, player)
|
|
36
|
+
self:updateCurrentHeldPills(player)
|
|
37
|
+
end
|
|
38
|
+
self.callbacksUsed = {{ModCallback.POST_USE_PILL, self.postUsePill}}
|
|
39
|
+
self.customCallbacksUsed = {{ModCallbackCustom.POST_PEFFECT_UPDATE_REORDERED, self.postPEffectUpdateReordered}}
|
|
40
|
+
end
|
|
41
|
+
function PostUsePillFilter.prototype.updateCurrentHeldPills(self, player)
|
|
42
|
+
local firstPill = getFirstPill(nil, player)
|
|
43
|
+
if firstPill == nil then
|
|
44
|
+
mapDeletePlayer(nil, v.run.playerFirstPill, player)
|
|
45
|
+
else
|
|
46
|
+
mapSetPlayer(nil, v.run.playerFirstPill, player, firstPill)
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
return ____exports
|
|
@@ -2147,6 +2147,29 @@ export declare enum ModCallbackCustom {
|
|
|
2147
2147
|
* ```
|
|
2148
2148
|
*/
|
|
2149
2149
|
POST_TRINKET_BREAK = 123,
|
|
2150
|
+
/**
|
|
2151
|
+
* The same thing as the vanilla `POST_USE_PILL` callback, except this callback passes the
|
|
2152
|
+
* `PillColor` of the used pill as the final argument. It allows you to filter by the `PillColor`.
|
|
2153
|
+
*
|
|
2154
|
+
* In order to accomplish this, this callback tracks the held pills of the player on every frame.
|
|
2155
|
+
* If a matching `PillColor` could not be found, this callback passes `PillColor.NULL` (0).
|
|
2156
|
+
*
|
|
2157
|
+
* When registering the callback with the `ModUpgraded.AddCallbackCustom` method:
|
|
2158
|
+
* - You can provide an optional third argument that will make the callback only fire if it
|
|
2159
|
+
* matches the `PillEffect` provided.
|
|
2160
|
+
* - You can provide an optional fourth argument that will make the callback only fire if it
|
|
2161
|
+
* matches the `PillColor` provided.
|
|
2162
|
+
*
|
|
2163
|
+
* ```ts
|
|
2164
|
+
* function postUsePillFilter(
|
|
2165
|
+
* pillEffect: PillEffect,
|
|
2166
|
+
* pillColor: PillColor,
|
|
2167
|
+
* player: EntityPlayer,
|
|
2168
|
+
* useFlags: BitFlags<UseFlag>,
|
|
2169
|
+
* ): void {}
|
|
2170
|
+
* ```
|
|
2171
|
+
*/
|
|
2172
|
+
POST_USE_PILL_FILTER = 124,
|
|
2150
2173
|
/**
|
|
2151
2174
|
* Fires from the `POST_PEFFECT_UPDATE_REORDERED` callback on the frame before a Berserk effect
|
|
2152
2175
|
* ends when the player is predicted to die (e.g. they currently have no health left or they took
|
|
@@ -2162,7 +2185,7 @@ export declare enum ModCallbackCustom {
|
|
|
2162
2185
|
* function preBerserkDeath(player: EntityPlayer): void {}
|
|
2163
2186
|
* ```
|
|
2164
2187
|
*/
|
|
2165
|
-
PRE_BERSERK_DEATH =
|
|
2188
|
+
PRE_BERSERK_DEATH = 125,
|
|
2166
2189
|
/**
|
|
2167
2190
|
* The exact same thing as the vanilla `PRE_BOMB_COLLISION` callback, except this callback allows
|
|
2168
2191
|
* you to specify extra arguments for additional filtration.
|
|
@@ -2181,7 +2204,7 @@ export declare enum ModCallbackCustom {
|
|
|
2181
2204
|
* ): void {}
|
|
2182
2205
|
* ```
|
|
2183
2206
|
*/
|
|
2184
|
-
PRE_BOMB_COLLISION_FILTER =
|
|
2207
|
+
PRE_BOMB_COLLISION_FILTER = 126,
|
|
2185
2208
|
/**
|
|
2186
2209
|
* Fires from the `POST_PLAYER_FATAL_DAMAGE` callback when a player is about to die. If you want
|
|
2187
2210
|
* to initiate a custom revival, return an integer that corresponds to the item or type of revival
|
|
@@ -2200,7 +2223,7 @@ export declare enum ModCallbackCustom {
|
|
|
2200
2223
|
* function preCustomRevive(player: EntityPlayer): int | undefined {}
|
|
2201
2224
|
* ```
|
|
2202
2225
|
*/
|
|
2203
|
-
PRE_CUSTOM_REVIVE =
|
|
2226
|
+
PRE_CUSTOM_REVIVE = 127,
|
|
2204
2227
|
/**
|
|
2205
2228
|
* The exact same thing as the vanilla `PRE_ENTITY_SPAWN` callback, except this callback allows
|
|
2206
2229
|
* you to specify extra arguments for additional filtration.
|
|
@@ -2225,7 +2248,7 @@ export declare enum ModCallbackCustom {
|
|
|
2225
2248
|
* ): [EntityType, int, int, int] | undefined {}
|
|
2226
2249
|
* ```
|
|
2227
2250
|
*/
|
|
2228
|
-
PRE_ENTITY_SPAWN_FILTER =
|
|
2251
|
+
PRE_ENTITY_SPAWN_FILTER = 128,
|
|
2229
2252
|
/**
|
|
2230
2253
|
* The exact same thing as the vanilla `PRE_FAMILIAR_COLLISION` callback, except this callback
|
|
2231
2254
|
* allows you to specify extra arguments for additional filtration.
|
|
@@ -2244,7 +2267,7 @@ export declare enum ModCallbackCustom {
|
|
|
2244
2267
|
* ): void {}
|
|
2245
2268
|
* ```
|
|
2246
2269
|
*/
|
|
2247
|
-
PRE_FAMILIAR_COLLISION_FILTER =
|
|
2270
|
+
PRE_FAMILIAR_COLLISION_FILTER = 129,
|
|
2248
2271
|
/**
|
|
2249
2272
|
* Fires from the `PRE_PICKUP_COLLISION` callback when a player touches a collectible pedestal and
|
|
2250
2273
|
* meets all of the conditions to pick it up.
|
|
@@ -2264,7 +2287,7 @@ export declare enum ModCallbackCustom {
|
|
|
2264
2287
|
* function preGetPedestal(player: EntityPlayer, collectible: EntityPickupCollectible): void {}
|
|
2265
2288
|
* ```
|
|
2266
2289
|
*/
|
|
2267
|
-
PRE_GET_PEDESTAL =
|
|
2290
|
+
PRE_GET_PEDESTAL = 130,
|
|
2268
2291
|
/**
|
|
2269
2292
|
* Fires from the `POST_PEFFECT_UPDATE_REORDERED` callback when an item becomes queued (i.e. when
|
|
2270
2293
|
* the player begins to hold the item above their head).
|
|
@@ -2284,7 +2307,7 @@ export declare enum ModCallbackCustom {
|
|
|
2284
2307
|
* ): void {}
|
|
2285
2308
|
* ```
|
|
2286
2309
|
*/
|
|
2287
|
-
PRE_ITEM_PICKUP =
|
|
2310
|
+
PRE_ITEM_PICKUP = 131,
|
|
2288
2311
|
/**
|
|
2289
2312
|
* The exact same thing as the vanilla `PRE_KNIFE_COLLISION` callback, except this callback allows
|
|
2290
2313
|
* you to specify extra arguments for additional filtration.
|
|
@@ -2303,7 +2326,7 @@ export declare enum ModCallbackCustom {
|
|
|
2303
2326
|
* ): void {}
|
|
2304
2327
|
* ```
|
|
2305
2328
|
*/
|
|
2306
|
-
PRE_KNIFE_COLLISION_FILTER =
|
|
2329
|
+
PRE_KNIFE_COLLISION_FILTER = 132,
|
|
2307
2330
|
/**
|
|
2308
2331
|
* Fires on the `POST_RENDER` frame before the player is taken to a new floor. Only fires when a
|
|
2309
2332
|
* player jumps into a trapdoor or enters a heaven door (beam of light). Does not fire on the
|
|
@@ -2317,7 +2340,7 @@ export declare enum ModCallbackCustom {
|
|
|
2317
2340
|
* function preNewLevel(player: EntityPlayer): void {}
|
|
2318
2341
|
* ```
|
|
2319
2342
|
*/
|
|
2320
|
-
PRE_NEW_LEVEL =
|
|
2343
|
+
PRE_NEW_LEVEL = 133,
|
|
2321
2344
|
/**
|
|
2322
2345
|
* The exact same thing as the vanilla `PRE_NPC_COLLISION` callback, except this callback allows
|
|
2323
2346
|
* you to specify extra arguments for additional filtration.
|
|
@@ -2338,7 +2361,7 @@ export declare enum ModCallbackCustom {
|
|
|
2338
2361
|
* ): boolean | undefined {}
|
|
2339
2362
|
* ```
|
|
2340
2363
|
*/
|
|
2341
|
-
PRE_NPC_COLLISION_FILTER =
|
|
2364
|
+
PRE_NPC_COLLISION_FILTER = 134,
|
|
2342
2365
|
/**
|
|
2343
2366
|
* The exact same thing as the vanilla `PRE_NPC_UPDATE` callback, except this callback allows you
|
|
2344
2367
|
* to specify extra arguments for additional filtration.
|
|
@@ -2355,7 +2378,7 @@ export declare enum ModCallbackCustom {
|
|
|
2355
2378
|
* function preNPCUpdateFilter(entity: Entity): boolean | undefined {}
|
|
2356
2379
|
* ```
|
|
2357
2380
|
*/
|
|
2358
|
-
PRE_NPC_UPDATE_FILTER =
|
|
2381
|
+
PRE_NPC_UPDATE_FILTER = 135,
|
|
2359
2382
|
/**
|
|
2360
2383
|
* The exact same thing as the vanilla `PRE_PROJECTILE_COLLISION` callback, except this callback
|
|
2361
2384
|
* allows you to specify extra arguments for additional filtration.
|
|
@@ -2374,7 +2397,7 @@ export declare enum ModCallbackCustom {
|
|
|
2374
2397
|
* ): void {}
|
|
2375
2398
|
* ```
|
|
2376
2399
|
*/
|
|
2377
|
-
PRE_PROJECTILE_COLLISION_FILTER =
|
|
2400
|
+
PRE_PROJECTILE_COLLISION_FILTER = 136,
|
|
2378
2401
|
/**
|
|
2379
2402
|
* The exact same thing as the vanilla `PRE_ROOM_ENTITY_SPAWN` callback, except this callback
|
|
2380
2403
|
* allows you to specify extra arguments for additional filtration.
|
|
@@ -2397,7 +2420,7 @@ export declare enum ModCallbackCustom {
|
|
|
2397
2420
|
* ): [EntityType | GridEntityXMLType, int, int] | undefined {}
|
|
2398
2421
|
* ```
|
|
2399
2422
|
*/
|
|
2400
|
-
PRE_ROOM_ENTITY_SPAWN_FILTER =
|
|
2423
|
+
PRE_ROOM_ENTITY_SPAWN_FILTER = 137,
|
|
2401
2424
|
/**
|
|
2402
2425
|
* The exact same thing as the vanilla `PRE_TEAR_COLLISION` callback, except this callback allows
|
|
2403
2426
|
* you to specify extra arguments for additional filtration.
|
|
@@ -2416,6 +2439,6 @@ export declare enum ModCallbackCustom {
|
|
|
2416
2439
|
* ): void {}
|
|
2417
2440
|
* ```
|
|
2418
2441
|
*/
|
|
2419
|
-
PRE_TEAR_COLLISION_FILTER =
|
|
2442
|
+
PRE_TEAR_COLLISION_FILTER = 138
|
|
2420
2443
|
}
|
|
2421
2444
|
//# sourceMappingURL=ModCallbackCustom.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModCallbackCustom.d.ts","sourceRoot":"","sources":["../../../src/enums/ModCallbackCustom.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ModCallbackCustom.d.ts","sourceRoot":"","sources":["../../../src/enums/ModCallbackCustom.ts"],"names":[],"mappings":"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"}
|
|
@@ -254,32 +254,34 @@ ____exports.ModCallbackCustom.POST_TRANSFORMATION = 122
|
|
|
254
254
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.POST_TRANSFORMATION] = "POST_TRANSFORMATION"
|
|
255
255
|
____exports.ModCallbackCustom.POST_TRINKET_BREAK = 123
|
|
256
256
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.POST_TRINKET_BREAK] = "POST_TRINKET_BREAK"
|
|
257
|
-
____exports.ModCallbackCustom.
|
|
257
|
+
____exports.ModCallbackCustom.POST_USE_PILL_FILTER = 124
|
|
258
|
+
____exports.ModCallbackCustom[____exports.ModCallbackCustom.POST_USE_PILL_FILTER] = "POST_USE_PILL_FILTER"
|
|
259
|
+
____exports.ModCallbackCustom.PRE_BERSERK_DEATH = 125
|
|
258
260
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_BERSERK_DEATH] = "PRE_BERSERK_DEATH"
|
|
259
|
-
____exports.ModCallbackCustom.PRE_BOMB_COLLISION_FILTER =
|
|
261
|
+
____exports.ModCallbackCustom.PRE_BOMB_COLLISION_FILTER = 126
|
|
260
262
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_BOMB_COLLISION_FILTER] = "PRE_BOMB_COLLISION_FILTER"
|
|
261
|
-
____exports.ModCallbackCustom.PRE_CUSTOM_REVIVE =
|
|
263
|
+
____exports.ModCallbackCustom.PRE_CUSTOM_REVIVE = 127
|
|
262
264
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_CUSTOM_REVIVE] = "PRE_CUSTOM_REVIVE"
|
|
263
|
-
____exports.ModCallbackCustom.PRE_ENTITY_SPAWN_FILTER =
|
|
265
|
+
____exports.ModCallbackCustom.PRE_ENTITY_SPAWN_FILTER = 128
|
|
264
266
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_ENTITY_SPAWN_FILTER] = "PRE_ENTITY_SPAWN_FILTER"
|
|
265
|
-
____exports.ModCallbackCustom.PRE_FAMILIAR_COLLISION_FILTER =
|
|
267
|
+
____exports.ModCallbackCustom.PRE_FAMILIAR_COLLISION_FILTER = 129
|
|
266
268
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_FAMILIAR_COLLISION_FILTER] = "PRE_FAMILIAR_COLLISION_FILTER"
|
|
267
|
-
____exports.ModCallbackCustom.PRE_GET_PEDESTAL =
|
|
269
|
+
____exports.ModCallbackCustom.PRE_GET_PEDESTAL = 130
|
|
268
270
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_GET_PEDESTAL] = "PRE_GET_PEDESTAL"
|
|
269
|
-
____exports.ModCallbackCustom.PRE_ITEM_PICKUP =
|
|
271
|
+
____exports.ModCallbackCustom.PRE_ITEM_PICKUP = 131
|
|
270
272
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_ITEM_PICKUP] = "PRE_ITEM_PICKUP"
|
|
271
|
-
____exports.ModCallbackCustom.PRE_KNIFE_COLLISION_FILTER =
|
|
273
|
+
____exports.ModCallbackCustom.PRE_KNIFE_COLLISION_FILTER = 132
|
|
272
274
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_KNIFE_COLLISION_FILTER] = "PRE_KNIFE_COLLISION_FILTER"
|
|
273
|
-
____exports.ModCallbackCustom.PRE_NEW_LEVEL =
|
|
275
|
+
____exports.ModCallbackCustom.PRE_NEW_LEVEL = 133
|
|
274
276
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_NEW_LEVEL] = "PRE_NEW_LEVEL"
|
|
275
|
-
____exports.ModCallbackCustom.PRE_NPC_COLLISION_FILTER =
|
|
277
|
+
____exports.ModCallbackCustom.PRE_NPC_COLLISION_FILTER = 134
|
|
276
278
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_NPC_COLLISION_FILTER] = "PRE_NPC_COLLISION_FILTER"
|
|
277
|
-
____exports.ModCallbackCustom.PRE_NPC_UPDATE_FILTER =
|
|
279
|
+
____exports.ModCallbackCustom.PRE_NPC_UPDATE_FILTER = 135
|
|
278
280
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_NPC_UPDATE_FILTER] = "PRE_NPC_UPDATE_FILTER"
|
|
279
|
-
____exports.ModCallbackCustom.PRE_PROJECTILE_COLLISION_FILTER =
|
|
281
|
+
____exports.ModCallbackCustom.PRE_PROJECTILE_COLLISION_FILTER = 136
|
|
280
282
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_PROJECTILE_COLLISION_FILTER] = "PRE_PROJECTILE_COLLISION_FILTER"
|
|
281
|
-
____exports.ModCallbackCustom.PRE_ROOM_ENTITY_SPAWN_FILTER =
|
|
283
|
+
____exports.ModCallbackCustom.PRE_ROOM_ENTITY_SPAWN_FILTER = 137
|
|
282
284
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_ROOM_ENTITY_SPAWN_FILTER] = "PRE_ROOM_ENTITY_SPAWN_FILTER"
|
|
283
|
-
____exports.ModCallbackCustom.PRE_TEAR_COLLISION_FILTER =
|
|
285
|
+
____exports.ModCallbackCustom.PRE_TEAR_COLLISION_FILTER = 138
|
|
284
286
|
____exports.ModCallbackCustom[____exports.ModCallbackCustom.PRE_TEAR_COLLISION_FILTER] = "PRE_TEAR_COLLISION_FILTER"
|
|
285
287
|
return ____exports
|
|
@@ -28,6 +28,11 @@ export declare function defaultMapGetPlayer<V, A extends unknown[]>(map: Default
|
|
|
28
28
|
* `mapSetPlayer` helper function.
|
|
29
29
|
*/
|
|
30
30
|
export declare function defaultMapSetPlayer<V>(map: Map<PlayerIndex, V>, player: EntityPlayer, value: V): void;
|
|
31
|
+
/**
|
|
32
|
+
* Helper function to make using maps with an type of `PlayerIndex` easier. Use this instead of the
|
|
33
|
+
* `Map.delete` method if you have a set of this type.
|
|
34
|
+
*/
|
|
35
|
+
export declare function mapDeletePlayer(map: Map<PlayerIndex, unknown>, player: EntityPlayer): boolean;
|
|
31
36
|
/**
|
|
32
37
|
* Helper function to make using maps with an index of `PlayerIndex` easier. Use this instead of the
|
|
33
38
|
* `Map.get` method if you have a map of this type.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"playerDataStructures.d.ts","sourceRoot":"","sources":["../../../src/functions/playerDataStructures.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAGnD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,CAAC,SAAS,OAAO,EAAE,EACxD,GAAG,EAAE,UAAU,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC,CAAC,EAClC,MAAM,EAAE,YAAY,EACpB,GAAG,SAAS,EAAE,CAAC,GACd,CAAC,CAGH;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAAC,CAAC,EACnC,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,CAAC,GACP,IAAI,CAEN;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,GACnB,CAAC,GAAG,SAAS,CAGf;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,CAAC,GACP,IAAI,CAGN;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,GAAG,CAAC,WAAW,CAAC,CAGlB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT"}
|
|
1
|
+
{"version":3,"file":"playerDataStructures.d.ts","sourceRoot":"","sources":["../../../src/functions/playerDataStructures.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAGnD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,CAAC,SAAS,OAAO,EAAE,EACxD,GAAG,EAAE,UAAU,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC,CAAC,EAClC,MAAM,EAAE,YAAY,EACpB,GAAG,SAAS,EAAE,CAAC,GACd,CAAC,CAGH;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAAC,CAAC,EACnC,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,CAAC,GACP,IAAI,CAEN;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,OAAO,CAAC,EAC9B,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,GACnB,CAAC,GAAG,SAAS,CAGf;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAC5B,GAAG,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,EACxB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,CAAC,GACP,IAAI,CAGN;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,GAAG,CAAC,WAAW,CAAC,CAGlB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAC1B,GAAG,EAAE,GAAG,CAAC,WAAW,CAAC,EACrB,MAAM,EAAE,YAAY,GACnB,OAAO,CAGT"}
|
|
@@ -54,6 +54,12 @@ end
|
|
|
54
54
|
function ____exports.defaultMapSetPlayer(self, map, player, value)
|
|
55
55
|
____exports.mapSetPlayer(nil, map, player, value)
|
|
56
56
|
end
|
|
57
|
+
--- Helper function to make using maps with an type of `PlayerIndex` easier. Use this instead of the
|
|
58
|
+
-- `Map.delete` method if you have a set of this type.
|
|
59
|
+
function ____exports.mapDeletePlayer(self, map, player)
|
|
60
|
+
local playerIndex = getPlayerIndex(nil, player)
|
|
61
|
+
return map:delete(playerIndex)
|
|
62
|
+
end
|
|
57
63
|
--- Helper function to make using maps with an index of `PlayerIndex` easier. Use this instead of the
|
|
58
64
|
-- `Map.get` method if you have a map of this type.
|
|
59
65
|
--
|
|
@@ -5,7 +5,14 @@ import { PocketItemDescription } from "../interfaces/PocketItemDescription";
|
|
|
5
5
|
* in, if any. Returns undefined if the player does not have a pocket active item.
|
|
6
6
|
*/
|
|
7
7
|
export declare function getActivePocketItemSlot(player: EntityPlayer): PocketItemSlot | undefined;
|
|
8
|
+
/** Helper item to get the first card that a player is holding in their pocket item slots. */
|
|
9
|
+
export declare function getFirstCard(player: EntityPlayer): PocketItemDescription | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* Helper item to get the first card or pill that a player is holding in their pocket item slots.
|
|
12
|
+
*/
|
|
8
13
|
export declare function getFirstCardOrPill(player: EntityPlayer): PocketItemDescription | undefined;
|
|
14
|
+
/** Helper item to get the first pill that a player is holding in their pocket item slots. */
|
|
15
|
+
export declare function getFirstPill(player: EntityPlayer): PocketItemDescription | undefined;
|
|
9
16
|
/**
|
|
10
17
|
* Use this helper function as a workaround for the `EntityPlayer.GetPocketItem` method not working
|
|
11
18
|
* correctly.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pocketItems.d.ts","sourceRoot":"","sources":["../../../src/functions/pocketItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,cAAc,EACf,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AAI5E;;;GAGG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,YAAY,GACnB,cAAc,GAAG,SAAS,CAS5B;AAED,wBAAgB,kBAAkB,CAChC,MAAM,EAAE,YAAY,GACnB,qBAAqB,GAAG,SAAS,CAOnC;AAED;;;;;;;;;GASG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,qBAAqB,EAAE,CA8D5E;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CASnE;AAED;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAQzE"}
|
|
1
|
+
{"version":3,"file":"pocketItems.d.ts","sourceRoot":"","sources":["../../../src/functions/pocketItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAML,cAAc,EACf,MAAM,8BAA8B,CAAC;AAGtC,OAAO,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AAI5E;;;GAGG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,YAAY,GACnB,cAAc,GAAG,SAAS,CAS5B;AAED,6FAA6F;AAC7F,wBAAgB,YAAY,CAC1B,MAAM,EAAE,YAAY,GACnB,qBAAqB,GAAG,SAAS,CAKnC;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,MAAM,EAAE,YAAY,GACnB,qBAAqB,GAAG,SAAS,CAOnC;AAED,6FAA6F;AAC7F,wBAAgB,YAAY,CAC1B,MAAM,EAAE,YAAY,GACnB,qBAAqB,GAAG,SAAS,CAKnC;AAED;;;;;;;;;GASG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,qBAAqB,EAAE,CA8D5E;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CASnE;AAED;;;GAGG;AACH,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CAQzE"}
|
|
@@ -68,6 +68,15 @@ function ____exports.getActivePocketItemSlot(self, player)
|
|
|
68
68
|
end
|
|
69
69
|
return nil
|
|
70
70
|
end
|
|
71
|
+
--- Helper item to get the first card that a player is holding in their pocket item slots.
|
|
72
|
+
function ____exports.getFirstCard(self, player)
|
|
73
|
+
local pocketItems = ____exports.getPocketItems(nil, player)
|
|
74
|
+
return __TS__ArrayFind(
|
|
75
|
+
pocketItems,
|
|
76
|
+
function(____, pocketItem) return pocketItem.type == PocketItemType.CARD end
|
|
77
|
+
)
|
|
78
|
+
end
|
|
79
|
+
--- Helper item to get the first card or pill that a player is holding in their pocket item slots.
|
|
71
80
|
function ____exports.getFirstCardOrPill(self, player)
|
|
72
81
|
local pocketItems = ____exports.getPocketItems(nil, player)
|
|
73
82
|
return __TS__ArrayFind(
|
|
@@ -75,6 +84,14 @@ function ____exports.getFirstCardOrPill(self, player)
|
|
|
75
84
|
function(____, pocketItem) return pocketItem.type == PocketItemType.CARD or pocketItem.type == PocketItemType.PILL end
|
|
76
85
|
)
|
|
77
86
|
end
|
|
87
|
+
--- Helper item to get the first pill that a player is holding in their pocket item slots.
|
|
88
|
+
function ____exports.getFirstPill(self, player)
|
|
89
|
+
local pocketItems = ____exports.getPocketItems(nil, player)
|
|
90
|
+
return __TS__ArrayFind(
|
|
91
|
+
pocketItems,
|
|
92
|
+
function(____, pocketItem) return pocketItem.type == PocketItemType.PILL end
|
|
93
|
+
)
|
|
94
|
+
end
|
|
78
95
|
--- Returns whether or not the player can hold an additional pocket item, beyond what they are
|
|
79
96
|
-- currently carrying. This takes into account items that modify the max number of pocket items,
|
|
80
97
|
-- like Starter Deck.
|
|
@@ -0,0 +1,186 @@
|
|
|
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/StatTypeType";
|
|
139
|
+
export * from "./interfaces/TrinketSituation";
|
|
140
|
+
export * from "./interfaces/TSTLClassMetatable";
|
|
141
|
+
export * from "./maps/cardNameToTypeMap";
|
|
142
|
+
export * from "./maps/characterNameToTypeMap";
|
|
143
|
+
export * from "./maps/pillNameToEffectMap";
|
|
144
|
+
export * from "./maps/roomNameToTypeMap";
|
|
145
|
+
export * from "./maps/transformationNameToPlayerFormMap";
|
|
146
|
+
export * from "./objects/colors";
|
|
147
|
+
export * from "./objects/kColors";
|
|
148
|
+
export * from "./types/AllButFirst";
|
|
149
|
+
export * from "./types/AllButLast";
|
|
150
|
+
export * from "./types/AnyClass";
|
|
151
|
+
export * from "./types/AnyEntity";
|
|
152
|
+
export * from "./types/AnyFunction";
|
|
153
|
+
export * from "./types/AnyGridEntity";
|
|
154
|
+
export * from "./types/CollectibleIndex";
|
|
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
|