@seroh/roll
Version:
An RPG dice-rolling library with a variety of built-in roll mechanics.
9 lines • 317 B
TypeScript
import { Randomizer } from "../randomizer/Randomizer";
import { Mechanic } from "./Mechanic";
export declare class ExplodingMechanic extends Mechanic {
do(min: number, max: number, randomizer: Randomizer): {
result: number;
rolls: number[];
};
}
//# sourceMappingURL=ExplodingMechanic.d.ts.map