summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 2f3d899835..2500800143 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -1793,6 +1793,11 @@ int melee_attack::player_weapon_type_modify(int damage)
attack_verb = "slash";
else if (damage < HIT_STRONG)
attack_verb = "slice";
+ else if (mons_genus(defender_as_monster()->type) == MONS_OGRE)
+ {
+ attack_verb = "dice";
+ verb_degree = " like an onion";
+ }
else
{
attack_verb = "open";