isaacscript-common 37.1.0 → 38.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.
@@ -1,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 37.1.0
3
+ isaacscript-common 38.0.0
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -9778,8 +9778,8 @@ ____exports.BossID.RAGLICH = 98
9778
9778
  ____exports.BossID[____exports.BossID.RAGLICH] = "RAGLICH"
9779
9779
  ____exports.BossID.DOGMA = 99
9780
9780
  ____exports.BossID[____exports.BossID.DOGMA] = "DOGMA"
9781
- ____exports.BossID.BEAST = 100
9782
- ____exports.BossID[____exports.BossID.BEAST] = "BEAST"
9781
+ ____exports.BossID.THE_BEAST = 100
9782
+ ____exports.BossID[____exports.BossID.THE_BEAST] = "THE_BEAST"
9783
9783
  ____exports.BossID.HORNY_BOYS = 101
9784
9784
  ____exports.BossID[____exports.BossID.HORNY_BOYS] = "HORNY_BOYS"
9785
9785
  ____exports.BossID.CLUTCH = 102
@@ -44484,7 +44484,7 @@ ____exports.BOSS_NAME_PNG_FILE_NAMES = {
44484
44484
  [BossID.TURDLET] = "bossname_turdlet.png",
44485
44485
  [BossID.RAGLICH] = "bossname_raglich.png",
44486
44486
  [BossID.DOGMA] = "bossname_dogma.png",
44487
- [BossID.BEAST] = "bossname_dogma.png",
44487
+ [BossID.THE_BEAST] = "bossname_dogma.png",
44488
44488
  [BossID.HORNY_BOYS] = "bossname_hornyboys.png",
44489
44489
  [BossID.CLUTCH] = "bossname_clutch.png"
44490
44490
  }
@@ -44593,7 +44593,7 @@ ____exports.BOSS_PORTRAIT_PNG_FILE_NAMES = {
44593
44593
  [BossID.TURDLET] = "portrait_turdlet.png",
44594
44594
  [BossID.RAGLICH] = "portrait_raglich.png",
44595
44595
  [BossID.DOGMA] = "portrait_dogma.png",
44596
- [BossID.BEAST] = "portrait_dogma.png",
44596
+ [BossID.THE_BEAST] = "portrait_dogma.png",
44597
44597
  [BossID.HORNY_BOYS] = "portrait_hornyboys.png",
44598
44598
  [BossID.CLUTCH] = "portrait_clutch.png"
44599
44599
  }
@@ -101,7 +101,7 @@ ____exports.BOSS_NAME_PNG_FILE_NAMES = {
101
101
  [BossID.TURDLET] = "bossname_turdlet.png",
102
102
  [BossID.RAGLICH] = "bossname_raglich.png",
103
103
  [BossID.DOGMA] = "bossname_dogma.png",
104
- [BossID.BEAST] = "bossname_dogma.png",
104
+ [BossID.THE_BEAST] = "bossname_dogma.png",
105
105
  [BossID.HORNY_BOYS] = "bossname_hornyboys.png",
106
106
  [BossID.CLUTCH] = "bossname_clutch.png"
107
107
  }
@@ -101,7 +101,7 @@ ____exports.BOSS_PORTRAIT_PNG_FILE_NAMES = {
101
101
  [BossID.TURDLET] = "portrait_turdlet.png",
102
102
  [BossID.RAGLICH] = "portrait_raglich.png",
103
103
  [BossID.DOGMA] = "portrait_dogma.png",
104
- [BossID.BEAST] = "portrait_dogma.png",
104
+ [BossID.THE_BEAST] = "portrait_dogma.png",
105
105
  [BossID.HORNY_BOYS] = "portrait_hornyboys.png",
106
106
  [BossID.CLUTCH] = "portrait_clutch.png"
107
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "37.1.0",
3
+ "version": "38.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": "^16.1.2"
28
+ "isaac-typescript-definitions": "^17.0.0"
29
29
  }
30
30
  }
@@ -107,7 +107,7 @@ export const BOSS_NAME_PNG_FILE_NAMES = {
107
107
  [BossID.RAGLICH]: "bossname_raglich.png", // 98
108
108
  [BossID.DOGMA]: "bossname_dogma.png", // 99
109
109
  // There is no versus-screen for The Beast, so use Dogma instead.
110
- [BossID.BEAST]: "bossname_dogma.png", // 100
110
+ [BossID.THE_BEAST]: "bossname_dogma.png", // 100
111
111
  [BossID.HORNY_BOYS]: "bossname_hornyboys.png", // 101
112
112
  [BossID.CLUTCH]: "bossname_clutch.png", // 102
113
113
  } as const satisfies Record<BossID, string>;
@@ -110,7 +110,7 @@ export const BOSS_PORTRAIT_PNG_FILE_NAMES = {
110
110
  [BossID.RAGLICH]: "portrait_raglich.png", // 98
111
111
  [BossID.DOGMA]: "portrait_dogma.png", // 99
112
112
  // There is no versus-screen for The Beast, so use Dogma instead.
113
- [BossID.BEAST]: "portrait_dogma.png", // 100
113
+ [BossID.THE_BEAST]: "portrait_dogma.png", // 100
114
114
  [BossID.HORNY_BOYS]: "portrait_hornyboys.png", // 101
115
115
  [BossID.CLUTCH]: "portrait_clutch.png", // 102
116
116
  } as const satisfies Record<BossID, string>;