Skip to content

Commit

Permalink
Fiddle with a variety of monster attack type messages
Browse files Browse the repository at this point in the history
Alembics and blazehearts both punching were using attack types not actually
in active use previously, as were dream sheep headbutting foes. In this
same spirit of being a little more specific with reasonably straightforward
attack types, the following not-weapon-using enemies now use attack types
and words other than "hit":

* iron golems punch both times,
* draconian monks punch for their first hit (and still kick + tailslap
  after),
* ushabti headbutt (they're too rigid to do much else),
* spatial maelstroms and thermic dynamos touch and engulf,
* and toenail golems gore.

None of these should affect gameplay- even if one dragged an undying
armoury over to draconian monks, they already preferred their bare fists
before any other weapons.
  • Loading branch information
regret-index committed Nov 16, 2024
1 parent d0176ef commit a5ffdf5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crawl-ref/source/dat/mons/draconian-monk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ flags: [fighter, speaks, cold_blood]
species: draconian
will: 40
attacks:
- {type: hit, flavour: flank, damage: 35}
- {type: punch, flavour: flank, damage: 35}
- {type: kick, damage: 20}
- {type: tail_slap, damage: 15}
hd: 16
Expand Down
4 changes: 2 additions & 2 deletions crawl-ref/source/dat/mons/iron-golem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ genus: golem
holiness: [nonliving]
will: invuln
attacks:
- {type: hit, damage: 50}
- {type: hit, damage: 50}
- {type: punch, damage: 50}
- {type: punch, damage: 50}
hd: 15
hp_10x: 2700
ac: 24
Expand Down
4 changes: 2 additions & 2 deletions crawl-ref/source/dat/mons/spatial-maelstrom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ xp_mult: 5
holiness: [nonliving]
will: invuln
attacks:
- {type: hit, flavour: distort, damage: 20}
- {type: hit, flavour: distort, damage: 20}
- {type: touch, flavour: distort, damage: 20}
- {type: engulf, flavour: distort, damage: 20}
hd: 10
hp_10x: 750
ac: 0
Expand Down
4 changes: 2 additions & 2 deletions crawl-ref/source/dat/mons/thermic-dynamo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ genus: fire_vortex
holiness: [nonliving]
will: invuln
attacks:
- {type: hit, flavour: fire, damage: 18}
- {type: hit, flavour: cold, damage: 14}
- {type: touch, flavour: fire, damage: 18}
- {type: engulf, flavour: cold, damage: 14}
hd: 10
hp_10x: 380
ac: 4
Expand Down
2 changes: 1 addition & 1 deletion crawl-ref/source/dat/mons/toenail-golem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ genus: golem
holiness: [nonliving]
will: invuln
attacks:
- {type: hit, damage: 13}
- {type: gore, damage: 13}
hd: 9
hp_10x: 585
ac: 8
Expand Down
2 changes: 1 addition & 1 deletion crawl-ref/source/dat/mons/ushabti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ genus: golem
holiness: [nonliving]
will: invuln
attacks:
- {type: hit, damage: 30}
- {type: headbutt, damage: 30}
hd: 7
hp_10x: 455
ac: 9
Expand Down

0 comments on commit a5ffdf5

Please sign in to comment.