summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/status.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-05-06 18:23:48 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:34 -0600
commitd9529c446b22593d4ba3fdc82fc51f949f58925d (patch)
tree89d1c30e8f00d880cf1168454457f59ce61347ed /crawl-ref/source/status.cc
parent6698dc1909e990d05ad67b4b0a8bfdda72702ca2 (diff)
downloadcrawl-ref-d9529c446b22593d4ba3fdc82fc51f949f58925d.tar.gz
crawl-ref-d9529c446b22593d4ba3fdc82fc51f949f58925d.zip
Replace Gozag's gold lust with gold distraction (dpeg).
For every fresh pile of gold in LOS of a monster when they're acting, they have a 5% chance of doing nothing that turn.
Diffstat (limited to 'crawl-ref/source/status.cc')
-rw-r--r--crawl-ref/source/status.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/crawl-ref/source/status.cc b/crawl-ref/source/status.cc
index 3c732b2aa8..e445571a32 100644
--- a/crawl-ref/source/status.cc
+++ b/crawl-ref/source/status.cc
@@ -697,26 +697,6 @@ bool fill_status_info(int status, status_info* inf)
}
break;
- case STATUS_GOLDEN:
- {
- const int gold_bonus = gozag_gold_bonus();
-
- if (gold_bonus == 0)
- break;
-
- inf->light_colour = (gold_bonus >= 5) ? WHITE :
- (gold_bonus >= 3) ? LIGHTBLUE
- : BLUE;
-
- inf->light_text = "Gold";
- inf->short_text = "gold lust";
- inf->long_text =
- make_stringf("Your skills are %senhanced by your lust for gold.",
- gold_bonus >= 5 ? "greatly " :
- gold_bonus < 3 ? "slightly " : "");
- break;
- }
-
case STATUS_BRIBE:
{
int bribe = 0;