summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godprayer.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-04-29 10:42:27 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:27 -0600
commit11bd2438c188d22a288c72d0684ba6f3a68b16aa (patch)
tree9613bb52c68764e119bfaca7763224b02dafe90c /crawl-ref/source/godprayer.cc
parentc078d7dcdaa4c4d35bdf95112ac14a15fc0422eb (diff)
downloadcrawl-ref-11bd2438c188d22a288c72d0684ba6f3a68b16aa.tar.gz
crawl-ref-11bd2438c188d22a288c72d0684ba6f3a68b16aa.zip
Rewrite Qazlal's 6* elemental protection messages (ChrisOelmueller).
The original version of these were written when the relevant mutation messages were less clear.
Diffstat (limited to 'crawl-ref/source/godprayer.cc')
-rw-r--r--crawl-ref/source/godprayer.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/godprayer.cc b/crawl-ref/source/godprayer.cc
index e38962e9f0..ef1bf3845d 100644
--- a/crawl-ref/source/godprayer.cc
+++ b/crawl-ref/source/godprayer.cc
@@ -331,19 +331,20 @@ static bool _altar_prayer()
default:
case 0:
you.attribute[ATTR_DIVINE_FIRE_RES] = 1;
- mprf(MSGCH_GOD, "You feel cold.");
+ simple_god_message(" grants you protection from fire!");
break;
case 1:
you.attribute[ATTR_DIVINE_COLD_RES] = 1;
- mprf(MSGCH_GOD, "You feel hot.");
+ simple_god_message(" grants you protection from cold!");
break;
case 2:
you.attribute[ATTR_DIVINE_ELEC_RES] = 1;
- mprf(MSGCH_GOD, "You feel insulated.");
+ simple_god_message(" grants you protection from electricity!");
break;
case 3:
you.attribute[ATTR_DIVINE_AC] = 1;
- mprf(MSGCH_GOD, "You feel tough.");
+ simple_god_message(
+ " grants you protection from physical attacks!");
you.redraw_armour_class = true;
break;
}