2e Damage Calculator: Initial upload

This commit is contained in:
Burnus 2021-02-14 11:26:28 +01:00 committed by GitHub
parent 3fc2cdeebb
commit 9597f59174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 252 additions and 0 deletions

17
pf2e-dmg-calc/PC.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "Bob",
"level": 2,
"attacks": [
{
"attackRolls": [8, 5, 2],
"normalDmg": ["1d8-1"],
"critDmg": ["2d8-2", "1d10"]
},
{
"attackRolls": [7, 4],
"normalDmg": ["1d8+2"],
"critDmg": ["2d8+4"]
},
]
}