Members
CharacterDisplayNames.<string>
# constant CharacterDisplayNames
An array of PlayableCharacter names that can be used to convert a
PlayableCharacter to a human readable display name
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
Example
const ironclad: PlayableCharacter = MasterCharacterList[0];
Array.<Modification>
# constant MasterModificationList
ModificationMap in the form of an array
Example
const shinyModId: Modification = MasterModificationList[0];
Map.<string, Modification>
# constant ModificationMap
A map of Modifications used by the daily climb indexed by string IDs
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
Example
const starterModType: ModificationType = ModificationType.STARTER;
PlayableCharacter
# constant PlayableCharacter
Types of playable characters
Example
const ironclad: PlayableCharacter = PlayableCharacter.Ironclad;