Title

Global

Members

CharacterDisplayNames.<string>

# constant CharacterDisplayNames

An array of PlayableCharacter names that can be used to convert a PlayableCharacter to a human readable display name

View Source SlayTheSpireAPI/MasterLists/PlayableCharacters.ts, line 25

Example
const ironcladName: string = CharacterDisplayNames[PlayableCharacter.Ironclad];
Array.<PlayableCharacter>

# constant MasterCharacterList

PlayableCharacter types in the form of an array. Used to convert an index to a PlayableCharacter

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

Example
const ironclad: PlayableCharacter = MasterCharacterList[0];
Array.<Modification>

# constant MasterModificationList

ModificationMap in the form of an array

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

Example
const shinyModId: Modification = MasterModificationList[0];
Map.<string, Modification>

# constant ModificationMap

A map of Modifications used by the daily climb indexed by string IDs

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

Example
const shinyMod: Modification = ModificationMap.get('Shiny');
ModificationType

# constant ModificationType

Types of game modifications for selection in the daily climb. If the modification is not used in the daily climb, then ModificationType.NONE should be used

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

Example
const starterModType: ModificationType = ModificationType.STARTER;
PlayableCharacter

# constant PlayableCharacter

Types of playable characters

View Source SlayTheSpireAPI/MasterLists/PlayableCharacters.ts, line 10

Example
const ironclad: PlayableCharacter = PlayableCharacter.Ironclad;
SteamCmdExitCode

# SteamCmdExitCode

SteamCmd exit code

View Source SteamCmd/SteamCmd.ts, line 15