Class

ModificationHelper

ModificationHelper(stsJarPath, rng, character)

Helper to handle daily climb modifications

Constructor

# new ModificationHelper(stsJarPath, rng, character)

Parameters:
Name Type Description
stsJarPath string Path to the `desktop-1.0.jar` Slay the Spire game file
rng Random Random number generator
character PlayableCharacter Selected character for the daily climb

View Source SlayTheSpireAPI/APIComponents/ModificationHelper.ts, line 21

Example
const rng: Random = new Random('./path/to/stsJar', 1337);
const modHelper: ModificationHelper = new ModificationHelper('./path/to/stsJar',
     rng, PlayableCharacter.Ironclad);

Classes

ModificationHelper

Members

DailyModifications

# modifications

The modifications for the daily climb

View Source SlayTheSpireAPI/APIComponents/ModificationHelper.ts, line 59

Example
const rng: Random = new Random('./path/to/stsJar', 1337);
const modHelper: ModificationHelper = new ModificationHelper('./path/to/stsJar',
     rng, PlayableCharacter.Ironclad);

const todaysMods: DailyModifications = modHelper.modifications;