isaacscript-common 51.2.0 → 51.2.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 +1 -0
- package/dist/isaacscript-common.lua +10 -6
- package/dist/src/classes/features/other/ExtraConsoleCommands.d.ts.map +1 -1
- package/dist/src/classes/features/other/ExtraConsoleCommands.lua +6 -2
- package/dist/src/functions/bosses.d.ts +1 -0
- package/dist/src/functions/bosses.d.ts.map +1 -1
- package/dist/src/functions/bosses.lua +1 -0
- package/dist/src/sets/bossSets.d.ts.map +1 -1
- package/dist/src/sets/bossSets.lua +3 -3
- package/package.json +1 -1
- package/src/classes/features/other/ExtraConsoleCommands.ts +5 -2
- package/src/functions/bosses.ts +1 -0
- package/src/sets/bossSets.ts +56 -30
package/dist/index.rollup.d.ts
CHANGED
|
@@ -4727,6 +4727,7 @@ export declare function getAliveNPCs(entityType?: EntityType | -1, variant?: num
|
|
|
4727
4727
|
* - bosses that do not appear in Boss Rooms (e.g. Uriel, Gabriel)
|
|
4728
4728
|
* - the second phase of multi-phase bosses (e.g. Mega Satan 2, Ultra Famine, Ultra Pestilence,
|
|
4729
4729
|
* Ultra War, Ultra Death)
|
|
4730
|
+
* - bosses that do not have any Boss Rooms defined due to being unfinished (e.g. Raglich)
|
|
4730
4731
|
*
|
|
4731
4732
|
* Also see the `getBossSet` and `getCombinedBossSet` functions.
|
|
4732
4733
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 51.2.
|
|
3
|
+
isaacscript-common 51.2.1
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -43994,9 +43994,9 @@ local BASEMENT_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
|
43994
43994
|
local CELLAR_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
43995
43995
|
BossID.FAMINE,
|
|
43996
43996
|
BossID.DUKE_OF_FLIES,
|
|
43997
|
-
BossID.GEMINI,
|
|
43998
43997
|
BossID.HEADLESS_HORSEMAN,
|
|
43999
43998
|
BossID.FALLEN,
|
|
43999
|
+
BossID.BLIGHTED_OVUM,
|
|
44000
44000
|
BossID.WIDOW,
|
|
44001
44001
|
BossID.PIN,
|
|
44002
44002
|
BossID.HAUNT,
|
|
@@ -44052,10 +44052,10 @@ local CAVES_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
|
44052
44052
|
BossID.FISTULA,
|
|
44053
44053
|
BossID.CHAD,
|
|
44054
44054
|
BossID.HEADLESS_HORSEMAN,
|
|
44055
|
-
BossID.FALLEN,
|
|
44056
44055
|
BossID.GURDY_JR,
|
|
44057
|
-
BossID.MEGA_MAW,
|
|
44058
44056
|
BossID.MEGA_FATTY,
|
|
44057
|
+
BossID.MEGA_MAW,
|
|
44058
|
+
BossID.FALLEN,
|
|
44059
44059
|
BossID.STAIN,
|
|
44060
44060
|
BossID.RAG_MEGA,
|
|
44061
44061
|
BossID.BIG_HORN,
|
|
@@ -51096,6 +51096,8 @@ local isVanillaConsoleCommand = ____console.isVanillaConsoleCommand
|
|
|
51096
51096
|
local ____flag = require("src.functions.flag")
|
|
51097
51097
|
local addFlag = ____flag.addFlag
|
|
51098
51098
|
local bitFlags = ____flag.bitFlags
|
|
51099
|
+
local ____logMisc = require("src.functions.logMisc")
|
|
51100
|
+
local logError = ____logMisc.logError
|
|
51099
51101
|
local ____string = require("src.functions.string")
|
|
51100
51102
|
local getMapPartialMatch = ____string.getMapPartialMatch
|
|
51101
51103
|
local ____utils = require("src.functions.utils")
|
|
@@ -51225,10 +51227,12 @@ function ExtraConsoleCommands.prototype.addConsoleCommand(self, commandName, com
|
|
|
51225
51227
|
return
|
|
51226
51228
|
end
|
|
51227
51229
|
if isVanillaConsoleCommand(nil, commandName) then
|
|
51228
|
-
|
|
51230
|
+
logError(("Failed to add a new console command of \"" .. commandName) .. "\" because that name already belongs to a vanilla command. You must pick a non-colliding name.")
|
|
51231
|
+
return
|
|
51229
51232
|
end
|
|
51230
51233
|
if self.commandFunctionMap:has(commandName) then
|
|
51231
|
-
|
|
51234
|
+
logError(("Failed to add a new console command of \"" .. commandName) .. "\" because there is already an existing custom command by that name. If you want to overwrite a command from the standard library, you can use the \"removeExtraConsoleCommand\" function.")
|
|
51235
|
+
return
|
|
51232
51236
|
end
|
|
51233
51237
|
self.commandFunctionMap:set(commandName, commandFunction)
|
|
51234
51238
|
end
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExtraConsoleCommands.d.ts","sourceRoot":"","sources":["../../../../../src/classes/features/other/ExtraConsoleCommands.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ExtraConsoleCommands.d.ts","sourceRoot":"","sources":["../../../../../src/classes/features/other/ExtraConsoleCommands.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAShD;;;;;;;;;;GAUG;AACH,qBAAa,oBAAqB,SAAQ,OAAO;IAI/C,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAU;IAExC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAG/B;IAoEJ,OAAO,CAAC,QAAQ,CAAC,UAAU,CAKzB;IAIF,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAIlC;IAIF,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAIrC;IAIF,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAIjC;IAIF,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAIlC;IAGF,OAAO,CAAC,QAAQ,CAAC,aAAa,CAkD5B;IAGF,OAAO,CAAC,QAAQ,CAAC,UAAU,CAWzB;IAGF,OAAO,CAAC,QAAQ,CAAC,YAAY,CAI3B;IAGF,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAYlC;IAEF;;;;;;;;;;;;OAYG;IAEI,iBAAiB,CACtB,WAAW,EAAE,MAAM,EACnB,eAAe,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,GACxC,IAAI;IA8BP;;;;;;;;;;OAUG;IAEI,oBAAoB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAqBtD;;;;;;;;;OASG;IAEI,wBAAwB,IAAI,IAAI;CAGxC"}
|
|
@@ -21,6 +21,8 @@ local isVanillaConsoleCommand = ____console.isVanillaConsoleCommand
|
|
|
21
21
|
local ____flag = require("src.functions.flag")
|
|
22
22
|
local addFlag = ____flag.addFlag
|
|
23
23
|
local bitFlags = ____flag.bitFlags
|
|
24
|
+
local ____logMisc = require("src.functions.logMisc")
|
|
25
|
+
local logError = ____logMisc.logError
|
|
24
26
|
local ____string = require("src.functions.string")
|
|
25
27
|
local getMapPartialMatch = ____string.getMapPartialMatch
|
|
26
28
|
local ____utils = require("src.functions.utils")
|
|
@@ -159,10 +161,12 @@ function ExtraConsoleCommands.prototype.addConsoleCommand(self, commandName, com
|
|
|
159
161
|
return
|
|
160
162
|
end
|
|
161
163
|
if isVanillaConsoleCommand(nil, commandName) then
|
|
162
|
-
|
|
164
|
+
logError(("Failed to add a new console command of \"" .. commandName) .. "\" because that name already belongs to a vanilla command. You must pick a non-colliding name.")
|
|
165
|
+
return
|
|
163
166
|
end
|
|
164
167
|
if self.commandFunctionMap:has(commandName) then
|
|
165
|
-
|
|
168
|
+
logError(("Failed to add a new console command of \"" .. commandName) .. "\" because there is already an existing custom command by that name. If you want to overwrite a command from the standard library, you can use the \"removeExtraConsoleCommand\" function.")
|
|
169
|
+
return
|
|
166
170
|
end
|
|
167
171
|
self.commandFunctionMap:set(commandName, commandFunction)
|
|
168
172
|
end
|
|
@@ -23,6 +23,7 @@ export declare function getAliveBosses(entityType?: EntityType | -1, variant?: n
|
|
|
23
23
|
* - bosses that do not appear in Boss Rooms (e.g. Uriel, Gabriel)
|
|
24
24
|
* - the second phase of multi-phase bosses (e.g. Mega Satan 2, Ultra Famine, Ultra Pestilence,
|
|
25
25
|
* Ultra War, Ultra Death)
|
|
26
|
+
* - bosses that do not have any Boss Rooms defined due to being unfinished (e.g. Raglich)
|
|
26
27
|
*
|
|
27
28
|
* Also see the `getBossSet` and `getCombinedBossSet` functions.
|
|
28
29
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bosses.d.ts","sourceRoot":"","sources":["../../../src/functions/bosses.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,UAAU,EACV,SAAS,EACV,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,UAAU,EAAe,MAAM,8BAA8B,CAAC;AA0CvE;;;;;;;;;;;;;GAaG;AACH,wBAAgB,cAAc,CAC5B,UAAU,GAAE,UAAU,GAAG,CAAC,CAAM,EAChC,OAAO,SAAK,EACZ,OAAO,SAAK,EACZ,cAAc,UAAQ,GACrB,SAAS,EAAE,CAGb;AAED
|
|
1
|
+
{"version":3,"file":"bosses.d.ts","sourceRoot":"","sources":["../../../src/functions/bosses.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EACN,UAAU,EACV,SAAS,EACV,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,UAAU,EAAe,MAAM,8BAA8B,CAAC;AA0CvE;;;;;;;;;;;;;GAaG;AACH,wBAAgB,cAAc,CAC5B,UAAU,GAAE,UAAU,GAAG,CAAC,CAAM,EAChC,OAAO,SAAK,EACZ,OAAO,SAAK,EACZ,cAAc,UAAQ,GACrB,SAAS,EAAE,CAGb;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,eAAe,CAC7B,kBAAkB,UAAO,GACxB,WAAW,CAAC,MAAM,CAAC,CAIrB;AAED,wBAAgB,8BAA8B,CAC5C,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,GAAG,GACX,MAAM,GAAG,SAAS,CAGpB;AAED;;;;;GAKG;AACH,wBAAgB,UAAU,CACxB,KAAK,EAAE,UAAU,EACjB,SAAS,EAAE,SAAS,GACnB,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAOjC;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,SAAS,CACvB,UAAU,CAAC,EAAE,UAAU,EACvB,OAAO,CAAC,EAAE,GAAG,EACb,OAAO,CAAC,EAAE,GAAG,EACb,cAAc,UAAQ,GACrB,SAAS,EAAE,CAGb;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,UAAU,GAChB,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAEjC;AAED,wBAAgB,8BAA8B,CAC5C,MAAM,EAAE,MAAM,GACb,SAAS,CAAC,UAAU,EAAE,GAAG,CAAC,CAE5B;AAED,6FAA6F;AAC7F,wBAAgB,KAAK,CAAC,GAAG,EAAE,SAAS,GAAG,OAAO,CAE7C;AAmCD;;;;;;;;;GASG;AACH,wBAAgB,SAAS,CACvB,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,GAAG,EACZ,OAAO,EAAE,GAAG,EACZ,mBAAmB,EAAE,MAAM,GAAG,GAAG,EACjC,QAAQ,GAAE,MAAmB,EAC7B,OAAO,GAAE,MAAM,GAAG,SAAqB,EACvC,SAAS,GAAE,IAAI,GAAG,GAAG,GAAG,SAAqB,EAC7C,WAAW,CAAC,EAAE,GAAG,GAChB,SAAS,CAiCX;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,GAAG,EACZ,OAAO,EAAE,GAAG,EACZ,mBAAmB,EAAE,MAAM,GAAG,GAAG,EACjC,SAAS,EAAE,IAAI,GAAG,GAAG,EACrB,QAAQ,GAAE,MAAmB,EAC7B,OAAO,GAAE,MAAM,GAAG,SAAqB,EACvC,WAAW,CAAC,EAAE,GAAG,GAChB,SAAS,CAYX"}
|
|
@@ -95,6 +95,7 @@ end
|
|
|
95
95
|
-- - bosses that do not appear in Boss Rooms (e.g. Uriel, Gabriel)
|
|
96
96
|
-- - the second phase of multi-phase bosses (e.g. Mega Satan 2, Ultra Famine, Ultra Pestilence,
|
|
97
97
|
-- Ultra War, Ultra Death)
|
|
98
|
+
-- - bosses that do not have any Boss Rooms defined due to being unfinished (e.g. Raglich)
|
|
98
99
|
--
|
|
99
100
|
-- Also see the `getBossSet` and `getCombinedBossSet` functions.
|
|
100
101
|
--
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bossSets.d.ts","sourceRoot":"","sources":["../../../src/sets/bossSets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAa,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"bossSets.d.ts","sourceRoot":"","sources":["../../../src/sets/bossSets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAa,MAAM,8BAA8B,CAAC;AA8e7E,eAAO,MAAM,mCAAmC,gEAiB9C,CAAC;AAEH,eAAO,MAAM,8BAA8B,8CAiBzC,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,WAAW,CAAC,MAAM,CAU9C,CAAC;AAyBF,eAAO,MAAM,qCAAqC,EAAE,WAAW,CAAC,MAAM,CAMhE,CAAC"}
|
|
@@ -37,9 +37,9 @@ local BASEMENT_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
|
37
37
|
local CELLAR_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
38
38
|
BossID.FAMINE,
|
|
39
39
|
BossID.DUKE_OF_FLIES,
|
|
40
|
-
BossID.GEMINI,
|
|
41
40
|
BossID.HEADLESS_HORSEMAN,
|
|
42
41
|
BossID.FALLEN,
|
|
42
|
+
BossID.BLIGHTED_OVUM,
|
|
43
43
|
BossID.WIDOW,
|
|
44
44
|
BossID.PIN,
|
|
45
45
|
BossID.HAUNT,
|
|
@@ -100,10 +100,10 @@ local CAVES_BOSSES_SET = __TS__New(ReadonlySet, {
|
|
|
100
100
|
BossID.FISTULA,
|
|
101
101
|
BossID.CHAD,
|
|
102
102
|
BossID.HEADLESS_HORSEMAN,
|
|
103
|
-
BossID.FALLEN,
|
|
104
103
|
BossID.GURDY_JR,
|
|
105
|
-
BossID.MEGA_MAW,
|
|
106
104
|
BossID.MEGA_FATTY,
|
|
105
|
+
BossID.MEGA_MAW,
|
|
106
|
+
BossID.FALLEN,
|
|
107
107
|
BossID.STAIN,
|
|
108
108
|
BossID.RAG_MEGA,
|
|
109
109
|
BossID.BIG_HORN,
|
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@ import { Exported } from "../../../decorators";
|
|
|
10
10
|
import { ModCallbackCustom } from "../../../enums/ModCallbackCustom";
|
|
11
11
|
import { isVanillaConsoleCommand } from "../../../functions/console";
|
|
12
12
|
import { addFlag, bitFlags } from "../../../functions/flag";
|
|
13
|
+
import { logError } from "../../../functions/logMisc";
|
|
13
14
|
import { getMapPartialMatch } from "../../../functions/string";
|
|
14
15
|
import { assertDefined } from "../../../functions/utils";
|
|
15
16
|
import { Feature } from "../../private/Feature";
|
|
@@ -268,15 +269,17 @@ export class ExtraConsoleCommands extends Feature {
|
|
|
268
269
|
}
|
|
269
270
|
|
|
270
271
|
if (isVanillaConsoleCommand(commandName)) {
|
|
271
|
-
|
|
272
|
+
logError(
|
|
272
273
|
`Failed to add a new console command of "${commandName}" because that name already belongs to a vanilla command. You must pick a non-colliding name.`,
|
|
273
274
|
);
|
|
275
|
+
return;
|
|
274
276
|
}
|
|
275
277
|
|
|
276
278
|
if (this.commandFunctionMap.has(commandName)) {
|
|
277
|
-
|
|
279
|
+
logError(
|
|
278
280
|
`Failed to add a new console command of "${commandName}" because there is already an existing custom command by that name. If you want to overwrite a command from the standard library, you can use the "removeExtraConsoleCommand" function.`,
|
|
279
281
|
);
|
|
282
|
+
return;
|
|
280
283
|
}
|
|
281
284
|
|
|
282
285
|
this.commandFunctionMap.set(commandName, commandFunction);
|
package/src/functions/bosses.ts
CHANGED
|
@@ -77,6 +77,7 @@ export function getAliveBosses(
|
|
|
77
77
|
* - bosses that do not appear in Boss Rooms (e.g. Uriel, Gabriel)
|
|
78
78
|
* - the second phase of multi-phase bosses (e.g. Mega Satan 2, Ultra Famine, Ultra Pestilence,
|
|
79
79
|
* Ultra War, Ultra Death)
|
|
80
|
+
* - bosses that do not have any Boss Rooms defined due to being unfinished (e.g. Raglich)
|
|
80
81
|
*
|
|
81
82
|
* Also see the `getBossSet` and `getCombinedBossSet` functions.
|
|
82
83
|
*
|
package/src/sets/bossSets.ts
CHANGED
|
@@ -23,24 +23,26 @@ const BASEMENT_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
23
23
|
BossID.DINGLE, // 44
|
|
24
24
|
BossID.GURGLING, // 56
|
|
25
25
|
BossID.LITTLE_HORN, // 60
|
|
26
|
+
// - `BossID.RAG_MAN` (61) was removed in Repentance.
|
|
26
27
|
BossID.DANGLE, // 64
|
|
27
28
|
BossID.TURDLING, // 65
|
|
28
|
-
BossID.BABY_PLUM, // 84
|
|
29
|
+
BossID.BABY_PLUM, // 84 (added in Repentance)
|
|
29
30
|
]);
|
|
30
31
|
|
|
31
32
|
/** Contains just the bosses in Cellar (not e.g. Burning Basement). */
|
|
32
33
|
const CELLAR_BOSSES_SET = new ReadonlySet<BossID>([
|
|
33
34
|
BossID.FAMINE, // 9
|
|
34
35
|
BossID.DUKE_OF_FLIES, // 13
|
|
35
|
-
BossID.
|
|
36
|
+
// - `BossID.FISTULA` (18) was removed in Repentance.
|
|
36
37
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
37
38
|
BossID.FALLEN, // 23
|
|
39
|
+
BossID.BLIGHTED_OVUM, // 32
|
|
38
40
|
BossID.WIDOW, // 34
|
|
39
41
|
BossID.PIN, // 37
|
|
40
42
|
BossID.HAUNT, // 43
|
|
41
43
|
BossID.LITTLE_HORN, // 60
|
|
42
44
|
BossID.RAG_MAN, // 61
|
|
43
|
-
BossID.BABY_PLUM, // 84
|
|
45
|
+
BossID.BABY_PLUM, // 84 (added in Repentance)
|
|
44
46
|
]);
|
|
45
47
|
|
|
46
48
|
/** Contains just the bosses in Burning Basement (not e.g. Cellar). */
|
|
@@ -49,17 +51,18 @@ const BURNING_BASEMENT_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
49
51
|
BossID.LARRY_JR, // 2
|
|
50
52
|
BossID.FAMINE, // 9
|
|
51
53
|
BossID.DUKE_OF_FLIES, // 13
|
|
52
|
-
BossID.GEMINI, // 17
|
|
53
|
-
BossID.STEVEN, // 20
|
|
54
|
+
BossID.GEMINI, // 17 (added in Repentance)
|
|
55
|
+
BossID.STEVEN, // 20 (added in Repentance)
|
|
54
56
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
55
57
|
BossID.FALLEN, // 23
|
|
56
|
-
BossID.
|
|
57
|
-
BossID.
|
|
58
|
+
// - `BossID.HAUNT` (43) was removed in Repentance.
|
|
59
|
+
BossID.DINGLE, // 44 (added in Repentance)
|
|
60
|
+
BossID.GURGLING, // 56 (added in Repentance)
|
|
58
61
|
BossID.LITTLE_HORN, // 60
|
|
59
62
|
BossID.RAG_MAN, // 61
|
|
60
|
-
BossID.DANGLE, // 64
|
|
61
|
-
BossID.TURDLING, // 65
|
|
62
|
-
BossID.BABY_PLUM, // 84
|
|
63
|
+
BossID.DANGLE, // 64 (added in Repentance)
|
|
64
|
+
BossID.TURDLING, // 65 (added in Repentance)
|
|
65
|
+
BossID.BABY_PLUM, // 84 (added in Repentance)
|
|
63
66
|
]);
|
|
64
67
|
|
|
65
68
|
/** Contains just the bosses in Downpour (not e.g. Burning Basement). */
|
|
@@ -105,17 +108,20 @@ const CAVES_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
105
108
|
BossID.GURDY, // 4
|
|
106
109
|
BossID.PESTILENCE, // 10
|
|
107
110
|
BossID.PEEP, // 14
|
|
108
|
-
BossID.FISTULA, // 18
|
|
111
|
+
BossID.FISTULA, // 18 (added in Repentance)
|
|
109
112
|
BossID.CHAD, // 21
|
|
110
113
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
111
|
-
BossID.FALLEN, // 23
|
|
112
114
|
BossID.GURDY_JR, // 28
|
|
113
|
-
BossID.MEGA_MAW, // 45
|
|
114
115
|
BossID.MEGA_FATTY, // 47
|
|
116
|
+
BossID.MEGA_MAW, // 45
|
|
117
|
+
// - `BossID.DARK_ONE` (50) was removed in Repentance.
|
|
118
|
+
BossID.FALLEN, // 23
|
|
115
119
|
BossID.STAIN, // 57
|
|
120
|
+
// - `BossID.FORSAKEN` (59) was removed in Repentance.
|
|
121
|
+
// - `BossID.FRAIL` (66) was removed in Repentance.
|
|
116
122
|
BossID.RAG_MEGA, // 67
|
|
117
123
|
BossID.BIG_HORN, // 69
|
|
118
|
-
BossID.BUMBINO, // 94
|
|
124
|
+
BossID.BUMBINO, // 94 (added in Repentance)
|
|
119
125
|
]);
|
|
120
126
|
|
|
121
127
|
/** Contains just the bosses in Catacombs (not e.g. Flooded Caves). */
|
|
@@ -131,11 +137,12 @@ const CATACOMBS_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
131
137
|
BossID.WRETCHED, // 36
|
|
132
138
|
BossID.DARK_ONE, // 50
|
|
133
139
|
BossID.POLYCEPHALUS, // 52
|
|
140
|
+
// - `BossID.STAIN` (57) was removed in Repentance.
|
|
134
141
|
BossID.FORSAKEN, // 59
|
|
135
142
|
BossID.FRAIL, // 66
|
|
136
143
|
BossID.RAG_MEGA, // 67
|
|
137
144
|
BossID.BIG_HORN, // 69
|
|
138
|
-
BossID.BUMBINO, // 94
|
|
145
|
+
BossID.BUMBINO, // 94 (added in Repentance)
|
|
139
146
|
]);
|
|
140
147
|
|
|
141
148
|
/** Contains just the bosses in Flooded Caves (not e.g. Catacombs). */
|
|
@@ -144,19 +151,21 @@ const FLOODED_CAVES_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
144
151
|
BossID.GURDY, // 4
|
|
145
152
|
BossID.PESTILENCE, // 10
|
|
146
153
|
BossID.PEEP, // 14
|
|
147
|
-
BossID.FISTULA, // 18
|
|
154
|
+
BossID.FISTULA, // 18 (added in Repentance)
|
|
148
155
|
BossID.CHAD, // 21
|
|
149
156
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
150
157
|
BossID.FALLEN, // 23
|
|
151
158
|
BossID.GURDY_JR, // 28
|
|
152
|
-
BossID.MEGA_MAW, // 45
|
|
153
|
-
BossID.MEGA_FATTY, // 47
|
|
159
|
+
BossID.MEGA_MAW, // 45 (added in Repentance)
|
|
160
|
+
BossID.MEGA_FATTY, // 47 (added in Repentance)
|
|
161
|
+
// - `BossID.DARK_ONE` (50) was removed in Repentance.
|
|
162
|
+
// - `BossID.POLYCEPHALUS` (52) was removed in Repentance.
|
|
154
163
|
BossID.STAIN, // 57
|
|
155
164
|
BossID.FORSAKEN, // 59
|
|
156
165
|
BossID.FRAIL, // 66
|
|
157
166
|
BossID.RAG_MEGA, // 67
|
|
158
167
|
BossID.BIG_HORN, // 69
|
|
159
|
-
BossID.BUMBINO, // 94
|
|
168
|
+
BossID.BUMBINO, // 94 (added in Repentance)
|
|
160
169
|
]);
|
|
161
170
|
|
|
162
171
|
/** Contains just the bosses in Mines (not e.g. Flooded Caves). */
|
|
@@ -211,9 +220,10 @@ const DEPTHS_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
211
220
|
BossID.FALLEN, // 23
|
|
212
221
|
BossID.GATE, // 46
|
|
213
222
|
BossID.CAGE, // 48
|
|
223
|
+
// - `BossID.ADVERSARY` (51) was removed in Repentance.
|
|
214
224
|
BossID.BROWNIE, // 58
|
|
215
225
|
BossID.SISTERS_VIS, // 68
|
|
216
|
-
BossID.REAP_CREEP, // 74
|
|
226
|
+
BossID.REAP_CREEP, // 74 (added in Repentance)
|
|
217
227
|
]);
|
|
218
228
|
|
|
219
229
|
/**
|
|
@@ -229,10 +239,11 @@ const NECROPOLIS_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
229
239
|
BossID.FALLEN, // 23
|
|
230
240
|
BossID.BLOAT, // 30
|
|
231
241
|
BossID.MASK_OF_INFAMY, // 35
|
|
242
|
+
// - `BossID.GATE` (46) was removed in Repentance.
|
|
232
243
|
BossID.ADVERSARY, // 51
|
|
233
244
|
BossID.BROWNIE, // 58
|
|
234
245
|
BossID.SISTERS_VIS, // 68
|
|
235
|
-
BossID.PILE, // 73
|
|
246
|
+
BossID.PILE, // 73 (added in Repentance)
|
|
236
247
|
]);
|
|
237
248
|
|
|
238
249
|
/**
|
|
@@ -248,11 +259,12 @@ const DANK_DEPTHS_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
248
259
|
BossID.GISH, // 19
|
|
249
260
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
250
261
|
BossID.FALLEN, // 23
|
|
251
|
-
BossID.GATE, // 46
|
|
252
|
-
BossID.CAGE, // 48
|
|
262
|
+
BossID.GATE, // 46 (added in Repentance)
|
|
263
|
+
BossID.CAGE, // 48 (added in Repentance)
|
|
264
|
+
// - `BossID.ADVERSARY` (51) was removed in Repentance.
|
|
253
265
|
BossID.BROWNIE, // 58
|
|
254
266
|
BossID.SISTERS_VIS, // 68
|
|
255
|
-
BossID.REAP_CREEP, // 74
|
|
267
|
+
BossID.REAP_CREEP, // 74 (added in Repentance)
|
|
256
268
|
]);
|
|
257
269
|
|
|
258
270
|
/**
|
|
@@ -311,10 +323,15 @@ const WOMB_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
311
323
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
312
324
|
BossID.FALLEN, // 23
|
|
313
325
|
BossID.IT_LIVES, // 25
|
|
326
|
+
// - `BossID.BLOAT` (30) was removed in Repentance.
|
|
314
327
|
BossID.LOKII, // 31
|
|
328
|
+
// - `BossID.TERATOMA` (33) was removed in Repentance.
|
|
315
329
|
BossID.CONQUEST, // 38
|
|
330
|
+
// - `BossID.DADDY_LONG_LEGS` (41) was removed in Repentance.
|
|
331
|
+
// - `BossID.TRIACHNID` (42) was removed in Repentance.
|
|
316
332
|
BossID.MAMA_GURDY, // 49
|
|
317
333
|
BossID.MR_FRED, // 53
|
|
334
|
+
// - `BossID.SISTERS_VIS` (68) was removed in Repentance.
|
|
318
335
|
BossID.MATRIARCH, // 72
|
|
319
336
|
]);
|
|
320
337
|
|
|
@@ -327,6 +344,7 @@ const WOMB_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
327
344
|
const UTERO_BOSSES_SET = new ReadonlySet<BossID>([
|
|
328
345
|
BossID.MOMS_HEART, // 8
|
|
329
346
|
BossID.DEATH, // 12
|
|
347
|
+
// - `BossID.BLASTOCYST` (16) was removed in Repentance.
|
|
330
348
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
331
349
|
BossID.FALLEN, // 23
|
|
332
350
|
BossID.IT_LIVES, // 25
|
|
@@ -336,6 +354,10 @@ const UTERO_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
336
354
|
BossID.CONQUEST, // 38
|
|
337
355
|
BossID.DADDY_LONG_LEGS, // 41
|
|
338
356
|
BossID.TRIACHNID, // 42
|
|
357
|
+
// - `BossID.MAMA_GURDY` (49) was removed in Repentance.
|
|
358
|
+
// - `BossID.MR_FRED` (52) was removed in Repentance.
|
|
359
|
+
// - `BossID.SISTERS_VIS` (68) was removed in Repentance.
|
|
360
|
+
// - `BossID.MATRIARCH` (72) was removed in Repentance.
|
|
339
361
|
]);
|
|
340
362
|
|
|
341
363
|
/**
|
|
@@ -352,11 +374,15 @@ const SCARRED_WOMB_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
352
374
|
BossID.HEADLESS_HORSEMAN, // 22
|
|
353
375
|
BossID.FALLEN, // 23
|
|
354
376
|
BossID.IT_LIVES, // 25
|
|
355
|
-
BossID.
|
|
377
|
+
// - `BossID.BLOAT` (30) was removed in Repentance.
|
|
378
|
+
BossID.LOKII, // 31 (added in Repentance)
|
|
379
|
+
// - `BossID.TERATOMA` (33) was removed in Repentance.
|
|
356
380
|
BossID.CONQUEST, // 38
|
|
381
|
+
// - `BossID.DADDY_LONG_LEGS` (41) was removed in Repentance.
|
|
357
382
|
BossID.TRIACHNID, // 42
|
|
358
383
|
BossID.MAMA_GURDY, // 49
|
|
359
|
-
BossID.MR_FRED, // 53
|
|
384
|
+
BossID.MR_FRED, // 53 (added in Repentance)
|
|
385
|
+
// - `BossID.SISTERS_VIS` (68) was removed in Repentance.
|
|
360
386
|
BossID.MATRIARCH, // 72
|
|
361
387
|
]);
|
|
362
388
|
|
|
@@ -366,10 +392,10 @@ const SCARRED_WOMB_BOSSES_SET = new ReadonlySet<BossID>([
|
|
|
366
392
|
* Note that this set includes Mother, even though they are not technically in the boss pool.
|
|
367
393
|
*/
|
|
368
394
|
const CORPSE_BOSSES_SET = new ReadonlySet<BossID>([
|
|
369
|
-
BossID.SCOURGE,
|
|
370
|
-
BossID.CHIMERA,
|
|
371
|
-
BossID.ROTGUT,
|
|
372
|
-
BossID.MOTHER,
|
|
395
|
+
BossID.SCOURGE, // 85
|
|
396
|
+
BossID.CHIMERA, // 86
|
|
397
|
+
BossID.ROTGUT, // 87
|
|
398
|
+
BossID.MOTHER, // 88
|
|
373
399
|
]);
|
|
374
400
|
|
|
375
401
|
/** The set of unique bosses for Depths, Necropolis, and so on. */
|