summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-02-13 18:19:02 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-02-13 18:19:02 +0100
commita7f467a29397dca00ce5ef95d5be74d2bfb0b896 (patch)
tree30f6de5aed8749beabe7eb4d55ff1179ee8ff227 /crawl-ref/source/transform.h
parent24951ff0ef931993c719ef12392555d9cb799cbb (diff)
parent361a747743af421333998d240722d75a5020f4e0 (diff)
downloadcrawl-ref-a7f467a29397dca00ce5ef95d5be74d2bfb0b896.tar.gz
crawl-ref-a7f467a29397dca00ce5ef95d5be74d2bfb0b896.zip
Merge branch 'bad_forms'
It's not 100% ready, but should be functional enough, and 0.12 coming soon, let's test it at least a bit. The numbers are probably totally out of whack, but that's what trunk players are for. At least the code should be sound. This does include the jelly form that I'm strongly inclined to remove, yet it's easy to axe without affecting save compat (as no player can be in that form currently). All the code can be found by grepping for TRAN_JELLY, except for one commit that's not bad to have (some refactoring of eating). Generally, the jelly suffers from being abusable for nutrition, would need some code for item [non-]use, and would make the player screwed as it can neither take/deal damage (tree), avoid it (wisp) or run away (wisp, pig, bat, porcupine).
Diffstat (limited to 'crawl-ref/source/transform.h')
-rw-r--r--crawl-ref/source/transform.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/transform.h b/crawl-ref/source/transform.h
index 0bcce99af8..f34cfa9f6a 100644
--- a/crawl-ref/source/transform.h
+++ b/crawl-ref/source/transform.h
@@ -22,6 +22,9 @@ bool form_changed_physiology(transformation_type form = you.form);
bool form_can_use_wand(transformation_type form = you.form);
bool form_can_wear_item(const item_def& item,
transformation_type form = you.form);
+// Can you make sounds, not necessarily articulate? (Gods and allies can
+// guess your intent).
+bool form_has_mouth(transformation_type form = you.form);
// Does the form keep the benefits of resistance, scale, and aux mutations?
bool form_keeps_mutations(transformation_type form = you.form);