From b30aacda1fd2b82ae1436f3ac24e3c588d8209d1 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 20 Jan 2008 23:55:11 +0000 Subject: Smooth out TSO's draining protection to work with fractional piety for both the raw damage and the experience loss. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3312 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index dd8ee451f4..0f2141a89d 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -2527,15 +2527,13 @@ void describe_god( god_type which_god, bool give_title ) else if (which_god == GOD_SHINING_ONE) { have_any = true; - if (you.piety >= 50) - { - const char *how = (you.piety >= 150) ? "carefully" : // l.p. 3 - (you.piety >= 100) ? "often" : - "sometimes"; + const char *how = (you.piety >= 150) ? "carefully" : // l.p. 3 + (you.piety >= 100) ? "often" : + (you.piety >= 50) ? "sometimes" : + "occasionally"; - cprintf("%s %s protects your life force." EOL, - god_name(which_god).c_str(), how); - } + cprintf("%s %s shields you from negative energy." EOL, + god_name(which_god).c_str(), how); } else if (which_god == GOD_TROG) { -- cgit v1.2.3-54-g00ecf