summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 02:55:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 02:55:44 +0000
commit69eb9a98d4a441c5158a2535f5d25c42b2ef5ede (patch)
treee7fb66eee47e899bb6cd9c3938d6199c339caa6b /crawl-ref
parentac1d8274584446d48f5246352e501ebdaed883e0 (diff)
downloadcrawl-ref-69eb9a98d4a441c5158a2535f5d25c42b2ef5ede.tar.gz
crawl-ref-69eb9a98d4a441c5158a2535f5d25c42b2ef5ede.zip
Remove the now-unused blue and green marks mutations.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9377 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/enum.h2
-rw-r--r--crawl-ref/source/mutation.cc32
-rw-r--r--crawl-ref/source/output.cc8
3 files changed, 0 insertions, 42 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index baa78371f7..2a4e364bed 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2312,8 +2312,6 @@ enum mutation_type
MUT_BREATHE_POISON,
MUT_STINGER,
MUT_BIG_WINGS,
- MUT_BLUE_MARKS, // decorative, as in "mark of the devil"
- MUT_GREEN_MARKS,
MUT_SAPROVOROUS,
MUT_GOURMAND,
MUT_SHAGGY_FUR,
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 232ce798c2..5ccc59d3c1 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -879,36 +879,6 @@ mutation_def mutation_defs[] = {
"big wings"
},
- // used by evil gods to mark followers - FIXME: unused!
- { MUT_BLUE_MARKS, 0, 3, false, true,
- {"There is a blue sigil on each of your hands.",
- "There are several blue sigils on your hands and arms.",
- "Your hands, arms and shoulders are covered in intricate, "
- "arcane blue writing."},
-
- {"Your hands itch.",
- "Your hands and forearms itch.",
- "Your arms, hands and shoulders itch."},
-
- {"", "", ""},
-
- "blue marks"
- },
- { MUT_GREEN_MARKS, 0, 3, false, true,
- {"There is a green sigil on your chest.",
- "There are several green sigils on your chest and abdomen.",
- "Your chest, abdomen and neck are covered in intricate, "
- "arcane green writing."},
-
- {"Your chest itches.",
- "Your chest and abdomen itch.",
- "Your chest, abdomen and neck itch."},
-
- {"", "", ""},
-
- "green marks"
- },
-
// species-dependent innate mutations
{ MUT_SAPROVOROUS, 0, 3, false, false,
{"You can tolerate rotten meat.",
@@ -1740,8 +1710,6 @@ static int _calc_mutation_amusement_value(mutation_type which_mutation)
case MUT_BREATHE_POISON:
case MUT_STINGER:
case MUT_BIG_WINGS:
- case MUT_BLUE_MARKS:
- case MUT_GREEN_MARKS:
case MUT_LOW_MAGIC:
amusement *= 2; // funny!
break;
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 88998c72c8..5b295f3aef 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2880,14 +2880,6 @@ std::string _status_mut_abilities()
case MUT_BIG_WINGS:
current = "large and strong wings";
break;
- case MUT_BLUE_MARKS:
- snprintf(info, INFO_SIZE, "blue evil mark %d", level);
- current = info;
- break;
- case MUT_GREEN_MARKS:
- snprintf(info, INFO_SIZE, "green evil mark %d", level);
- current = info;
- break;
// scales etc. -> calculate sum of AC bonus
case MUT_RED_SCALES: