@swrpg-online/dice
Version:
A TypeScript library that creates dice rolls using the narrative dice system for the Star Wars Roleplaying Game by Fantasy Flight Games and Edge Studio.
7 lines (6 loc) • 641 B
TypeScript
export { roll } from "./dice";
export type { DicePool, RollResult, DiceResult, RollOptions, DieFaceSymbols, BoostDieFace, SetbackDieFace, AbilityDieFace, DifficultyDieFace, ProficiencyDieFace, ChallengeDieFace, ForceDieFace, Symbol, } from "./types";
export { SYMBOLS } from "./types";
export { BOOST_DIE_FACES, SETBACK_DIE_FACES, ABILITY_DIE_FACES, DIFFICULTY_DIE_FACES, PROFICIENCY_DIE_FACES, CHALLENGE_DIE_FACES, FORCE_DIE_FACES, DICE_FACES, } from "./diceFaces";
export { createSkillCheck, createCombatCheck, createOpposedCheck, createDifficultyPool, applyTalentModifiers, } from "./pools";
export type { PoolModifiers } from "./pools";