UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

64 lines (61 loc) 948 B
import { ReadonlySet } from "../types/ReadonlySet"; /** * The set of vanilla console commands, as documented here: * https://bindingofisaacrebirth.fandom.com/wiki/Debug_Console */ export const CONSOLE_COMMANDS_SET = new ReadonlySet<string>([ // Listed commands "achievement", "challenge", "clear", "clearcache", "clearseeds", "combo", "copy", "costumetest", "curse", "cutscene", "debug", "delirious", "eggs", "giveitem", "g", "goto", "gridspawn", "listcollectibles", "lua", "l", "luamem", "luamod", "luarun", "macro", "m", "metro", "playsfx", "prof", "profstop", "remove", "r", "reloadfx", "reloadshaders", "repeat", "reseed", "restart", "seed", "spawn", "stage", "time", // Unlisted commands "addplayer", "forceroom", "giveitem2", "g2", "netdelay", "netstart", "remove2", "r2", "reloadwisps", "restock", "rewind", "testbosspool", ]);