Class

CharacterManager

CharacterManager()

API Component that manages PlayableCharacters. This is a static class and should not be created using the `new` keyword. Instead, all methods should be accessed directly from the class name.

Constructor

# new CharacterManager()

View Source SlayTheSpireAPI/APIComponents/CharacterManager.ts, line 14

Example
const seed: number = 1337;
const rng = new Random('./path/to/stsJar', seed);

const todaysCharacter: PlayableCharacter = CharacterManager.getRandomCharacter(rng);

Methods

# static getCharacterDisplayName(character) → {string}

Get the display name of a character
Parameters:
Name Type Description
character PlayableCharacter Character to get display name of

View Source SlayTheSpireAPI/APIComponents/CharacterManager.ts, line 30

string

# static getRandomCharacter(rng) → {PlayableCharacter}

Get a random PlayableCharacter using a provided random number generator
Parameters:
Name Type Description
rng Random Random number generator

View Source SlayTheSpireAPI/APIComponents/CharacterManager.ts, line 20