diff options
author | David Gay <david@davidgay.org> | 2021-06-07 19:30:57 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-07 19:30:57 -0400 |
commit | 84ab6ed32c7bc3777b267b85f75b6487b9d92b49 (patch) | |
tree | 017486bf56f7590e599c23fe1c8f1194b5afe00b | |
parent | 1ad48cd5ed9dd8c476218d44c1d188df72b72271 (diff) |
Nerf stalk beast and grinpad
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | data/monsters.yml | 16 |
2 files changed, 22 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 60f5472..90bc394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # Changelog All notable changes to this project will be documented in this file. +## [Unreleased] + +### Monsters +- Stalk beast + - Bash resistance 6 -> 4 + - Pierce resistance 6 -> 4 + - Physical resistance 2 -> 1 + - Bash base min damage 3 -> 2 + - Base base max damage 8 -> 7 +- Grinpad + - Physical resistance 8 -> 5 + - Slash base min damage 5 -> 4 + - Slash base max damage 12 -> 10 + ## [0.1.8.2] - 2021-06-07 ### UI diff --git a/data/monsters.yml b/data/monsters.yml index a52aa1d..b5dc2a6 100644 --- a/data/monsters.yml +++ b/data/monsters.yml @@ -55,16 +55,16 @@ stalk_beast: base: 2 resistances: - gid: "bash" - base: 6 + base: 4 - gid: "pierce" - base: 6 + base: 4 - gid: "physical" - base: 2 + base: 1 hit_effects: - type: "damage" gid: "bash" - min: 3 - max: 8 + min: 2 + max: 7 awards: - type: "xp" gid: "beastslay" @@ -98,14 +98,14 @@ grinpad: base: 5 resistances: - gid: "physical" - base: 8 + base: 5 - gid: "energy" base: 6 hit_effects: - type: "damage" gid: "slash" - min: 5 - max: 12 + min: 4 + max: 10 awards: - type: "xp" gid: "beastslay" |