isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
42 lines (40 loc) • 1.61 kB
text/typescript
import { StageID } from "isaac-typescript-definitions";
/**
* Derived from "stages.xml". Note that unlike "stages.xml":
*
* - `StageID.BLUE_WOMB` (13) is specified with a name of "Blue Womb" instead of "???".
* - `StageID.StageID.BACKWARDS` (36) is specified with a name of "The Ascent" instead of "???".
*/
export const STAGE_ID_NAMES = {
[]: "Special Rooms", // 0
[]: "Basement", // 1
[]: "Cellar", // 2
[]: "Burning Basement", // 3
[]: "Caves", // 4
[]: "Catacombs", // 5
[]: "Flooded Caves", // 6
[]: "Depths", // 7
[]: "Necropolis", // 8
[]: "Dank Depths", // 9
[]: "Womb", // 10
[]: "Utero", // 11
[]: "Scarred Womb", // 12
[]: "Blue Womb", // 13
[]: "Sheol", // 14
[]: "Cathedral", // 15
[]: "Dark Room", // 16
[]: "Chest", // 17
[]: "The Shop", // 24
[]: "Ultra Greed", // 25
[]: "The Void", // 26
[]: "Downpour", // 27
[]: "Dross", // 28
[]: "Mines", // 29
[]: "Ashpit", // 30
[]: "Mausoleum", // 31
[]: "Gehenna", // 32
[]: "Corpse", // 33
[]: "Mortis", // 34
[]: "Home", // 35
[]: "The Ascent", // 36
} as const satisfies Record<StageID, string>;