├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── SavingThrow.py └── TODO.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheagcraig/SavingThrow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheagcraig/SavingThrow/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheagcraig/SavingThrow/HEAD/README.md -------------------------------------------------------------------------------- /SavingThrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheagcraig/SavingThrow/HEAD/SavingThrow.py -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheagcraig/SavingThrow/HEAD/TODO.md --------------------------------------------------------------------------------