isaacscript-common 8.8.0 → 8.8.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/sets/bossSets.lua +2 -2
- package/package.json +2 -2
- package/src/sets/bossSets.ts +2 -2
package/dist/sets/bossSets.lua
CHANGED
|
@@ -241,7 +241,7 @@ local MINES_BOSSES_SET = __TS__New(
|
|
|
241
241
|
(tostring(EntityType.LARRY_JR) .. ".") .. tostring(LarryJrVariant.TUFF_TWIN),
|
|
242
242
|
tostring(EntityType.REAP_CREEP) .. ".0",
|
|
243
243
|
tostring(EntityType.HORNFEL) .. ".0",
|
|
244
|
-
tostring(EntityType.
|
|
244
|
+
tostring(EntityType.GREAT_GIDEON) .. ".0"
|
|
245
245
|
}
|
|
246
246
|
)
|
|
247
247
|
--- Contains just the bosses in Ashpit (not e.g. Flooded Caves).
|
|
@@ -250,7 +250,7 @@ local ASHPIT_BOSSES_SET = __TS__New(
|
|
|
250
250
|
{
|
|
251
251
|
(tostring(EntityType.LARRY_JR) .. ".") .. tostring(LarryJrVariant.THE_SHELL),
|
|
252
252
|
(tostring(EntityType.POLYCEPHALUS) .. ".") .. tostring(PolycephalusVariant.THE_PILE),
|
|
253
|
-
tostring(EntityType.
|
|
253
|
+
tostring(EntityType.GREAT_GIDEON) .. ".0",
|
|
254
254
|
tostring(EntityType.SINGE) .. ".0",
|
|
255
255
|
tostring(EntityType.CLUTCH) .. ".0"
|
|
256
256
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.1",
|
|
4
4
|
"description": "Helper functions and features for IsaacScript mods.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"main": "dist/index",
|
|
23
23
|
"types": "dist/index.d.ts",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"isaac-typescript-definitions": "^3.
|
|
25
|
+
"isaac-typescript-definitions": "^3.6.1"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/sets/bossSets.ts
CHANGED
|
@@ -193,14 +193,14 @@ const MINES_BOSSES_SET: ReadonlySet<string> = new Set([
|
|
|
193
193
|
`${EntityType.LARRY_JR}.${LarryJrVariant.TUFF_TWIN}`, // 19.2
|
|
194
194
|
`${EntityType.REAP_CREEP}.0`, // 900.0
|
|
195
195
|
`${EntityType.HORNFEL}.0`, // 906.0
|
|
196
|
-
`${EntityType.
|
|
196
|
+
`${EntityType.GREAT_GIDEON}.0`, // 907.0
|
|
197
197
|
]);
|
|
198
198
|
|
|
199
199
|
/** Contains just the bosses in Ashpit (not e.g. Flooded Caves). */
|
|
200
200
|
const ASHPIT_BOSSES_SET: ReadonlySet<string> = new Set([
|
|
201
201
|
`${EntityType.LARRY_JR}.${LarryJrVariant.THE_SHELL}`, // 19.3
|
|
202
202
|
`${EntityType.POLYCEPHALUS}.${PolycephalusVariant.THE_PILE}`, // 269.1
|
|
203
|
-
`${EntityType.
|
|
203
|
+
`${EntityType.GREAT_GIDEON}.0`, // 907.0
|
|
204
204
|
`${EntityType.SINGE}.0`, // 915.0
|
|
205
205
|
`${EntityType.CLUTCH}.0`, // 921.0
|
|
206
206
|
]);
|