From c408f8b544f47a4d2e7aebc75c8ac5535d4767b6 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 3 Dec 2008 23:21:52 +0000 Subject: Harpies now also eat food on the ground. Add a description (as suggested by David) and two quotes. Since harpies will eat anything they are now resistant to poison. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7737 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/mon-util.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/mon-util.cc') diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc index 3e6cf8ceec..93da5b7121 100644 --- a/crawl-ref/source/mon-util.cc +++ b/crawl-ref/source/mon-util.cc @@ -537,7 +537,8 @@ bool mons_is_native_in_branch(const monsters *monster, case BRANCH_SHOALS: return (mons_species(monster->type) == MONS_CYCLOPS || mons_species(monster->type) == MONS_MERFOLK - || mons_genus(monster->type) == MONS_MERMAID); + || mons_genus(monster->type) == MONS_MERMAID + || monster->type == MONS_HARPY); case BRANCH_SLIME_PITS: return (mons_species(monster->type) == MONS_JELLY); @@ -2955,7 +2956,7 @@ const char *mons_pronoun(monster_type mon_type, pronoun_type variant, { gender_type gender = GENDER_NEUTER; - if (mons_genus(mon_type) == MONS_MERMAID) + if (mons_genus(mon_type) == MONS_MERMAID || mon_type == MONS_HARPY) gender = GENDER_FEMALE; else if (mons_is_unique(mon_type) && mon_type != MONS_PLAYER_GHOST) { -- cgit v1.2.3-54-g00ecf