Class

Random

Random(stsJarPath, seed)

API Component that generates random numbers using the xorshift128+ (RandomXS123) algorithm provided by the libgdx API

Constructor

# new Random(stsJarPath, seed)

Create a new random number generator with a specified seed
Parameters:
Name Type Description
stsJarPath string Path to the `desktop-1.0.jar` Slay the Spire game file
seed number Seed used to generate pseudo-random numbers

View Source SlayTheSpireAPI/APIComponents/Random.ts, line 23

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

const maxValue: number = 5;
const randomNumberFrom0To5: number = rng.randomInt(maxValue);

Classes

Random

Members

# object

Get the raw Java instance of "com.megacrit.cardcrawl.random.Random"

View Source SlayTheSpireAPI/APIComponents/Random.ts, line 57

# seed

Get the seed used to generate random values

View Source SlayTheSpireAPI/APIComponents/Random.ts, line 51

Methods

# randomInt(maxValue) → {number}

Generate a random integer between the values 0 to `maxValue`
Parameters:
Name Type Description
maxValue number Maximum integer value to be generated

View Source SlayTheSpireAPI/APIComponents/Random.ts, line 33

number

# randomLong() → {number}

Generate a random long

View Source SlayTheSpireAPI/APIComponents/Random.ts, line 42

number