Skip to content

Commit

Permalink
Fix: Misc. Incorrect Monster Data (#314)
Browse files Browse the repository at this point in the history
* fix: wight has damage resistances, not damage immunities

* fix: Horned Devil incorrect average HP

* fix: add poison and exhaustion immunity to wight
  • Loading branch information
Redmega authored Oct 29, 2020
1 parent 76287bf commit 99d770d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/5e-SRD-Monsters.json
Original file line number Diff line number Diff line change
Expand Up @@ -21681,7 +21681,7 @@
"subtype": "devil",
"alignment": "lawful evil",
"armor_class": 18,
"hit_points": 148,
"hit_points": 178,
"hit_dice": "17d10",
"speed": {
"walk": "20 ft.",
Expand Down Expand Up @@ -37786,13 +37786,17 @@
}
],
"damage_vulnerabilities": [],
"damage_resistances": [],
"damage_immunities": [
"damage_resistances": [
"necrotic",
"bludgeoning, piercing, and slashing from nonmagical weapons that aren't silvered"
],
"damage_immunities": ["poison"],
"condition_immunities": [
{
"index": "exhaustion",
"name": "Exhaustion",
"url": "/api/conditions/exhaustion"
},{
"index": "poisoned",
"name": "Poisoned",
"url": "/api/conditions/poisoned"
Expand Down

0 comments on commit 99d770d

Please sign in to comment.