summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-10 02:12:34 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-10 02:12:34 +0000
commit25bd0ac90bfd27ce389af2c3b6ad29fab363e49d (patch)
tree666636d0c50f5587a3aafc0835e831285ae0af0f /crawl-ref/source/describe.cc
parent8ffef0022ab8c2f29b68777845435342af68b7a9 (diff)
downloadcrawl-ref-25bd0ac90bfd27ce389af2c3b6ad29fab363e49d.tar.gz
crawl-ref-25bd0ac90bfd27ce389af2c3b6ad29fab363e49d.zip
Fix spacing in the "^" screen in a better way, and mention TSO's
preference for blessing long swords there. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4983 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc27
1 files changed, 20 insertions, 7 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 04c38333bf..802325817b 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2433,7 +2433,7 @@ static std::string religion_help( god_type god )
{
case GOD_ZIN:
result += "Pray at one of " + god_name(god)
- + "'s altars to part with your money. ";
+ + "'s altars to part with your money.";
break;
case GOD_SHINING_ONE:
@@ -2450,28 +2450,37 @@ static std::string religion_help( god_type god )
result += "small ";
result += "righteous aura, and all beings within it are "
- "easier to hit. ";
+ "easier to hit.";
}
- // deliberate fall through
+ if (!player_under_penance() && you.piety > 160
+ && !you.num_gifts[god])
+ {
+ if (result != "")
+ result += " ";
+ result += "You can pray at an altar to have your weapon "
+ "blessed, especially a long sword.";
+ }
+ break;
+
case GOD_LUGONU:
if (!player_under_penance() && you.piety > 160
&& !you.num_gifts[god])
{
- result += "You can pray at an altar to ask " + god_name(god)
- + " to bless your weapon. ";
+ result += "You can pray at an altar to have your weapon "
+ "blessed.";
}
break;
case GOD_NEMELEX_XOBEH:
result += "You can pray to sacrifice all items on your square. "
"Inscribe items with !p, !* or =p to avoid sacrificing "
- "them accidentally. ";
+ "them accidentally.";
break;
case GOD_VEHUMET:
if (you.piety >= 50)
result += "Vehumet assists you in casting Conjurations"
- " and Summonings. ";
+ " and Summonings.";
break;
default:
@@ -2479,8 +2488,12 @@ static std::string religion_help( god_type god )
}
if (god_likes_butchery(god))
+ {
+ if (result != "")
+ result += " ";
result += "You can sacrifice corpses by dissecting"
" them during prayer.";
+ }
return result;
}