isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
35 lines (33 loc) • 1.37 kB
text/typescript
import { RoomType } from "isaac-typescript-definitions";
export const ROOM_TYPE_SPECIAL_GOTO_PREFIXES = {
[]: "default", // 1
[]: "shop", // 2
[]: "error", // 3
[]: "treasure", // 4
[]: "boss", // 5
[]: "miniboss", // 6
[]: "secret", // 7
[]: "supersecret", // 8
[]: "arcade", // 9
[]: "curse", // 10
[]: "challenge", // 11
[]: "library", // 12
[]: "sacrifice", // 13
[]: "devil", // 14
[]: "angel", // 15
[]: "itemdungeon", // 16
[]: "bossrush", // 17
[]: "isaacs", // 18
[]: "barren", // 19
[]: "chest", // 20
[]: "dice", // 21
[]: "blackmarket", // 22
[]: "greedexit", // 23
[]: "planetarium", // 24
[]: "teleporter", // 25
[]: "teleporterexit", // 26
[]: "secretexit", // 27
[]: "blue", // 28
[]: "ultrasecret", // 29
[]: "deathmatch", // 30
} as const satisfies Record<RoomType, string>;