summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-24 19:01:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-24 19:01:04 +0000
commit779fa77b12bdb33d3be215297da1daabf96f5af7 (patch)
treeb3038885000a69dd9f2e30d8fab0107805882122 /crawl-ref/source/player.cc
parent6fdfd21f6074128ed4b3008b30e71364aacc50e3 (diff)
downloadcrawl-ref-779fa77b12bdb33d3be215297da1daabf96f5af7.tar.gz
crawl-ref-779fa77b12bdb33d3be215297da1daabf96f5af7.zip
Change SP_GOLDEN_DRACONIAN to SP_YELLOW_DRACONIAN, for consistency.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5215 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 376ab3e73e..ee24dc3615 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -437,7 +437,7 @@ bool player_genus(genus_type which_genus, species_type species)
case SP_RED_DRACONIAN:
case SP_WHITE_DRACONIAN:
case SP_GREEN_DRACONIAN:
- case SP_GOLDEN_DRACONIAN:
+ case SP_YELLOW_DRACONIAN:
case SP_GREY_DRACONIAN:
case SP_BLACK_DRACONIAN:
case SP_PURPLE_DRACONIAN:
@@ -559,7 +559,7 @@ bool is_player_same_species(const int mon, bool transform)
case SP_RED_DRACONIAN:
case SP_WHITE_DRACONIAN:
case SP_GREEN_DRACONIAN:
- case SP_GOLDEN_DRACONIAN:
+ case SP_YELLOW_DRACONIAN:
case SP_GREY_DRACONIAN:
case SP_BLACK_DRACONIAN:
case SP_PURPLE_DRACONIAN:
@@ -1357,7 +1357,7 @@ int player_res_acid(bool consider_unidentified_gear)
int res = 0;
if (!transform_changed_physiology())
{
- if (you.species == SP_GOLDEN_DRACONIAN
+ if (you.species == SP_YELLOW_DRACONIAN
&& you.experience_level >= 7)
res += 2;
@@ -3154,7 +3154,7 @@ void level_change(bool skip_attribute_increase)
case SP_RED_DRACONIAN:
case SP_WHITE_DRACONIAN:
case SP_GREEN_DRACONIAN:
- case SP_GOLDEN_DRACONIAN:
+ case SP_YELLOW_DRACONIAN:
/* Grey is later */
case SP_BLACK_DRACONIAN:
case SP_PURPLE_DRACONIAN:
@@ -3183,7 +3183,7 @@ void level_change(bool skip_attribute_increase)
perma_mutate(MUT_POISON_RESISTANCE, 1);
break;
- case SP_GOLDEN_DRACONIAN:
+ case SP_YELLOW_DRACONIAN:
mpr("Your scales start taking on a golden yellow colour.", MSGCH_INTRINSIC_GAIN);
break;
case SP_BLACK_DRACONIAN:
@@ -4054,7 +4054,7 @@ std::string species_name(species_type speci, int level, bool genus, bool adj)
case SP_RED_DRACONIAN: res = "Red Draconian"; break;
case SP_WHITE_DRACONIAN: res = "White Draconian"; break;
case SP_GREEN_DRACONIAN: res = "Green Draconian"; break;
- case SP_GOLDEN_DRACONIAN: res = "Yellow Draconian"; break;
+ case SP_YELLOW_DRACONIAN: res = "Yellow Draconian"; break;
case SP_GREY_DRACONIAN: res = "Grey Draconian"; break;
case SP_BLACK_DRACONIAN: res = "Black Draconian"; break;
case SP_PURPLE_DRACONIAN: res = "Purple Draconian"; break;