isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
26 lines (23 loc) • 1.21 kB
text/typescript
import { SlotVariant } from "isaac-typescript-definitions";
export const DEFAULT_SLOT_NAME = "Unknown";
/** Taken from "entities2.xml". */
export const SLOT_NAMES = {
[]: "Slot Machine", // 1
[]: "Blood Donation Machine", // 2
[]: "Fortune Telling Machine", // 3
[]: "Beggar", // 4
[]: "Devil Beggar", // 5
[]: "Shell Game", // 6
[]: "Key Master", // 7
[]: "Donation Machine", // 8
[]: "Bomb Bum", // 9
[]: "Shop Restock Machine", // 10
[]: "Greed Donation Machine", // 11
[]: "Mom's Dressing Table", // 12
[]: "Battery Bum", // 13
[]: "Isaac (secret)", // 14
[]: "Hell Game", // 15
[]: "Crane Game", // 16
[]: "Confessional", // 17
[]: "Rotten Beggar", // 18
} as const satisfies Record<SlotVariant, string>;