isaacscript-common 56.0.0 → 56.1.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.
@@ -0,0 +1,118 @@
1
+ import { BossID } from "isaac-typescript-definitions";
2
+
3
+ export const DEFAULT_BOSS_NAME = "Unknown";
4
+
5
+ /**
6
+ * From "bossportraits.xml".
7
+ *
8
+ * Note that Blue Baby returns "Blue Baby" instead of "???".
9
+ */
10
+ export const BOSS_NAMES = {
11
+ [BossID.MONSTRO]: "Monstro", // 1
12
+ [BossID.LARRY_JR]: "Larry Jr.", // 2
13
+ [BossID.CHUB]: "Chub", // 3
14
+ [BossID.GURDY]: "Gurdy", // 4
15
+ [BossID.MONSTRO_2]: "Monstro II", // 5
16
+ [BossID.MOM]: "Mom", // 6
17
+ [BossID.SCOLEX]: "Scolex", // 7
18
+ [BossID.MOMS_HEART]: "Mom's Heart", // 8
19
+ [BossID.FAMINE]: "Famine", // 9
20
+ [BossID.PESTILENCE]: "Pestilence", // 10
21
+ [BossID.WAR]: "War", // 11
22
+ [BossID.DEATH]: "Death", // 12
23
+ [BossID.DUKE_OF_FLIES]: "Duke of Flies", // 13
24
+ [BossID.PEEP]: "Peep", // 14
25
+ [BossID.LOKI]: "Loki", // 15
26
+ [BossID.BLASTOCYST]: "Blastocyst", // 16
27
+ [BossID.GEMINI]: "Gemini", // 17
28
+ [BossID.FISTULA]: "Fistula", // 18
29
+ [BossID.GISH]: "Gish", // 19
30
+ [BossID.STEVEN]: "Steven", // 20
31
+ [BossID.CHAD]: "C.H.A.D.", // 21
32
+ [BossID.HEADLESS_HORSEMAN]: "Headless Horseman", // 22
33
+ [BossID.FALLEN]: "The Fallen", // 23
34
+ [BossID.SATAN]: "Satan", // 24
35
+ [BossID.IT_LIVES]: "It Lives!", // 25
36
+ [BossID.HOLLOW]: "The Hollow", // 26
37
+ [BossID.CARRION_QUEEN]: "The Carrion Queen", // 27
38
+ [BossID.GURDY_JR]: "Gurdy Jr.", // 28
39
+ [BossID.HUSK]: "The Husk", // 29
40
+ [BossID.BLOAT]: "The Bloat", // 30
41
+ [BossID.LOKII]: "Lokii", // 31
42
+ [BossID.BLIGHTED_OVUM]: "The Blighted Ovum", // 32
43
+ [BossID.TERATOMA]: "Teratoma", // 33
44
+ [BossID.WIDOW]: "The Widow", // 34
45
+ [BossID.MASK_OF_INFAMY]: "Mask of Infamy", // 35
46
+ [BossID.WRETCHED]: "The Wretched", // 36
47
+ [BossID.PIN]: "Pin", // 37
48
+ [BossID.CONQUEST]: "Conquest", // 38
49
+ [BossID.ISAAC]: "Isaac", // 39
50
+ [BossID.BLUE_BABY]: "Blue Baby", // 40
51
+ [BossID.DADDY_LONG_LEGS]: "Daddy Long Legs", // 41
52
+ [BossID.TRIACHNID]: "Triachnid", // 42
53
+ [BossID.HAUNT]: "The Haunt", // 43
54
+ [BossID.DINGLE]: "Dingle", // 44
55
+ [BossID.MEGA_MAW]: "Mega Maw", // 45
56
+ // "Mega Maw II" is changed to "The Gate".
57
+ [BossID.GATE]: "The Gate", // 46
58
+ [BossID.MEGA_FATTY]: "Mega Fatty", // 47
59
+ // "Mega Fatty II" is changed to "The Cage".
60
+ [BossID.CAGE]: "The Cage", // 48
61
+ [BossID.MAMA_GURDY]: "Mega Gurdy", // 49
62
+ [BossID.DARK_ONE]: "Dark One", // 50
63
+ // "Dark One II" is changed to "The Adversary".
64
+ [BossID.ADVERSARY]: "The Adversary", // 51
65
+ [BossID.POLYCEPHALUS]: "Polycephalus", // 52
66
+ // "Mega Fred" is changed to "Mr. Fred".
67
+ [BossID.MR_FRED]: "Mr. Fred", // 53
68
+ [BossID.LAMB]: "The Lamb", // 54
69
+ [BossID.MEGA_SATAN]: "Mega Satan", // 55
70
+ [BossID.GURGLING]: "Gurglings", // 56
71
+ [BossID.STAIN]: "The Stain", // 57
72
+ [BossID.BROWNIE]: "Brownie", // 58
73
+ [BossID.FORSAKEN]: "The Forsaken", // 59
74
+ [BossID.LITTLE_HORN]: "Little Horn", // 60
75
+ [BossID.RAG_MAN]: "Rag Man", // 61
76
+ [BossID.ULTRA_GREED]: "Ultra Greed", // 62
77
+ [BossID.HUSH]: "Hush", // 63
78
+ [BossID.DANGLE]: "Dangle", // 64
79
+ [BossID.TURDLING]: "Turdling", // 65
80
+ [BossID.FRAIL]: "The Frail", // 66
81
+ [BossID.RAG_MEGA]: "Rag Mega", // 67
82
+ [BossID.SISTERS_VIS]: "Sisters Vis", // 68
83
+ [BossID.BIG_HORN]: "Big Horn", // 69
84
+ [BossID.DELIRIUM]: "Delirium", // 70
85
+ [BossID.ULTRA_GREEDIER]: "Ultra Greedier", // 71
86
+ [BossID.MATRIARCH]: "The Matriarch", // 72
87
+ [BossID.PILE]: "The Pile", // 73
88
+ [BossID.REAP_CREEP]: "Reap Creep", // 74
89
+ // "Beelzeblub" is changed to "Lil Blub".
90
+ [BossID.LIL_BLUB]: "Lil Blub", // 75
91
+ [BossID.WORMWOOD]: "Wormwood", // 76
92
+ [BossID.RAINMAKER]: "The Rainmaker", // 77
93
+ [BossID.VISAGE]: "The Visage", // 78
94
+ [BossID.SIREN]: "The Siren", // 79
95
+ [BossID.TUFF_TWINS]: "Tuff Twins", // 80
96
+ [BossID.HERETIC]: "The Heretic", // 81
97
+ [BossID.HORNFEL]: "Hornfel", // 82
98
+ [BossID.GREAT_GIDEON]: "Great Gideon", // 83
99
+ [BossID.BABY_PLUM]: "Baby Plum", // 84
100
+ [BossID.SCOURGE]: "The Scourge", // 85
101
+ [BossID.CHIMERA]: "Chimera", // 86
102
+ [BossID.ROTGUT]: "Rotgut", // 87
103
+ [BossID.MOTHER]: "Mother", // 88
104
+ [BossID.MAUSOLEUM_MOM]: "Mom (Mausoleum)", // 89
105
+ [BossID.MAUSOLEUM_MOMS_HEART]: "Mom's Heart (Mausoleum)", // 90
106
+ [BossID.MIN_MIN]: "Min-Min", // 91
107
+ [BossID.CLOG]: "Clog", // 92
108
+ [BossID.SINGE]: "Singe", // 93
109
+ [BossID.BUMBINO]: "Bumbino", // 94
110
+ [BossID.COLOSTOMIA]: "Colostomia", // 95
111
+ [BossID.SHELL]: "The Shell", // 96
112
+ [BossID.TURDLET]: "Turdlet", // 97
113
+ [BossID.RAGLICH]: "Raglich", // 98
114
+ [BossID.DOGMA]: "Dogma", // 99
115
+ [BossID.BEAST]: "The Beast", // 100
116
+ [BossID.HORNY_BOYS]: "Horny Boys", // 101
117
+ [BossID.CLUTCH]: "Clutch", // 102
118
+ } as const satisfies Record<BossID, string>;
@@ -2,115 +2,121 @@
2
2
 
