summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godprayer.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-05-05 21:07:12 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:32 -0600
commit62419d47668b34f798cbb109dfba23c838606e44 (patch)
tree6a4b1267363a21b8063ea0f5704935f5fbd26692 /crawl-ref/source/godprayer.cc
parentb3229a15c23770aa7e9b925617b06ee26c6bd3f8 (diff)
downloadcrawl-ref-62419d47668b34f798cbb109dfba23c838606e44.tar.gz
crawl-ref-62419d47668b34f798cbb109dfba23c838606e44.zip
Tone down Qazlal's 6* gift.
Just one pip of the relevant resistances or AC+3, like Elemental Adaptation in permanent form.
Diffstat (limited to 'crawl-ref/source/godprayer.cc')
-rw-r--r--crawl-ref/source/godprayer.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/godprayer.cc b/crawl-ref/source/godprayer.cc
index ef1bf3845d..a672619d05 100644
--- a/crawl-ref/source/godprayer.cc
+++ b/crawl-ref/source/godprayer.cc
@@ -304,19 +304,19 @@ static bool _altar_prayer()
return false;
}
- // Qazlal offers you an elemental resistance (rF++, rC++, rElec, AC+5).
+ // Qazlal offers you an elemental resistance (rF+, rC+, rElec, AC+3).
else if (you_worship(GOD_QAZLAL) && !player_under_penance()
- && you.piety >= piety_breakpoint(5)
- && !you.one_time_ability_used[GOD_QAZLAL])
+ && you.piety >= piety_breakpoint(5)
+ && !you.one_time_ability_used[GOD_QAZLAL])
{
simple_god_message(
" will protect you from an element of your choice.");
more();
mesclr();
- mpr_nojoin(MSGCH_PLAIN, "[a] Fire (rF++)");
- mpr_nojoin(MSGCH_PLAIN, "[b] Ice (rC++)");
+ mpr_nojoin(MSGCH_PLAIN, "[a] Fire (rF+)");
+ mpr_nojoin(MSGCH_PLAIN, "[b] Ice (rC+)");
mpr_nojoin(MSGCH_PLAIN, "[c] Air (rElec)");
- mpr_nojoin(MSGCH_PLAIN, "[d] Earth (AC+5)");
+ mpr_nojoin(MSGCH_PLAIN, "[d] Earth (AC+3)");
mprf(MSGCH_PROMPT, "Request which resistance (ESC to cancel)?");
int keyin = toalower(get_ch()) - 'a';
if (keyin < 0 || keyin > 3)