isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
54 lines (51 loc) • 2.41 kB
text/typescript
import { Challenge } from "isaac-typescript-definitions";
export const DEFAULT_CHALLENGE_NAME = "Unknown";
/** Taken from the "challenges.xml" file. */
export const CHALLENGE_NAMES = {
[]: DEFAULT_CHALLENGE_NAME, // 0
[]: "Pitch Black", // 1
[]: "High Brow", // 2
[]: "Head Trauma", // 3
[]: "Darkness Falls", // 4
[]: "The Tank", // 5
[]: "Solar System", // 6
[]: "Suicide King", // 7
[]: "Cat Got Your Tongue", // 8
[]: "Demo Man", // 9
[]: "Cursed!", // 10
[]: "Glass Cannon", // 11
[]: "When Life Gives You Lemons", // 12
[]: "Beans!", // 13
[]: "It's In The Cards", // 14
[]: "Slow Roll", // 15
[]: "Computer Savvy", // 16
[]: "Waka Waka", // 17
[]: "The Host", // 18
[]: "The Family Man", // 19
[]: "Purist", // 20
[]: "XXXXXXXXL", // 21
[]: "SPEED!", // 22
[]: "Blue Bomber", // 23
[]: "PAY TO PLAY", // 24
[]: "Have a Heart", // 25
[]: "I RULE!", // 26
[]: "BRAINS!", // 27
[]: "PRIDE DAY!", // 28
[]: "Onan's Streak", // 29
[]: "The Guardian", // 30
[]: "Backasswards", // 31
[]: "Aprils Fool", // 32
[]: "Pokey Mans", // 33
[]: "Ultra Hard", // 34
[]: "Pong", // 35
[]: "Scat Man", // 36
[]: "Bloody Mary", // 37
[]: "Baptism By Fire", // 38
[]: "Isaac's Awakening", // 39
[]: "Seeing Double", // 40
[]: "Pica Run", // 41
[]: "Hot Potato", // 42
[]: "Cantripped!", // 43
[]: "Red Redemption", // 44
[]: "DELETE THIS", // 45
} as const satisfies Record<Challenge, string>;