isaacscript-common 61.0.1 → 62.0.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/isaacscript-common.lua +1 -6
- package/dist/src/objects/pillEffectTypeToPillEffects.d.ts +0 -1
- package/dist/src/objects/pillEffectTypeToPillEffects.d.ts.map +1 -1
- package/dist/src/objects/pillEffectTypeToPillEffects.lua +0 -1
- package/package.json +2 -2
- package/src/objects/pillEffectTypeToPillEffects.ts +0 -5
- package/dist/src/indexLua.d.ts +0 -202
- package/dist/src/indexLua.d.ts.map +0 -1
- package/dist/src/indexLua.lua +0 -1186
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common
|
|
3
|
+
isaacscript-common 62.0.0
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -13822,8 +13822,6 @@ local ____exports = {}
|
|
|
13822
13822
|
--- This corresponds to the suffix of the "class" tag in the "pocketitems.xml" file. "+" is equal to
|
|
13823
13823
|
-- `POSITIVE`, "-" is equal to `NEGATIVE`, and no suffix is equal to `NEUTRAL`.
|
|
13824
13824
|
____exports.ItemConfigPillEffectType = {}
|
|
13825
|
-
____exports.ItemConfigPillEffectType.NULL = -1
|
|
13826
|
-
____exports.ItemConfigPillEffectType[____exports.ItemConfigPillEffectType.NULL] = "NULL"
|
|
13827
13825
|
____exports.ItemConfigPillEffectType.POSITIVE = 0
|
|
13828
13826
|
____exports.ItemConfigPillEffectType[____exports.ItemConfigPillEffectType.POSITIVE] = "POSITIVE"
|
|
13829
13827
|
____exports.ItemConfigPillEffectType.NEGATIVE = 1
|
|
@@ -13839,8 +13837,6 @@ local ____exports = {}
|
|
|
13839
13837
|
--- This corresponds to the number in the "class" tag in the "pocketitems.xml" file. The "+" or "-"
|
|
13840
13838
|
-- part of the tag is contained within the `ItemConfigPillEffectType` enum.
|
|
13841
13839
|
____exports.ItemConfigPillEffectClass = {}
|
|
13842
|
-
____exports.ItemConfigPillEffectClass.NULL = -1
|
|
13843
|
-
____exports.ItemConfigPillEffectClass[____exports.ItemConfigPillEffectClass.NULL] = "NULL"
|
|
13844
13840
|
____exports.ItemConfigPillEffectClass.JOKE = 0
|
|
13845
13841
|
____exports.ItemConfigPillEffectClass[____exports.ItemConfigPillEffectClass.JOKE] = "JOKE"
|
|
13846
13842
|
____exports.ItemConfigPillEffectClass.MINOR = 1
|
|
@@ -33402,7 +33398,6 @@ function getPillEffectsOfType(self, matchingPillEffectType)
|
|
|
33402
33398
|
)
|
|
33403
33399
|
end
|
|
33404
33400
|
____exports.PILL_EFFECT_TYPE_TO_PILL_EFFECTS = {
|
|
33405
|
-
[ItemConfigPillEffectType.NULL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NULL),
|
|
33406
33401
|
[ItemConfigPillEffectType.POSITIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.POSITIVE),
|
|
33407
33402
|
[ItemConfigPillEffectType.NEGATIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEGATIVE),
|
|
33408
33403
|
[ItemConfigPillEffectType.NEUTRAL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEUTRAL),
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { PillEffect } from "isaac-typescript-definitions";
|
|
2
2
|
export declare const PILL_EFFECT_TYPE_TO_PILL_EFFECTS: {
|
|
3
|
-
readonly [-1]: readonly PillEffect[];
|
|
4
3
|
readonly 0: readonly PillEffect[];
|
|
5
4
|
readonly 1: readonly PillEffect[];
|
|
6
5
|
readonly 2: readonly PillEffect[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pillEffectTypeToPillEffects.d.ts","sourceRoot":"","sources":["../../../src/objects/pillEffectTypeToPillEffects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAM/D,eAAO,MAAM,gCAAgC
|
|
1
|
+
{"version":3,"file":"pillEffectTypeToPillEffects.d.ts","sourceRoot":"","sources":["../../../src/objects/pillEffectTypeToPillEffects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAM/D,eAAO,MAAM,gCAAgC;;;;;CAoB+B,CAAC"}
|
|
@@ -19,7 +19,6 @@ function getPillEffectsOfType(self, matchingPillEffectType)
|
|
|
19
19
|
)
|
|
20
20
|
end
|
|
21
21
|
____exports.PILL_EFFECT_TYPE_TO_PILL_EFFECTS = {
|
|
22
|
-
[ItemConfigPillEffectType.NULL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NULL),
|
|
23
22
|
[ItemConfigPillEffectType.POSITIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.POSITIVE),
|
|
24
23
|
[ItemConfigPillEffectType.NEGATIVE] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEGATIVE),
|
|
25
24
|
[ItemConfigPillEffectType.NEUTRAL] = getPillEffectsOfType(nil, ItemConfigPillEffectType.NEUTRAL),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "62.0.0",
|
|
4
4
|
"description": "Helper functions and features for IsaacScript mods.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"main": "dist/src/index",
|
|
26
26
|
"types": "dist/index.rollup.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"isaac-typescript-definitions": "^
|
|
28
|
+
"isaac-typescript-definitions": "^28.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -5,11 +5,6 @@ import { filterMap } from "../functions/array";
|
|
|
5
5
|
import { PILL_EFFECT_TYPES } from "./pillEffectTypes";
|
|
6
6
|
|
|
7
7
|
export const PILL_EFFECT_TYPE_TO_PILL_EFFECTS = {
|
|
8
|
-
// -1
|
|
9
|
-
[ItemConfigPillEffectType.NULL]: getPillEffectsOfType(
|
|
10
|
-
ItemConfigPillEffectType.NULL,
|
|
11
|
-
),
|
|
12
|
-
|
|
13
8
|
// 0
|
|
14
9
|
[ItemConfigPillEffectType.POSITIVE]: getPillEffectsOfType(
|
|
15
10
|
ItemConfigPillEffectType.POSITIVE,
|
package/dist/src/indexLua.d.ts
DELETED
|
@@ -1,202 +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/constantsVanilla";
|
|
8
|
-
export * from "./core/upgradeMod";
|
|
9
|
-
export * from "./enums/AmbushType";
|
|
10
|
-
export * from "./enums/CornerType";
|
|
11
|
-
export * from "./enums/HealthType";
|
|
12
|
-
export * from "./enums/ISCFeature";
|
|
13
|
-
export * from "./enums/LadderSubTypeCustom";
|
|
14
|
-
export * from "./enums/ModCallbackCustom";
|
|
15
|
-
export * from "./enums/MysteriousPaperEffect";
|
|
16
|
-
export * from "./enums/PlayerStat";
|
|
17
|
-
export * from "./enums/PocketItemType";
|
|
18
|
-
export * from "./enums/RockAltType";
|
|
19
|
-
export * from "./enums/SaveDataKey";
|
|
20
|
-
export * from "./enums/SerializationType";
|
|
21
|
-
export * from "./enums/SlotDestructionType";
|
|
22
|
-
export * from "./functions/ambush";
|
|
23
|
-
export * from "./functions/array";
|
|
24
|
-
export * from "./functions/arrayLua";
|
|
25
|
-
export * from "./functions/benchmark";
|
|
26
|
-
export * from "./functions/bitSet128";
|
|
27
|
-
export * from "./functions/bitwise";
|
|
28
|
-
export * from "./functions/bombs";
|
|
29
|
-
export * from "./functions/bosses";
|
|
30
|
-
export * from "./functions/cards";
|
|
31
|
-
export * from "./functions/challenges";
|
|
32
|
-
export * from "./functions/characters";
|
|
33
|
-
export * from "./functions/charge";
|
|
34
|
-
export * from "./functions/chargeBar";
|
|
35
|
-
export * from "./functions/collectibleTag";
|
|
36
|
-
export * from "./functions/collectibles";
|
|
37
|
-
export * from "./functions/color";
|
|
38
|
-
export * from "./functions/console";
|
|
39
|
-
export * from "./functions/curses";
|
|
40
|
-
export * from "./functions/debugFunctions";
|
|
41
|
-
export * from "./functions/decorators";
|
|
42
|
-
export * from "./functions/deepCopy";
|
|
43
|
-
export * from "./functions/deepCopyTests";
|
|
44
|
-
export * from "./functions/dimensions";
|
|
45
|
-
export * from "./functions/direction";
|
|
46
|
-
export * from "./functions/doors";
|
|
47
|
-
export * from "./functions/easing";
|
|
48
|
-
export * from "./functions/effects";
|
|
49
|
-
export * from "./functions/emptyRoom";
|
|
50
|
-
export * from "./functions/entities";
|
|
51
|
-
export * from "./functions/entitiesSpecific";
|
|
52
|
-
export * from "./functions/entityTypes";
|
|
53
|
-
export * from "./functions/enums";
|
|
54
|
-
export * from "./functions/external";
|
|
55
|
-
export * from "./functions/familiars";
|
|
56
|
-
export * from "./functions/flag";
|
|
57
|
-
export * from "./functions/frames";
|
|
58
|
-
export * from "./functions/globals";
|
|
59
|
-
export * from "./functions/gridEntities";
|
|
60
|
-
export * from "./functions/gridEntitiesSpecific";
|
|
61
|
-
export * from "./functions/gridIndex";
|
|
62
|
-
export * from "./functions/hex";
|
|
63
|
-
export * from "./functions/input";
|
|
64
|
-
export * from "./functions/isaacAPIClass";
|
|
65
|
-
export * from "./functions/itemPool";
|
|
66
|
-
export * from "./functions/jsonHelpers";
|
|
67
|
-
export * from "./functions/jsonRoom";
|
|
68
|
-
export * from "./functions/kColor";
|
|
69
|
-
export * from "./functions/language";
|
|
70
|
-
export * from "./functions/level";
|
|
71
|
-
export * from "./functions/levelGrid";
|
|
72
|
-
export * from "./functions/log";
|
|
73
|
-
export * from "./functions/logEntities";
|
|
74
|
-
export * from "./functions/logMisc";
|
|
75
|
-
export * from "./functions/map";
|
|
76
|
-
export * from "./functions/math";
|
|
77
|
-
export * from "./functions/merge";
|
|
78
|
-
export * from "./functions/mergeTests";
|
|
79
|
-
export * from "./functions/minimap";
|
|
80
|
-
export * from "./functions/modFeatures";
|
|
81
|
-
export * from "./functions/newArray";
|
|
82
|
-
export * from "./functions/nextStage";
|
|
83
|
-
export * from "./functions/npcDataStructures";
|
|
84
|
-
export * from "./functions/npcs";
|
|
85
|
-
export * from "./functions/pickupVariants";
|
|
86
|
-
export * from "./functions/pickups";
|
|
87
|
-
export * from "./functions/pickupsSpecific";
|
|
88
|
-
export * from "./functions/pills";
|
|
89
|
-
export * from "./functions/playerCenter";
|
|
90
|
-
export * from "./functions/playerCollectibles";
|
|
91
|
-
export * from "./functions/playerDataStructures";
|
|
92
|
-
export * from "./functions/playerHealth";
|
|
93
|
-
export * from "./functions/playerIndex";
|
|
94
|
-
export * from "./functions/playerTrinkets";
|
|
95
|
-
export * from "./functions/players";
|
|
96
|
-
export * from "./functions/pocketItems";
|
|
97
|
-
export * from "./functions/positionVelocity";
|
|
98
|
-
export * from "./functions/pressurePlate";
|
|
99
|
-
export * from "./functions/projectiles";
|
|
100
|
-
export * from "./functions/random";
|
|
101
|
-
export * from "./functions/readOnly";
|
|
102
|
-
export * from "./functions/render";
|
|
103
|
-
export * from "./functions/revive";
|
|
104
|
-
export * from "./functions/rng";
|
|
105
|
-
export * from "./functions/rockAlt";
|
|
106
|
-
export * from "./functions/roomData";
|
|
107
|
-
export * from "./functions/roomGrid";
|
|
108
|
-
export * from "./functions/roomShape";
|
|
109
|
-
export * from "./functions/roomShapeWalls";
|
|
110
|
-
export * from "./functions/roomTransition";
|
|
111
|
-
export * from "./functions/rooms";
|
|
112
|
-
export * from "./functions/run";
|
|
113
|
-
export * from "./functions/seeds";
|
|
114
|
-
export * from "./functions/serialization";
|
|
115
|
-
export * from "./functions/set";
|
|
116
|
-
export * from "./functions/slots";
|
|
117
|
-
export * from "./functions/sort";
|
|
118
|
-
export * from "./functions/sound";
|
|
119
|
-
export * from "./functions/spawnCollectible";
|
|
120
|
-
export * from "./functions/sprites";
|
|
121
|
-
export * from "./functions/stage";
|
|
122
|
-
export * from "./functions/stats";
|
|
123
|
-
export * from "./functions/string";
|
|
124
|
-
export * from "./functions/table";
|
|
125
|
-
export * from "./functions/tears";
|
|
126
|
-
export * from "./functions/transformations";
|
|
127
|
-
export * from "./functions/trinketGive";
|
|
128
|
-
export * from "./functions/trinkets";
|
|
129
|
-
export * from "./functions/tstlClass";
|
|
130
|
-
export * from "./functions/types";
|
|
131
|
-
export * from "./functions/ui";
|
|
132
|
-
export * from "./functions/utils";
|
|
133
|
-
export * from "./functions/vector";
|
|
134
|
-
export * from "./functions/versusScreen";
|
|
135
|
-
export * from "./functions/weighted";
|
|
136
|
-
export * from "./interfaces/ChargeBarSprites";
|
|
137
|
-
export * from "./interfaces/Corner";
|
|
138
|
-
export * from "./interfaces/CustomStageTSConfig";
|
|
139
|
-
export * from "./interfaces/GridEntityCustomData";
|
|
140
|
-
export * from "./interfaces/JSONRoomsFile";
|
|
141
|
-
export * from "./interfaces/PlayerHealth";
|
|
142
|
-
export * from "./interfaces/PlayerStats";
|
|
143
|
-
export * from "./interfaces/PocketItemDescription";
|
|
144
|
-
export * from "./interfaces/RoomDescription";
|
|
145
|
-
export * from "./interfaces/SaveData";
|
|
146
|
-
export * from "./interfaces/StageHistoryEntry";
|
|
147
|
-
export * from "./interfaces/TSTLClassMetatable";
|
|
148
|
-
export * from "./interfaces/TrinketSituation";
|
|
149
|
-
export * from "./maps/cardNameToTypeMap";
|
|
150
|
-
export * from "./maps/characterNameToTypeMap";
|
|
151
|
-
export * from "./maps/collectibleNameToTypeMap";
|
|
152
|
-
export * from "./maps/pillNameToEffectMap";
|
|
153
|
-
export * from "./maps/roomNameToTypeMap";
|
|
154
|
-
export * from "./maps/transformationNameToPlayerFormMap";
|
|
155
|
-
export * from "./maps/trinketNameToTypeMap";
|
|
156
|
-
export * from "./objects/colors";
|
|
157
|
-
export * from "./objects/kColors";
|
|
158
|
-
export * from "./types/AddSubtract";
|
|
159
|
-
export * from "./types/AllButFirst";
|
|
160
|
-
export * from "./types/AllButLast";
|
|
161
|
-
export * from "./types/AnyClass";
|
|
162
|
-
export * from "./types/AnyEntity";
|
|
163
|
-
export * from "./types/AnyFunction";
|
|
164
|
-
export * from "./types/AnyGridEntity";
|
|
165
|
-
export * from "./types/CompositionTypeSatisfiesEnum";
|
|
166
|
-
export * from "./types/ConversionHeartSubType";
|
|
167
|
-
export * from "./types/Decrement";
|
|
168
|
-
export * from "./types/ERange";
|
|
169
|
-
export * from "./types/EntityID";
|
|
170
|
-
export * from "./types/Expand";
|
|
171
|
-
export * from "./types/FunctionTuple";
|
|
172
|
-
export * from "./types/GridEntityID";
|
|
173
|
-
export * from "./types/HasFunction";
|
|
174
|
-
export * from "./types/IRange";
|
|
175
|
-
export * from "./types/Immutable";
|
|
176
|
-
export * from "./types/Increment";
|
|
177
|
-
export * from "./types/LowercaseKeys";
|
|
178
|
-
export * from "./types/NaturalNumbersLessThan";
|
|
179
|
-
export * from "./types/NaturalNumbersLessThanOrEqualTo";
|
|
180
|
-
export * from "./types/PickingUpItem";
|
|
181
|
-
export * from "./types/PickupIndex";
|
|
182
|
-
export * from "./types/PlayerIndex";
|
|
183
|
-
export * from "./types/PossibleStatType";
|
|
184
|
-
export * from "./types/PublicInterface";
|
|
185
|
-
export * from "./types/ReadonlyMap";
|
|
186
|
-
export * from "./types/ReadonlySet";
|
|
187
|
-
export * from "./types/StartsWithLowercase";
|
|
188
|
-
export * from "./types/StartsWithUppercase";
|
|
189
|
-
export * from "./types/TSTLClass";
|
|
190
|
-
export * from "./types/Tuple";
|
|
191
|
-
export * from "./types/TupleKeys";
|
|
192
|
-
export * from "./types/TupleToIntersection";
|
|
193
|
-
export * from "./types/TupleToUnion";
|
|
194
|
-
export * from "./types/TupleWithLengthBetween";
|
|
195
|
-
export * from "./types/TupleWithMaxLength";
|
|
196
|
-
export * from "./types/UnionToIntersection";
|
|
197
|
-
export * from "./types/UppercaseKeys";
|
|
198
|
-
export * from "./types/WeightedArray";
|
|
199
|
-
export * from "./types/WidenLiteral";
|
|
200
|
-
export * from "./types/Writable";
|
|
201
|
-
export * from "isaac-typescript-definitions";
|
|
202
|
-
//# 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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"}
|