UNPKG

@randsum/root-rpg

Version:

A flexible, type-safe dice roller for the Root RPG system

5 lines (4 loc) 176 B
export type RootStrongHit = 'Strong Hit'; export type RootWeakHit = 'Weak Hit'; export type RootMiss = 'Miss'; export type RootResult = RootStrongHit | RootWeakHit | RootMiss;