isaacscript-common 15.4.1 → 15.4.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 +190 -95
- package/dist/isaacscript-common.lua +1007 -547
- package/dist/src/callbackClasses.d.ts +101 -0
- package/dist/src/callbackClasses.d.ts.map +1 -0
- package/dist/src/callbackClasses.lua +502 -0
- package/dist/src/callbacks.d.ts +101 -190
- package/dist/src/callbacks.d.ts.map +1 -1
- package/dist/src/callbacks.lua +101 -285
- package/dist/src/classes/callbacks/EntityTakeDmgFilter.d.ts +9 -0
- package/dist/src/classes/callbacks/EntityTakeDmgFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/EntityTakeDmgFilter.lua +27 -0
- package/dist/src/classes/callbacks/PostNPCDeathFilter.d.ts +9 -0
- package/dist/src/classes/callbacks/PostNPCDeathFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/PostNPCDeathFilter.lua +23 -0
- package/dist/src/classes/callbacks/PostNPCRenderFilter.d.ts +9 -0
- package/dist/src/classes/callbacks/PostNPCRenderFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/PostNPCRenderFilter.lua +23 -0
- package/dist/src/classes/callbacks/PreNPCCollisionFilter.d.ts +9 -0
- package/dist/src/classes/callbacks/PreNPCCollisionFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/PreNPCCollisionFilter.lua +21 -0
- package/dist/src/classes/callbacks/PreNPCUpdateFilter.d.ts +9 -0
- package/dist/src/classes/callbacks/PreNPCUpdateFilter.d.ts.map +1 -0
- package/dist/src/classes/callbacks/PreNPCUpdateFilter.lua +21 -0
- package/dist/src/enums/ModCallbackCustom.d.ts +160 -95
- package/dist/src/enums/ModCallbackCustom.d.ts.map +1 -1
- package/dist/src/enums/ModCallbackCustom.lua +105 -95
- package/dist/src/interfaces/private/AddCallbackParametersCustom.d.ts +30 -0
- package/dist/src/interfaces/private/AddCallbackParametersCustom.d.ts.map +1 -1
- package/dist/src/shouldFire.d.ts +8 -1
- package/dist/src/shouldFire.d.ts.map +1 -1
- package/dist/src/shouldFire.lua +5 -0
- package/package.json +1 -1
- package/src/callbackClasses.ts +103 -0
- package/src/callbacks.ts +105 -190
- package/src/classes/callbacks/EntityTakeDmgFilter.ts +25 -0
- package/src/classes/callbacks/PostNPCDeathFilter.ts +21 -0
- package/src/classes/callbacks/PostNPCRenderFilter.ts +21 -0
- package/src/classes/callbacks/PreNPCCollisionFilter.ts +20 -0
- package/src/classes/callbacks/PreNPCUpdateFilter.ts +19 -0
- package/src/enums/ModCallbackCustom.ts +70 -0
- package/src/interfaces/private/AddCallbackParametersCustom.ts +45 -0
- package/src/shouldFire.ts +25 -1
package/dist/src/callbacks.d.ts
CHANGED
|
@@ -1,194 +1,105 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { PostAmbushStarted } from "./classes/callbacks/PostAmbushStarted";
|
|
3
|
-
import { PostBombExploded } from "./classes/callbacks/PostBombExploded";
|
|
4
|
-
import { PostBombInitLate } from "./classes/callbacks/PostBombInitLate";
|
|
5
|
-
import { PostBoneSwing } from "./classes/callbacks/PostBoneSwing";
|
|
6
|
-
import { PostCollectibleEmpty } from "./classes/callbacks/PostCollectibleEmpty";
|
|
7
|
-
import { PostCollectibleInitFirst } from "./classes/callbacks/PostCollectibleInitFirst";
|
|
8
|
-
import { PostCursedTeleport } from "./classes/callbacks/PostCursedTeleport";
|
|
9
|
-
import { PostCustomRevive } from "./classes/callbacks/PostCustomRevive";
|
|
10
|
-
import { PostDiceRoomActivated } from "./classes/callbacks/PostDiceRoomActivated";
|
|
11
|
-
import { PostDoorRender } from "./classes/callbacks/PostDoorRender";
|
|
12
|
-
import { PostDoorUpdate } from "./classes/callbacks/PostDoorUpdate";
|
|
13
|
-
import { PostEffectInitLate } from "./classes/callbacks/PostEffectInitLate";
|
|
14
|
-
import { PostEffectStateChanged } from "./classes/callbacks/PostEffectStateChanged";
|
|
15
|
-
import { PostEsauJr } from "./classes/callbacks/PostEsauJr";
|
|
16
|
-
import { PostFamiliarInitLate } from "./classes/callbacks/PostFamiliarInitLate";
|
|
17
|
-
import { PostFamiliarStateChanged } from "./classes/callbacks/PostFamiliarStateChanged";
|
|
18
|
-
import { PostFirstEsauJr } from "./classes/callbacks/PostFirstEsauJr";
|
|
19
|
-
import { PostFirstFlip } from "./classes/callbacks/PostFirstFlip";
|
|
20
|
-
import { PostFlip } from "./classes/callbacks/PostFlip";
|
|
21
|
-
import { PostGameStartedReordered } from "./classes/callbacks/PostGameStartedReordered";
|
|
22
|
-
import { PostGameStartedReorderedLast } from "./classes/callbacks/PostGameStartedReorderedLast";
|
|
23
|
-
import { PostGreedModeWave } from "./classes/callbacks/PostGreedModeWave";
|
|
24
|
-
import { PostGridEntityBroken } from "./classes/callbacks/PostGridEntityBroken";
|
|
25
|
-
import { PostGridEntityCollision } from "./classes/callbacks/PostGridEntityCollision";
|
|
26
|
-
import { PostGridEntityCustomBroken } from "./classes/callbacks/PostGridEntityCustomBroken";
|
|
27
|
-
import { PostGridEntityCustomCollision } from "./classes/callbacks/PostGridEntityCustomCollision";
|
|
28
|
-
import { PostGridEntityCustomInit } from "./classes/callbacks/PostGridEntityCustomInit";
|
|
29
|
-
import { PostGridEntityCustomRemove } from "./classes/callbacks/PostGridEntityCustomRemove";
|
|
30
|
-
import { PostGridEntityCustomRender } from "./classes/callbacks/PostGridEntityCustomRender";
|
|
31
|
-
import { PostGridEntityCustomStateChanged } from "./classes/callbacks/PostGridEntityCustomStateChanged";
|
|
32
|
-
import { PostGridEntityCustomUpdate } from "./classes/callbacks/PostGridEntityCustomUpdate";
|
|
33
|
-
import { PostGridEntityInit } from "./classes/callbacks/PostGridEntityInit";
|
|
34
|
-
import { PostGridEntityRemove } from "./classes/callbacks/PostGridEntityRemove";
|
|
35
|
-
import { PostGridEntityRender } from "./classes/callbacks/PostGridEntityRender";
|
|
36
|
-
import { PostGridEntityStateChanged } from "./classes/callbacks/PostGridEntityStateChanged";
|
|
37
|
-
import { PostGridEntityUpdate } from "./classes/callbacks/PostGridEntityUpdate";
|
|
38
|
-
import { PostHolyMantleRemoved } from "./classes/callbacks/PostHolyMantleRemoved";
|
|
39
|
-
import { PostItemDischarge } from "./classes/callbacks/PostItemDischarge";
|
|
40
|
-
import { PostItemPickup } from "./classes/callbacks/PostItemPickup";
|
|
41
|
-
import { PostKnifeInitLate } from "./classes/callbacks/PostKnifeInitLate";
|
|
42
|
-
import { PostLaserInitLate } from "./classes/callbacks/PostLaserInitLate";
|
|
43
|
-
import { PostNewLevelReordered } from "./classes/callbacks/PostNewLevelReordered";
|
|
44
|
-
import { PostNewRoomEarly } from "./classes/callbacks/PostNewRoomEarly";
|
|
45
|
-
import { PostNewRoomReordered } from "./classes/callbacks/PostNewRoomReordered";
|
|
46
|
-
import { PostNPCInitFilter } from "./classes/callbacks/PostNPCInitFilter";
|
|
47
|
-
import { PostNPCInitLate } from "./classes/callbacks/PostNPCInitLate";
|
|
48
|
-
import { PostNPCStateChanged } from "./classes/callbacks/PostNPCStateChanged";
|
|
49
|
-
import { PostNPCUpdateFilter } from "./classes/callbacks/PostNPCUpdateFilter";
|
|
50
|
-
import { PostPEffectUpdateReordered } from "./classes/callbacks/PostPEffectUpdateReordered";
|
|
51
|
-
import { PostPickupCollect } from "./classes/callbacks/PostPickupCollect";
|
|
52
|
-
import { PostPickupInitFirst } from "./classes/callbacks/PostPickupInitFirst";
|
|
53
|
-
import { PostPickupInitLate } from "./classes/callbacks/PostPickupInitLate";
|
|
54
|
-
import { PostPickupStateChanged } from "./classes/callbacks/PostPickupStateChanged";
|
|
55
|
-
import { PostPitRender } from "./classes/callbacks/PostPitRender";
|
|
56
|
-
import { PostPitUpdate } from "./classes/callbacks/PostPitUpdate";
|
|
57
|
-
import { PostPlayerChangeHealth } from "./classes/callbacks/PostPlayerChangeHealth";
|
|
58
|
-
import { PostPlayerChangeStat } from "./classes/callbacks/PostPlayerChangeStat";
|
|
59
|
-
import { PostPlayerChangeType } from "./classes/callbacks/PostPlayerChangeType";
|
|
60
|
-
import { PostPlayerCollectibleAdded } from "./classes/callbacks/PostPlayerCollectibleAdded";
|
|
61
|
-
import { PostPlayerCollectibleRemoved } from "./classes/callbacks/PostPlayerCollectibleRemoved";
|
|
62
|
-
import { PostPlayerFatalDamage } from "./classes/callbacks/PostPlayerFatalDamage";
|
|
63
|
-
import { PostPlayerInitFirst } from "./classes/callbacks/PostPlayerInitFirst";
|
|
64
|
-
import { PostPlayerInitLate } from "./classes/callbacks/PostPlayerInitLate";
|
|
65
|
-
import { PostPlayerRenderReordered } from "./classes/callbacks/PostPlayerRenderReordered";
|
|
66
|
-
import { PostPlayerUpdateReordered } from "./classes/callbacks/PostPlayerUpdateReordered";
|
|
67
|
-
import { PostPoopRender } from "./classes/callbacks/PostPoopRender";
|
|
68
|
-
import { PostPoopUpdate } from "./classes/callbacks/PostPoopUpdate";
|
|
69
|
-
import { PostPressurePlateRender } from "./classes/callbacks/PostPressurePlateRender";
|
|
70
|
-
import { PostPressurePlateUpdate } from "./classes/callbacks/PostPressurePlateUpdate";
|
|
71
|
-
import { PostProjectileInitLate } from "./classes/callbacks/PostProjectileInitLate";
|
|
72
|
-
import { PostPurchase } from "./classes/callbacks/PostPurchase";
|
|
73
|
-
import { PostRockRender } from "./classes/callbacks/PostRockRender";
|
|
74
|
-
import { PostRockUpdate } from "./classes/callbacks/PostRockUpdate";
|
|
75
|
-
import { PostRoomClearChanged } from "./classes/callbacks/PostRoomClearChanged";
|
|
76
|
-
import { PostSacrifice } from "./classes/callbacks/PostSacrifice";
|
|
77
|
-
import { PostSlotAnimationChanged } from "./classes/callbacks/PostSlotAnimationChanged";
|
|
78
|
-
import { PostSlotCollision } from "./classes/callbacks/PostSlotCollision";
|
|
79
|
-
import { PostSlotDestroyed } from "./classes/callbacks/PostSlotDestroyed";
|
|
80
|
-
import { PostSlotInit } from "./classes/callbacks/PostSlotInit";
|
|
81
|
-
import { PostSlotRender } from "./classes/callbacks/PostSlotRender";
|
|
82
|
-
import { PostSlotUpdate } from "./classes/callbacks/PostSlotUpdate";
|
|
83
|
-
import { PostSpikesRender } from "./classes/callbacks/PostSpikesRender";
|
|
84
|
-
import { PostSpikesUpdate } from "./classes/callbacks/PostSpikesUpdate";
|
|
85
|
-
import { PostTearInitLate } from "./classes/callbacks/PostTearInitLate";
|
|
86
|
-
import { PostTearInitVeryLate } from "./classes/callbacks/PostTearInitVeryLate";
|
|
87
|
-
import { PostTNTRender } from "./classes/callbacks/PostTNTRender";
|
|
88
|
-
import { PostTNTUpdate } from "./classes/callbacks/PostTNTUpdate";
|
|
89
|
-
import { PostTransformation } from "./classes/callbacks/PostTransformation";
|
|
90
|
-
import { PostTrinketBreak } from "./classes/callbacks/PostTrinketBreak";
|
|
91
|
-
import { PreBerserkDeath } from "./classes/callbacks/PreBerserkDeath";
|
|
92
|
-
import { PreCustomRevive } from "./classes/callbacks/PreCustomRevive";
|
|
93
|
-
import { PreGetPedestal } from "./classes/callbacks/PreGetPedestal";
|
|
94
|
-
import { PreItemPickup } from "./classes/callbacks/PreItemPickup";
|
|
95
|
-
import { PreNewLevel } from "./classes/callbacks/PreNewLevel";
|
|
1
|
+
import * as cc from "./callbackClasses";
|
|
96
2
|
declare const MOD_CALLBACK_CUSTOM_TO_CLASS: {
|
|
97
|
-
readonly 0: typeof
|
|
98
|
-
readonly 1: typeof
|
|
99
|
-
readonly 2: typeof
|
|
100
|
-
readonly 3: typeof
|
|
101
|
-
readonly 4: typeof
|
|
102
|
-
readonly 5: typeof
|
|
103
|
-
readonly 6: typeof
|
|
104
|
-
readonly 7: typeof
|
|
105
|
-
readonly 8: typeof
|
|
106
|
-
readonly 9: typeof
|
|
107
|
-
readonly 10: typeof
|
|
108
|
-
readonly 11: typeof
|
|
109
|
-
readonly 12: typeof
|
|
110
|
-
readonly 13: typeof
|
|
111
|
-
readonly 14: typeof
|
|
112
|
-
readonly 15: typeof
|
|
113
|
-
readonly 16: typeof
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
116
|
-
readonly
|
|
117
|
-
readonly 20: typeof
|
|
118
|
-
readonly 21: typeof
|
|
119
|
-
readonly 22: typeof
|
|
120
|
-
readonly 23: typeof
|
|
121
|
-
readonly 24: typeof
|
|
122
|
-
readonly 25: typeof
|
|
123
|
-
readonly 26: typeof
|
|
124
|
-
readonly 27: typeof
|
|
125
|
-
readonly 28: typeof
|
|
126
|
-
readonly 29: typeof
|
|
127
|
-
readonly 30: typeof
|
|
128
|
-
readonly 31: typeof
|
|
129
|
-
readonly 32: typeof
|
|
130
|
-
readonly 33: typeof
|
|
131
|
-
readonly 34: typeof
|
|
132
|
-
readonly 35: typeof
|
|
133
|
-
readonly 36: typeof
|
|
134
|
-
readonly 37: typeof
|
|
135
|
-
readonly 38: typeof
|
|
136
|
-
readonly 39: typeof
|
|
137
|
-
readonly 40: typeof
|
|
138
|
-
readonly 41: typeof
|
|
139
|
-
readonly 42: typeof
|
|
140
|
-
readonly 43: typeof
|
|
141
|
-
readonly 44: typeof
|
|
142
|
-
readonly 45: typeof
|
|
143
|
-
readonly 46: typeof
|
|
144
|
-
readonly 47: typeof
|
|
145
|
-
readonly 48: typeof
|
|
146
|
-
readonly 49: typeof
|
|
147
|
-
readonly 50: typeof
|
|
148
|
-
readonly 51: typeof
|
|
149
|
-
readonly 52: typeof
|
|
150
|
-
readonly 53: typeof
|
|
151
|
-
readonly 54: typeof
|
|
152
|
-
readonly 55: typeof
|
|
153
|
-
readonly 56: typeof
|
|
154
|
-
readonly 57: typeof
|
|
155
|
-
readonly 58: typeof
|
|
156
|
-
readonly 59: typeof
|
|
157
|
-
readonly 60: typeof
|
|
158
|
-
readonly 61: typeof
|
|
159
|
-
readonly 62: typeof
|
|
160
|
-
readonly 63: typeof
|
|
161
|
-
readonly 64: typeof
|
|
162
|
-
readonly 65: typeof
|
|
163
|
-
readonly 66: typeof
|
|
164
|
-
readonly 67: typeof
|
|
165
|
-
readonly 68: typeof
|
|
166
|
-
readonly 69: typeof
|
|
167
|
-
readonly 70: typeof
|
|
168
|
-
readonly 71: typeof
|
|
169
|
-
readonly 72: typeof
|
|
170
|
-
readonly 73: typeof
|
|
171
|
-
readonly 74: typeof
|
|
172
|
-
readonly 75: typeof
|
|
173
|
-
readonly 76: typeof
|
|
174
|
-
readonly 77: typeof
|
|
175
|
-
readonly 78: typeof
|
|
176
|
-
readonly 79: typeof
|
|
177
|
-
readonly 80: typeof
|
|
178
|
-
readonly 81: typeof
|
|
179
|
-
readonly 82: typeof
|
|
180
|
-
readonly 83: typeof
|
|
181
|
-
readonly 84: typeof
|
|
182
|
-
readonly 85: typeof
|
|
183
|
-
readonly 86: typeof
|
|
184
|
-
readonly 87: typeof
|
|
185
|
-
readonly 88: typeof
|
|
186
|
-
readonly 89: typeof
|
|
187
|
-
readonly 90: typeof
|
|
188
|
-
readonly 91: typeof
|
|
189
|
-
readonly 92: typeof
|
|
190
|
-
readonly 93: typeof
|
|
191
|
-
readonly 94: typeof
|
|
3
|
+
readonly 0: typeof cc.EntityTakeDmgFilter;
|
|
4
|
+
readonly 1: typeof cc.PostAmbushFinished;
|
|
5
|
+
readonly 2: typeof cc.PostAmbushStarted;
|
|
6
|
+
readonly 3: typeof cc.PostBombExploded;
|
|
7
|
+
readonly 4: typeof cc.PostBombInitLate;
|
|
8
|
+
readonly 5: typeof cc.PostBoneSwing;
|
|
9
|
+
readonly 6: typeof cc.PostCollectibleEmpty;
|
|
10
|
+
readonly 7: typeof cc.PostCollectibleInitFirst;
|
|
11
|
+
readonly 8: typeof cc.PostCursedTeleport;
|
|
12
|
+
readonly 9: typeof cc.PostCustomRevive;
|
|
13
|
+
readonly 10: typeof cc.PostDiceRoomActivated;
|
|
14
|
+
readonly 11: typeof cc.PostDoorRender;
|
|
15
|
+
readonly 12: typeof cc.PostDoorUpdate;
|
|
16
|
+
readonly 13: typeof cc.PostEffectInitLate;
|
|
17
|
+
readonly 14: typeof cc.PostEffectStateChanged;
|
|
18
|
+
readonly 15: typeof cc.PostEsauJr;
|
|
19
|
+
readonly 16: typeof cc.PostFamiliarInitLate;
|
|
20
|
+
readonly 17: typeof cc.PostFamiliarStateChanged;
|
|
21
|
+
readonly 19: typeof cc.PostFirstFlip;
|
|
22
|
+
readonly 18: typeof cc.PostFirstEsauJr;
|
|
23
|
+
readonly 20: typeof cc.PostFlip;
|
|
24
|
+
readonly 21: typeof cc.PostGameStartedReordered;
|
|
25
|
+
readonly 22: typeof cc.PostGameStartedReorderedLast;
|
|
26
|
+
readonly 23: typeof cc.PostGreedModeWave;
|
|
27
|
+
readonly 24: typeof cc.PostGridEntityBroken;
|
|
28
|
+
readonly 25: typeof cc.PostGridEntityCollision;
|
|
29
|
+
readonly 26: typeof cc.PostGridEntityCustomBroken;
|
|
30
|
+
readonly 27: typeof cc.PostGridEntityCustomCollision;
|
|
31
|
+
readonly 28: typeof cc.PostGridEntityCustomInit;
|
|
32
|
+
readonly 29: typeof cc.PostGridEntityCustomRemove;
|
|
33
|
+
readonly 30: typeof cc.PostGridEntityCustomRender;
|
|
34
|
+
readonly 31: typeof cc.PostGridEntityCustomStateChanged;
|
|
35
|
+
readonly 32: typeof cc.PostGridEntityCustomUpdate;
|
|
36
|
+
readonly 33: typeof cc.PostGridEntityInit;
|
|
37
|
+
readonly 34: typeof cc.PostGridEntityRemove;
|
|
38
|
+
readonly 35: typeof cc.PostGridEntityRender;
|
|
39
|
+
readonly 36: typeof cc.PostGridEntityStateChanged;
|
|
40
|
+
readonly 37: typeof cc.PostGridEntityUpdate;
|
|
41
|
+
readonly 38: typeof cc.PostHolyMantleRemoved;
|
|
42
|
+
readonly 39: typeof cc.PostItemDischarge;
|
|
43
|
+
readonly 40: typeof cc.PostItemPickup;
|
|
44
|
+
readonly 41: typeof cc.PostKnifeInitLate;
|
|
45
|
+
readonly 42: typeof cc.PostLaserInitLate;
|
|
46
|
+
readonly 43: typeof cc.PostNewLevelReordered;
|
|
47
|
+
readonly 44: typeof cc.PostNewRoomEarly;
|
|
48
|
+
readonly 45: typeof cc.PostNewRoomReordered;
|
|
49
|
+
readonly 46: typeof cc.PostNPCDeathFilter;
|
|
50
|
+
readonly 47: typeof cc.PostNPCInitFilter;
|
|
51
|
+
readonly 48: typeof cc.PostNPCInitLate;
|
|
52
|
+
readonly 49: typeof cc.PostNPCRenderFilter;
|
|
53
|
+
readonly 50: typeof cc.PostNPCStateChanged;
|
|
54
|
+
readonly 51: typeof cc.PostNPCUpdateFilter;
|
|
55
|
+
readonly 52: typeof cc.PostPEffectUpdateReordered;
|
|
56
|
+
readonly 53: typeof cc.PostPickupCollect;
|
|
57
|
+
readonly 54: typeof cc.PostPickupInitFirst;
|
|
58
|
+
readonly 55: typeof cc.PostPickupInitLate;
|
|
59
|
+
readonly 56: typeof cc.PostPickupStateChanged;
|
|
60
|
+
readonly 57: typeof cc.PostPitRender;
|
|
61
|
+
readonly 58: typeof cc.PostPitUpdate;
|
|
62
|
+
readonly 59: typeof cc.PostPlayerChangeHealth;
|
|
63
|
+
readonly 60: typeof cc.PostPlayerChangeStat;
|
|
64
|
+
readonly 61: typeof cc.PostPlayerChangeType;
|
|
65
|
+
readonly 62: typeof cc.PostPlayerCollectibleAdded;
|
|
66
|
+
readonly 63: typeof cc.PostPlayerCollectibleRemoved;
|
|
67
|
+
readonly 64: typeof cc.PostPlayerFatalDamage;
|
|
68
|
+
readonly 65: typeof cc.PostPlayerInitFirst;
|
|
69
|
+
readonly 66: typeof cc.PostPlayerInitLate;
|
|
70
|
+
readonly 67: typeof cc.PostPlayerRenderReordered;
|
|
71
|
+
readonly 68: typeof cc.PostPlayerUpdateReordered;
|
|
72
|
+
readonly 69: typeof cc.PostPoopRender;
|
|
73
|
+
readonly 70: typeof cc.PostPoopUpdate;
|
|
74
|
+
readonly 71: typeof cc.PostPressurePlateRender;
|
|
75
|
+
readonly 72: typeof cc.PostPressurePlateUpdate;
|
|
76
|
+
readonly 73: typeof cc.PostProjectileInitLate;
|
|
77
|
+
readonly 74: typeof cc.PostPurchase;
|
|
78
|
+
readonly 75: typeof cc.PostRockRender;
|
|
79
|
+
readonly 76: typeof cc.PostRockUpdate;
|
|
80
|
+
readonly 77: typeof cc.PostRoomClearChanged;
|
|
81
|
+
readonly 78: typeof cc.PostSacrifice;
|
|
82
|
+
readonly 79: typeof cc.PostSlotAnimationChanged;
|
|
83
|
+
readonly 80: typeof cc.PostSlotCollision;
|
|
84
|
+
readonly 81: typeof cc.PostSlotDestroyed;
|
|
85
|
+
readonly 82: typeof cc.PostSlotInit;
|
|
86
|
+
readonly 83: typeof cc.PostSlotRender;
|
|
87
|
+
readonly 84: typeof cc.PostSlotUpdate;
|
|
88
|
+
readonly 85: typeof cc.PostSpikesRender;
|
|
89
|
+
readonly 86: typeof cc.PostSpikesUpdate;
|
|
90
|
+
readonly 87: typeof cc.PostTearInitLate;
|
|
91
|
+
readonly 88: typeof cc.PostTearInitVeryLate;
|
|
92
|
+
readonly 89: typeof cc.PostTNTRender;
|
|
93
|
+
readonly 90: typeof cc.PostTNTUpdate;
|
|
94
|
+
readonly 91: typeof cc.PostTransformation;
|
|
95
|
+
readonly 92: typeof cc.PostTrinketBreak;
|
|
96
|
+
readonly 93: typeof cc.PreBerserkDeath;
|
|
97
|
+
readonly 94: typeof cc.PreCustomRevive;
|
|
98
|
+
readonly 95: typeof cc.PreGetPedestal;
|
|
99
|
+
readonly 96: typeof cc.PreItemPickup;
|
|
100
|
+
readonly 97: typeof cc.PreNewLevel;
|
|
101
|
+
readonly 98: typeof cc.PreNPCCollisionFilter;
|
|
102
|
+
readonly 99: typeof cc.PreNPCUpdateFilter;
|
|
192
103
|
};
|
|
193
104
|
export declare type ModCallbackCustomToClass = {
|
|
194
105
|
readonly [key in keyof typeof MOD_CALLBACK_CUSTOM_TO_CLASS]: InstanceType<typeof MOD_CALLBACK_CUSTOM_TO_CLASS[key]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callbacks.d.ts","sourceRoot":"","sources":["../../src/callbacks.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkHvB,CAAC;AAEZ,oBAAY,wBAAwB,GAAG;IACrC,QAAQ,EAAE,GAAG,IAAI,MAAM,OAAO,4BAA4B,GAAG,YAAY,CACvE,OAAO,4BAA4B,CAAC,GAAG,CAAC,CACzC;CACF,CAAC;AAEF,wBAAgB,YAAY,IAAI,wBAAwB,CASvD"}
|