3
3
  import { BossID } from "isaac-typescript-definitions";
4
4
 
5
- /** Used when rendering the "versusscreen.anm2" sprite. */
5
+ /**
6
+ * From the "portrait" attribute in the "bossportraits.xml" file. Used when rendering the
7
+ * "versusscreen.anm2" sprite.
8
+ */
6
9
  export const BOSS_PORTRAIT_PNG_FILE_NAMES = {
7
- [BossID.MONSTRO]: "portrait_20.0_monstro.png", // 1
8
- [BossID.LARRY_JR]: "portrait_19.0_larryjr.png", // 2
9
- [BossID.CHUB]: "portrait_28.0_chub.png", // 3
10
- [BossID.GURDY]: "portrait_36.0_gurdy.png", // 4
11
- [BossID.MONSTRO_2]: "portrait_43.0_monstro2.png", // 5
12
- [BossID.MOM]: "portrait_45.0_mom.png", // 6
13
- [BossID.SCOLEX]: "portrait_62.1_scolex.png", // 7
14
- [BossID.MOMS_HEART]: "portrait_78.0_momsheart.png", // 8
15
- [BossID.FAMINE]: "portrait_63.0_famine.png", // 9
16
- [BossID.PESTILENCE]: "portrait_64.0_pestilence.png", // 10
17
- [BossID.WAR]: "portrait_65.0_war.png", // 11
18
- [BossID.DEATH]: "portrait_66.0_death.png", // 12
19
- [BossID.DUKE_OF_FLIES]: "portrait_67.0_dukeofflies.png", // 13
20
- [BossID.PEEP]: "portrait_68.0_peep.png", // 14
21
- [BossID.LOKI]: "portrait_69.0_loki.png", // 15
22
- [BossID.BLASTOCYST]: "portrait_74.0_blastocyst.png", // 16
23
- [BossID.GEMINI]: "portrait_79.0_gemini.png", // 17
24
- [BossID.FISTULA]: "portrait_71.0_fistula.png", // 18
25
- [BossID.GISH]: "portrait_43.1_gish.png", // 19
26
- [BossID.STEVEN]: "portrait_79.1_steven.png", // 20
27
- [BossID.CHAD]: "portrait_28.1_chad.png", // 21
28
- [BossID.HEADLESS_HORSEMAN]: "portrait_82.0_headlesshorseman.png", // 22
29
- [BossID.FALLEN]: "portrait_81.0_thefallen.png", // 23
30
- [BossID.SATAN]: "portrait_84.0_satan.png", // 24
31
- [BossID.IT_LIVES]: "portrait_78.1_itlives.png", // 25
32
- [BossID.HOLLOW]: "portrait_19.1_thehollow.png", // 26
33
- [BossID.CARRION_QUEEN]: "portrait_28.2_carrionqueen.png", // 27
34
- [BossID.GURDY_JR]: "portrait_99.0_gurdyjr.png", // 28
35
- [BossID.HUSK]: "portrait_67.1_thehusk.png", // 29
36
- [BossID.BLOAT]: "portrait_68.1_bloat.png", // 30
37
- [BossID.LOKII]: "portrait_69.1_lokii.png", // 31
38
- [BossID.BLIGHTED_OVUM]: "portrait_79.2_blightedovum.png", // 32
39
- [BossID.TERATOMA]: "portrait_71.1_teratoma.png", // 33
40
- [BossID.WIDOW]: "portrait_100.0_widow.png", // 34
41
- [BossID.MASK_OF_INFAMY]: "portrait_97.0_maskofinfamy.png", // 35
42
- [BossID.WRETCHED]: "portrait_100.1_thewretched.png", // 36
43
- [BossID.PIN]: "portrait_62.0_pin.png", // 37
44
- [BossID.CONQUEST]: "portrait_65.1_conquest.png", // 38
45
- [BossID.ISAAC]: "portrait_102.0_isaac.png", // 39
46
- [BossID.BLUE_BABY]: "portrait_102.1_bluebaby.png", // 40
47
- [BossID.DADDY_LONG_LEGS]: "portrait_101.0_daddylonglegs.png", // 41
48
- [BossID.TRIACHNID]: "portrait_101.1_triachnid.png", // 42
49
- [BossID.HAUNT]: "portrait_260.0_thehaunt.png", // 43
50
- [BossID.DINGLE]: "portrait_261.0_dingle.png", // 44
51
- [BossID.MEGA_MAW]: "portrait_262.0_megamaw.png", // 45
52
- [BossID.GATE]: "portrait_263.0_megamaw2.png", // 46
53
- [BossID.MEGA_FATTY]: "portrait_264.0_megafatty.png", // 47
54
- [BossID.CAGE]: "portrait_265.0_fatty2.png", // 48
55
- [BossID.MAMA_GURDY]: "portrait_266.0_mamagurdy.png", // 49
56
- [BossID.DARK_ONE]: "portrait_267.0_darkone.png", // 50
57
- [BossID.ADVERSARY]: "portrait_268.0_darkone2.png", // 51
58
- [BossID.POLYCEPHALUS]: "portrait_269.0_polycephalus.png", // 52
59
- [BossID.MR_FRED]: "portrait_270.0_megafred.png", // 53
60
- [BossID.LAMB]: "portrait_273.0_thelamb.png", // 54
61
- [BossID.MEGA_SATAN]: "portrait_274.0_megasatan.png", // 55
62
- [BossID.GURGLING]: "portrait_276.0_gurglings.png", // 56
63
- [BossID.STAIN]: "portrait_401.0_thestain.png", // 57
64
- [BossID.BROWNIE]: "portrait_402.0_brownie.png", // 58
65
- [BossID.FORSAKEN]: "portrait_403.0_theforsaken.png", // 59
66
- [BossID.LITTLE_HORN]: "portrait_404.0_littlehorn.png", // 60
67
- [BossID.RAG_MAN]: "portrait_405.0_ragman.png", // 61
68
- [BossID.ULTRA_GREED]: "portrait_406.0_ultragreed.png", // 62
69
- [BossID.HUSH]: "portrait_407.0_hush.png", // 63
70
- [BossID.DANGLE]: "portrait_dangle.png", // 64
71
- [BossID.TURDLING]: "portrait_turdlings.png", // 65
72
- [BossID.FRAIL]: "portrait_thefrail.png", // 66
73
- [BossID.RAG_MEGA]: "portrait_ragmega.png", // 67
74
- [BossID.SISTERS_VIS]: "portrait_sistersvis.png", // 68
75
- [BossID.BIG_HORN]: "portrait_bighorn.png", // 69
76
- [BossID.DELIRIUM]: "portrait_delirium.png", // 70
77
- // There is no `BossID` with a value of 71.
78
- [BossID.MATRIARCH]: "portrait_matriarch.png", // 72
79
- [BossID.PILE]: "portrait_269.1_polycephalus2.png", // 73
80
- [BossID.REAP_CREEP]: "portrait_900.0_reapcreep.png", // 74
81
- [BossID.LIL_BLUB]: "portrait_901.0_beelzeblub.png", // 75
82
- // There is also a "portrait_901.0_beelzeblub_dross.png" file.
83
- [BossID.WORMWOOD]: "portrait_902.0_wormwood.png", // 76
84
- // There is also a "portrait_902.0_wormwood_dross.png" file.
85
- [BossID.RAINMAKER]: "portrait_902.0_rainmaker.png", // 77
86
- [BossID.VISAGE]: "portrait_903.0_visage.png", // 78
87
- [BossID.SIREN]: "portrait_904.0_siren.png", // 79
88
- [BossID.TUFF_TWINS]: "portrait_19.100_tufftwins.png", // 80
89
- [BossID.HERETIC]: "portrait_905.0_heretic.png", // 81
90
- [BossID.HORNFEL]: "portrait_906.0_hornfel.png", // 82
91
- [BossID.GREAT_GIDEON]: "portrait_907.0_gideon.png", // 83
92
- [BossID.BABY_PLUM]: "portrait_908.0_babyplum.png", // 84
93
- [BossID.SCOURGE]: "portrait_909.0_scourge.png", // 85
94
- [BossID.CHIMERA]: "portrait_910.0_chimera.png", // 86
95
- [BossID.ROTGUT]: "portrait_911.0_rotgut.png", // 87
96
- [BossID.MOTHER]: "portrait_mother.png", // 88
97
- // This is the same as Mom.
98
- [BossID.MAUSOLEUM_MOM]: "portrait_45.0_mom.png", // 89
99
- // This is the same as Mom's Heart.
100
- [BossID.MAUSOLEUM_MOMS_HEART]: "portrait_78.0_momsheart.png", // 90
101
- // There also exists a "portrait_913.0_maidinthemist.png" file, but that does not correspond to
10
+ [BossID.MONSTRO]: "Portrait_20.0_Monstro.png", // 1
11
+ [BossID.LARRY_JR]: "Portrait_19.0_LarryJr.png", // 2
12
+ [BossID.CHUB]: "Portrait_28.0_Chub.png", // 3
13
+ [BossID.GURDY]: "Portrait_36.0_Gurdy.png", // 4
14
+ [BossID.MONSTRO_2]: "Portrait_43.0_Monstro2.png", // 5
15
+ [BossID.MOM]: "Portrait_45.0_Mom.png", // 6
16
+ [BossID.SCOLEX]: "Portrait_62.1_Scolex.png", // 7
17
+ [BossID.MOMS_HEART]: "Portrait_78.0_MomsHeart.png", // 8
18
+ [BossID.FAMINE]: "Portrait_63.0_Famine.png", // 9
19
+ [BossID.PESTILENCE]: "Portrait_64.0_Pestilence.png", // 10
20
+ [BossID.WAR]: "Portrait_65.0_War.png", // 11
21
+ [BossID.DEATH]: "Portrait_66.0_Death.png", // 12
22
+ [BossID.DUKE_OF_FLIES]: "Portrait_67.0_DukeOfFlies.png", // 13
23
+ [BossID.PEEP]: "Portrait_68.0_Peep.png", // 14
24
+ [BossID.LOKI]: "Portrait_69.0_Loki.png", // 15
25
+ [BossID.BLASTOCYST]: "Portrait_74.0_Blastocyst.png", // 16
26
+ [BossID.GEMINI]: "Portrait_79.0_Gemini.png", // 17
27
+ [BossID.FISTULA]: "Portrait_71.0_Fistula.png", // 18
28
+ [BossID.GISH]: "Portrait_43.1_Gish.png", // 19
29
+ [BossID.STEVEN]: "Portrait_79.1_Steven.png", // 20
30
+ [BossID.CHAD]: "Portrait_28.1_CHAD.png", // 21
31
+ [BossID.HEADLESS_HORSEMAN]: "Portrait_82.0_HeadlessHorseman.png", // 22
32
+ [BossID.FALLEN]: "Portrait_81.0_TheFallen.png", // 23
33
+ [BossID.SATAN]: "Portrait_84.0_Satan.png", // 24
34
+ [BossID.IT_LIVES]: "Portrait_78.1_ItLives.png", // 25
35
+ [BossID.HOLLOW]: "Portrait_19.1_TheHollow.png", // 26
36
+ [BossID.CARRION_QUEEN]: "Portrait_28.2_CarrionQueen.png", // 27
37
+ [BossID.GURDY_JR]: "Portrait_99.0_GurdyJr.png", // 28
38
+ [BossID.HUSK]: "Portrait_67.1_TheHusk.png", // 29
39
+ [BossID.BLOAT]: "Portrait_68.1_Bloat.png", // 30
40
+ [BossID.LOKII]: "Portrait_69.1_Lokii.png", // 31
41
+ [BossID.BLIGHTED_OVUM]: "Portrait_79.2_BlightedOvum.png", // 32
42
+ [BossID.TERATOMA]: "Portrait_71.1_Teratoma.png", // 33
43
+ [BossID.WIDOW]: "Portrait_100.0_Widow.png", // 34
44
+ [BossID.MASK_OF_INFAMY]: "Portrait_97.0_MaskOfInfamy.png", // 35
45
+ [BossID.WRETCHED]: "Portrait_100.1_TheWretched.png", // 36
46
+ [BossID.PIN]: "Portrait_62.0_Pin.png", // 37
47
+ [BossID.CONQUEST]: "Portrait_65.1_Conquest.png", // 38
48
+ [BossID.ISAAC]: "Portrait_102.0_Isaac.png", // 39
49
+ [BossID.BLUE_BABY]: "Portrait_102.1_BlueBaby.png", // 40
50
+ [BossID.DADDY_LONG_LEGS]: "Portrait_101.0_DaddyLongLegs.png", // 41
51
+ [BossID.TRIACHNID]: "Portrait_101.1_Triachnid.png", // 42
52
+ [BossID.HAUNT]: "Portrait_260.0_TheHaunt.png", // 43
53
+ [BossID.DINGLE]: "Portrait_261.0_Dingle.png", // 44
54
+ [BossID.MEGA_MAW]: "Portrait_262.0_MegaMaw.png", // 45
55
+ [BossID.GATE]: "Portrait_263.0_MegaMaw2.png", // 46
56
+ [BossID.MEGA_FATTY]: "Portrait_264.0_MegaFatty.png", // 47
57
+ [BossID.CAGE]: "Portrait_265.0_Fatty2.png", // 48
58
+ [BossID.MAMA_GURDY]: "Portrait_266.0_MamaGurdy.png", // 49
59
+ [BossID.DARK_ONE]: "Portrait_267.0_DarkOne.png", // 50
60
+ [BossID.ADVERSARY]: "Portrait_268.0_DarkOne2.png", // 51
61
+ [BossID.POLYCEPHALUS]: "Portrait_269.0_Polycephalus.png", // 52
62
+ [BossID.MR_FRED]: "Portrait_270.0_MegaFred.png", // 53
63
+ [BossID.LAMB]: "Portrait_273.0_TheLamb.png", // 54
64
+ [BossID.MEGA_SATAN]: "Portrait_274.0_MegaSatan.png", // 55
65
+ [BossID.GURGLING]: "Portrait_276.0_Gurglings.png", // 56
66
+ [BossID.STAIN]: "Portrait_401.0_TheStain.png", // 57
67
+ [BossID.BROWNIE]: "Portrait_402.0_Brownie.png", // 58
68
+ [BossID.FORSAKEN]: "Portrait_403.0_TheForsaken.png", // 59
69
+ [BossID.LITTLE_HORN]: "Portrait_404.0_LittleHorn.png", // 60
70
+ [BossID.RAG_MAN]: "Portrait_405.0_Ragman.png", // 61
71
+ [BossID.ULTRA_GREED]: "Portrait_406.0_UltraGreed.png", // 62
72
+ [BossID.HUSH]: "Portrait_407.0_Hush.png", // 63
73
+ [BossID.DANGLE]: "Portrait_Dangle.png", // 64
74
+ [BossID.TURDLING]: "Portrait_Turdlings.png", // 65
75
+ [BossID.FRAIL]: "Portrait_TheFrail.png", // 66
76
+ [BossID.RAG_MEGA]: "Portrait_RagMega.png", // 67
77
+ [BossID.SISTERS_VIS]: "Portrait_SistersVis.png", // 68
78
+ [BossID.BIG_HORN]: "Portrait_BigHorn.png", // 69
79
+ [BossID.DELIRIUM]: "Portrait_Delirium.png", // 70
80
+ // Ultra Greedier uses the same file as Ultra Greed.
81
+ [BossID.ULTRA_GREEDIER]: "Portrait_406.0_UltraGreed.png", // 71
82
+ [BossID.MATRIARCH]: "Portrait_Matriarch.png", // 72
83
+ [BossID.PILE]: "Portrait_269.1_Polycephalus2.png", // 73
84
+ [BossID.REAP_CREEP]: "Portrait_900.0_ReapCreep.png", // 74
85
+ [BossID.LIL_BLUB]: "Portrait_901.0_Beelzeblub.png", // 75
86
+ // There is also a "Portrait_901.0_Beelzeblub_Dross.png" file.
87
+ [BossID.WORMWOOD]: "Portrait_902.0_Wormwood.png", // 76
88
+ // There is also a "Portrait_902.0_Wormwood_Dross.png" file.
89
+ [BossID.RAINMAKER]: "Portrait_902.0_Rainmaker.png", // 77
90
+ [BossID.VISAGE]: "Portrait_903.0_Visage.png", // 78
91
+ [BossID.SIREN]: "Portrait_904.0_Siren.png", // 79
92
+ [BossID.TUFF_TWINS]: "Portrait_19.100_TuffTwins.png", // 80
93
+ [BossID.HERETIC]: "Portrait_905.0_Heretic.png", // 81
94
+ [BossID.HORNFEL]: "Portrait_906.0_Hornfel.png", // 82
95
+ [BossID.GREAT_GIDEON]: "Portrait_907.0_Gideon.png", // 83
96
+ [BossID.BABY_PLUM]: "Portrait_908.0_BabyPlum.png", // 84
97
+ [BossID.SCOURGE]: "Portrait_909.0_Scourge.png", // 85
98
+ [BossID.CHIMERA]: "Portrait_910.0_Chimera.png", // 86
99
+ [BossID.ROTGUT]: "Portrait_911.0_Rotgut.png", // 87
100
+ [BossID.MOTHER]: "Portrait_Mother.png", // 88
101
+ // Mom (Mausoleum) uses the same file as Mom.
102
+ [BossID.MAUSOLEUM_MOM]: "Portrait_45.0_Mom.png", // 89
103
+ // Mom's Heart (Mausoleum) uses the same file as Mom's Heart.
104
+ [BossID.MAUSOLEUM_MOMS_HEART]: "Portrait_78.0_MomsHeart.png", // 90
105
+ // There also exists a "Portrait_913.0_MaidInTheMist.png" file, but that does not correspond to
102
106
  // Min Min.
103
- [BossID.MIN_MIN]: "portrait_minmin.png", // 91
104
- [BossID.CLOG]: "portrait_clog.png", // 92
105
- [BossID.SINGE]: "portrait_singe.png", // 93
106
- [BossID.BUMBINO]: "portrait_bumbino.png", // 94
107
- [BossID.COLOSTOMIA]: "portrait_colostomia.png", // 95
108
- [BossID.SHELL]: "portrait_shell.png", // 96
109
- [BossID.TURDLET]: "portrait_turdlet.png", // 97
110
- [BossID.RAGLICH]: "portrait_raglich.png", // 98
111
- [BossID.DOGMA]: "portrait_dogma.png", // 99
112
- // There is no image for The Beast, so use Dogma instead.
113
- [BossID.BEAST]: "portrait_dogma.png", // 100
114
- [BossID.HORNY_BOYS]: "portrait_hornyboys.png", // 101
115
- [BossID.CLUTCH]: "portrait_clutch.png", // 102
107
+ [BossID.MIN_MIN]: "Portrait_MinMin.png", // 91
108
+ [BossID.CLOG]: "Portrait_Clog.png", // 92
109
+ [BossID.SINGE]: "Portrait_Singe.png", // 93
110
+ [BossID.BUMBINO]: "Portrait_Bumbino.png", // 94
111
+ [BossID.COLOSTOMIA]: "Portrait_Colostomia.png", // 95
112
+ [BossID.SHELL]: "Portrait_Shell.png", // 96
113
+ [BossID.TURDLET]: "Portrait_Turdlet.png", // 97
114
+ [BossID.RAGLICH]: "Portrait_Raglich.png", // 98
115
+ [BossID.DOGMA]: "Portrait_Dogma.png", // 99
116
+ // The file name specified in "bossportraits.xml" for The Beast does not actually exist in the
117
+ // game files.
118
+ [BossID.BEAST]: "Portrait_The Beast.png", // 100
119
+ [BossID.HORNY_BOYS]: "Portrait_HornyBoys.png", // 101
120
+ [BossID.CLUTCH]: "Portrait_Clutch.png", // 102
121
+ // [BossID.CADAVRA]: "Portrait_Cadavra.png", // 103
116
122
  } as const satisfies Record<BossID, string>;