summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index e4922298df..8b1f27f332 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -7265,6 +7265,32 @@ bool player::backlit(bool check_haloed) const
|| (check_haloed ? haloed() : false));
}
+// This is the imperative version.
+void player::backlight()
+{
+ if (!you.duration[DUR_INVIS])
+ {
+ if (you.duration[DUR_BACKLIGHT])
+ mpr("You glow brighter.");
+ else
+ mpr("You are outlined in light.");
+
+ you.duration[DUR_BACKLIGHT] += random_range(15, 35);
+ if (you.duration[DUR_BACKLIGHT] > 250)
+ you.duration[DUR_BACKLIGHT] = 250;
+ }
+ else
+ {
+ mpr("You feel strangely conspicuous.");
+
+ you.duration[DUR_BACKLIGHT] += random_range(3, 5);
+ if (you.duration[DUR_BACKLIGHT] > 250)
+ you.duration[DUR_BACKLIGHT] = 250;
+
+
+ }
+}
+
bool player::haloed() const
{
return (halo_radius());