Class

SeedHelper

SeedHelper(stsJarPath)

Contains useful methods for manipulating Slay the Spire game seeds

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

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

Example
const seedHelper = new SeedHelper('./path/to/stsJar');

Classes

SeedHelper

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

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

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);