summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 22:38:21 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 22:38:21 +0000
commitf3f93a328f7c076f46be200133af034e42956f6d (patch)
treed8491cc9b08a1f830c7479cca3146da2387bab49 /crawl-ref/source/enum.h
parent96d6e3e9f85e3be686bd1a0c56436affb0014365 (diff)
downloadcrawl-ref-f3f93a328f7c076f46be200133af034e42956f6d.tar.gz
crawl-ref-f3f93a328f7c076f46be200133af034e42956f6d.zip
Adding two new mutations for the heck of it:
* MUT_PAWS: "You have soft paws in place of feet." Similar to HOOVES and TALONS - incidentally, I resorted a few mutations for better grouping - but increases stealth. * MUT_EXTRA_EYES: grow up to three extra eyes that increase depth perception and thus accuracy. I'm still looking for a drawback to this mutation (other than looking weird). Also, could be related to ACUTE/BLURRY VISION somehow. Breaks saves, or at least mutations. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2606 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h28
1 files changed, 16 insertions, 12 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index ce65a8a404..4fd367f028 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2002,34 +2002,38 @@ enum mutation_type
MUT_DRAIN_LIFE,
MUT_THROW_FLAMES, // 55
MUT_THROW_FROST,
- MUT_SMITE, // 57
- MUT_CLAWS, //jmf: added
- MUT_HOOVES, //jmf: etc.
- MUT_FANGS, // 60
+ MUT_SMITE,
+ MUT_CLAWS,
+ MUT_FANGS, // new in 0.3
+ // hooves, talons, paws can replace feet
+ MUT_HOOVES, // 60
+ MUT_TALONS, // new in 0.4
+ MUT_PAWS, // new in 0.4
MUT_BREATHE_POISON,
MUT_STINGER,
- MUT_BIG_WINGS,
- MUT_BLUE_MARKS, // 64 - decorative, as in "mark of the devil"
- MUT_GREEN_MARKS, // 65
+ MUT_BIG_WINGS, // 65
+ MUT_BLUE_MARKS, // decorative, as in "mark of the devil"
+ MUT_GREEN_MARKS,
MUT_DRIFTING,
MUT_SAPROVOROUS,
- MUT_TALONS,
- MUT_RED_SCALES = 70, // 70
+ MUT_EXTRA_EYES, // new in 0.4 -- 70
+ // several types of scales (affect AC and sometimes more)
+ MUT_RED_SCALES = 75, // 75
MUT_NACREOUS_SCALES,
MUT_GREY2_SCALES,
MUT_METALLIC_SCALES,
MUT_BLACK2_SCALES,
- MUT_WHITE_SCALES, // 75
+ MUT_WHITE_SCALES, // 80
MUT_YELLOW_SCALES,
MUT_BROWN_SCALES,
MUT_BLUE_SCALES,
MUT_PURPLE_SCALES,
- MUT_SPECKLED_SCALES, // 80
+ MUT_SPECKLED_SCALES, // 85
MUT_ORANGE_SCALES,
MUT_INDIGO_SCALES,
MUT_RED2_SCALES,
MUT_IRIDESCENT_SCALES,
- MUT_PATTERNED_SCALES, // 85
+ MUT_PATTERNED_SCALES, // 90
NUM_MUTATIONS,
RANDOM_MUTATION = 100,