zero-config / d-roll
Dice rolling application
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Type:project
Requires
- php: ^7.0
- symfony/console: ^3.2.3
- zero-config/d: ^2.0
Requires (Dev)
- raveren/kint: ^1.0.10
This package is auto-updated.
Last update: 2024-10-29 04:53:11 UTC
README
D-Roll is a dice rolling application. It implements zero-config/d.
Installation
composer create-project --no-dev zero-config/d-roll
Rolling dice
The standalone application allows you to roll dice on-the-fly. It also tells you when you roll a CRIT.
Because some games require a high number of dice with different number of eyes, keeping track of them can be a pain and therefore, the application can interpret human readable dice notations:
You will notice that one of the inputs is 3d6+10
and the last input is 6
. Under
the hood this gets added up to 4d6+10
.
The notation is also very loose. That is why 2 D12
is interpreted as 2d12
.
You will also notice that the interpreter sorts the dice by number of eyes. This adds to the readability of the output.
Tempting fate
Another part of the application will help you tempt fate. It is based on the Fate RPG.
One can supply a custom translation for fate values, to expand the list of
possibilities, by supplying a file with the --config
option.
A custom configuration looks like the following:
{ "<": { "label": "Everything is awesome!", "color": "cyan" }, "-1": { "label": "Just about awesome!", "color": "yellow" }, "0": { "label": "Awesome!", "color": "green" }, ">": { "label": "Ridiculously awesome!", "color": "cyan" } }
Available colors are black
, red
, green
, yellow
, blue
, magenta
, cyan
and white
.