diff options
author | David Gay <david@davidgay.org> | 2021-07-14 18:15:34 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-07-14 18:15:34 -0400 |
commit | b4f643b1ce4613dcd18e71a6f31a84293ac10857 (patch) | |
tree | f792269d40a6f3d4c4202b589c47cfdfc51ce8c0 | |
parent | acc7e4df81de0ad27b296c45166b6efc00096459 (diff) |
[data] New monster and trophy: suflur scuttler
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | data/items/general.yml | 6 | ||||
-rw-r--r-- | data/monsters.yml | 54 |
3 files changed, 63 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index aa58629..54b0d04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ All notable changes to this project will be documented in this file. how to do it. - Fixed bug where multiple activities could be learned at once (e.g. multiple spells from one spellpage). +### Monsters +- New monster: sulfur scuttler + ### Hearth - Hearths now have locations, like characters do. All existing hearths are now located at Floret. diff --git a/data/items/general.yml b/data/items/general.yml index cf475e5..fb05393 100644 --- a/data/items/general.yml +++ b/data/items/general.yml @@ -620,6 +620,12 @@ crypt_writhe_trophy: whatnot: equip_slots: - "curio" +sulfur_scuttler_trophy: + name: "sulfur scuttler trophy" + description: "A trophy from a sulfur scuttler." + whatnot: + equip_slots: + - "curio" slate_ring: name: "slate ring" description: "A brittle ring made of slate. It's flat, inside and out." diff --git a/data/monsters.yml b/data/monsters.yml index 6411d97..305ba18 100644 --- a/data/monsters.yml +++ b/data/monsters.yml @@ -329,3 +329,57 @@ balgoloth: gid: "vestige" min_quantity: 250 max_quantity: 500 +sulfur_scuttler: + name: "sulfur scuttler" + description: >- + A three-foot-wide decapod crustacean, two feet tall with a dark, oily carapace. When light is cast upon it, the + carapace reveals a slight sheen of many colors. Chunks of a yellowy mineral grow on it like a fungus. As it + approaches, your skin warms with a faint heat. + whatnot: + max_hp: + base: 24 + speed: + base: 7 + accuracy: + base: 10 + power: + base: 7 + evasion: + base: 10 + resistances: + - gid: "physical" + base: 16 + - gid: "slash" + base: 10 + - gid: "pierce" + base: 10 + - gid: "energy" + base: 6 + - gid: "fire" + base: 30 + - gid: "frost" + base: -15 + hit_effects: + - type: "damage" + gid: "pierce" + min: 8 + max: 16 + - type: "damage" + gid: "slash" + min: 4 + max: 8 + awards: + - type: "xp" + gid: "beastslay" + base: 7 + - type: "item" + chance: 1 + table: + - gid: "bollyrot_acerbic" + score: 0.4 + - gid: "vestige" + score: 0.8 + max_quantity: 8 + - type: "item" + chance: 0.001 + gid: "sulfur_scuttler_trophy" |