Constructor
# new SeedHelper(stsJarPath)
Create an instance of a SeedHelper
Parameters:
Name | Type | Description |
---|---|---|
stsJarPath |
string | Path to the `desktop-1.0.jar` Slay the Spire game file |
Example
const seedHelper = new SeedHelper('./path/to/stsJar');
Classes
Methods
# getString(rng) → {string}
Get the human readable string of a seed from the Random generated from it
Parameters:
Name | Type | Description |
---|---|---|
rng |
Random | Random number generator |
string
Example
const seed: number = 1337;
const rng = new Random('./path/to/stsJar', seed);
const seedHelper = new SeedHelper('./path/to/stsJar');
const humanReadableString = seedHelper.getString(rng);