https://github.com/oncomouse/dice
https://github.com/oncomouse/dice
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/oncomouse/dice
- Owner: oncomouse
- Created: 2020-07-18T22:12:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-27T04:49:39.000Z (over 4 years ago)
- Last Synced: 2025-01-21T15:48:51.845Z (over 1 year ago)
- Language: JavaScript
- Size: 87.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Roll Dice
Console app to roll dice:
```
> node index 1d6+10
15
> node index 2d100
112
> node index 4d8+4
23
```
Generates random numbers using [random.org](http://random.org), which samples atmospheric noise for random number generation.
Can roll standard DnD dice: 4-side, 6-sided, 8-sided, 10-sided, 12-sided, 20-sided, and 100-sided.