Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add higher slot level damage to Hellish Rebuke #540

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/5e-SRD-Spells.json
Original file line number Diff line number Diff line change
Expand Up @@ -7772,6 +7772,9 @@
"desc": [
"You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one."
],
"higher_level": [
"When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st."
],
"range": "60 feet",
"components": ["V", "S"],
"ritual": false,
Expand All @@ -7786,7 +7789,15 @@
"url": "/api/damage-types/fire"
},
"damage_at_slot_level": {
"1": "2d10"
"1": "2d10",
"2": "3d10",
"3": "4d10",
"4": "5d10",
"5": "6d10",
"6": "7d10",
"7": "8d10",
"8": "9d10",
"9": "10d10"
}
},
"dc": {
Expand Down
Loading