Class

Modification

Modification(type, id, positive, excludenullable)

Game modifications used by the daily climb and custom games. All modifications used by the daily climb are pre-initialized in ModificationMap so they don't need to be reinitialized. New Modifications shouldn't be created unless they are not used by the daily climb

Constructor

# new Modification(type, id, positive, excludenullable)

Create a new instance of a game modification
Parameters:
Name Type Attributes Description
type ModificationType Type of modification if used in the daily climb. Use ModificationType.NONE if not part of the daily climb
id string ID of the modification
positive boolean If the modification is positive
exclude PlayableCharacter <nullable>
PlayableCharacter to be excluded from being able to use this modification

View Source SlayTheSpireAPI/MasterLists/Modifications.ts, line 39

Example
const blightChestsMod: Modification = new Modification(ModificationType.NONE,
    "Blight Chests", true);

Classes

Modification