https://github.com/heyitsgilbert/rpgdice
Roll dice right from PowerShell!
https://github.com/heyitsgilbert/rpgdice
Last synced: 5 months ago
JSON representation
Roll dice right from PowerShell!
- Host: GitHub
- URL: https://github.com/heyitsgilbert/rpgdice
- Owner: HeyItsGilbert
- License: mit
- Created: 2021-09-04T19:12:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T20:18:16.000Z (over 3 years ago)
- Last Synced: 2023-08-13T05:01:21.309Z (over 2 years ago)
- Language: PowerShell
- Size: 647 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# RPGDice
   
Roll dice right from PowerShell!
## Overview
Quickly generate and roll dice. Have a game with a custom set of dice? You can
create a new custom dice and roll it.
This mostly stemmed from me wanting to learn how to use classes with PowerShell,
and a severe addiction to role playing games.
## Installation
```powershell
Install-Module RPGDice
```
## Examples
Check out the docs!
## Pull Requests
If you want to submit a PR please do! You'll need to run the build script to
test it. You should also include tests if you're adding a feature.
If it's your first time you'll want to run the bootstrap to install all the
pre-requisite modules.
```powershell
.\build.ps1 -Task Build -Bootstrap
```
Testing:
```powershell
.\build.ps1 -Task Test
```