summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.h
diff options
context:
space:
mode:
authorPete Hurst <pete@streamuniverse.tv>2013-06-06 11:18:56 +0100
committerPete Hurst <pete@streamuniverse.tv>2013-06-21 18:26:16 +0100
commit449020270af4920cfeef57a010e616f4a0b6a12b (patch)
tree5ab2368bcaae84c923159ffafa9fe19d8365c26a /crawl-ref/source/mon-info.h
parente9ecdcbda83abf17aabb92e6fac191f22e3143f6 (diff)
downloadcrawl-ref-449020270af4920cfeef57a010e616f4a0b6a12b.tar.gz
crawl-ref-449020270af4920cfeef57a010e616f4a0b6a12b.zip
Implement Chimeric monsters
After creating the monster, the make_chimera function in mon-chimera.cc can be used to set its component creatures.
Diffstat (limited to 'crawl-ref/source/mon-info.h')
-rw-r--r--crawl-ref/source/mon-info.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-info.h b/crawl-ref/source/mon-info.h
index df8eed3218..8ab6570c7f 100644
--- a/crawl-ref/source/mon-info.h
+++ b/crawl-ref/source/mon-info.h
@@ -210,6 +210,7 @@ struct monster_info : public monster_info_base
string common_name(description_level_type desc = DESC_PLAIN) const;
string proper_name(description_level_type desc = DESC_PLAIN) const;
string full_name(description_level_type desc = DESC_PLAIN, bool use_comma = false) const;
+ string chimera_part_names() const;
vector<string> attributes() const;
@@ -270,6 +271,7 @@ struct monster_info : public monster_info_base
protected:
string _core_name() const;
+ string _base_name() const;
string _apply_adjusted_description(description_level_type desc, const string& s) const;
};