trpg-dice-roller
v2.0.1
Published
A package to roll dice like 〇d△ / 〇d△などのダイスを振れるパッケージ
Maintainers
Readme
TRPG Dice Roller
How to use / 使い方
import { roll } from "trpg-dice-roller";
const result = rollDice("2d6 + 1d8 - 3");
console.log(result);
/*
{
"dice": "2d6 + 1d8 - 3",
"formula": "5 + 1 - 3 = 3",
"result": 3,
"output": "2d6 + 1d8 - 3 → (1 + 4) + (1) - 3 = 3",
"output_short": "2d6 + 1d8 - 3 → (5) + (1) - 3 = 3"
}
*/