isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
30 lines (27 loc) • 643 B
text/typescript
// This is registered in "ExtraConsoleCommands.ts".
// eslint-disable-next-line isaacscript/require-v-registration
export const v = {
persistent: {
// Curses
darkness: false, // 1
labyrinth: false, // 2
lost: false, // 3
unknown: false, // 4
cursed: false, // 5
maze: false, // 6
blind: false, // 7
giant: false, // 8
disableCurses: false,
// Stats
damage: false,
damageAmount: 500,
speed: false,
speedAmount: 2,
tears: false,
tearsAmount: 1, // In tear delay, not tears stat
flight: false,
// Other
chaosCardTears: false,
spamBloodRights: false,
},
};