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