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 |
Example
const rng: Random = new Random('./path/to/stsJar', 1337);
const modHelper: ModificationHelper = new ModificationHelper('./path/to/stsJar',
rng, PlayableCharacter.Ironclad);
Classes
Members
DailyModifications
# modifications
The modifications for the daily climb
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;