summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-equip.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2014-04-25 03:42:29 +0200
committerShmuale Mark <shm.mark@gmail.com>2014-04-25 11:40:31 -0400
commita6c237be8d33b670d2e4c6b4caa074fc3dfe5b73 (patch)
treecdaffd706904fb48f9c754c501699213cb919388 /crawl-ref/source/player-equip.cc
parenta51e621710f96d1f80ce33c44f3a1cffb5cc883f (diff)
downloadcrawl-ref-a6c237be8d33b670d2e4c6b4caa074fc3dfe5b73.tar.gz
crawl-ref-a6c237be8d33b670d2e4c6b4caa074fc3dfe5b73.zip
Clarify artefact un-/equip messages (wheals)
For some properties, these were cryptic enough to confuse players.
Diffstat (limited to 'crawl-ref/source/player-equip.cc')
-rw-r--r--crawl-ref/source/player-equip.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/player-equip.cc b/crawl-ref/source/player-equip.cc
index 3cad2bf923..f69d1d50fc 100644
--- a/crawl-ref/source/player-equip.cc
+++ b/crawl-ref/source/player-equip.cc
@@ -930,7 +930,7 @@ static void _equip_armour_effect(item_def& arm, bool unmeld)
break;
case SPARM_POISON_RESISTANCE:
- mpr("You feel healthy.");
+ mpr("You feel resistant to poison.");
break;
case SPARM_SEE_INVISIBLE:
@@ -993,7 +993,7 @@ static void _equip_armour_effect(item_def& arm, bool unmeld)
break;
case SPARM_POSITIVE_ENERGY:
- mpr("Your life force is being protected.");
+ mpr("You feel more protected from negative energy.");
break;
case SPARM_ARCHMAGI:
@@ -1064,16 +1064,16 @@ static void _unequip_armour_effect(item_def& item, bool meld)
break;
case SPARM_FIRE_RESISTANCE:
- mpr("\"Was it this warm in here before?\"");
+ mpr("You feel less resistant to fire.");
break;
case SPARM_COLD_RESISTANCE:
- mpr("You catch a bit of a chill.");
+ mpr("You feel less resistant to cold.");
break;
case SPARM_POISON_RESISTANCE:
if (player_res_poison() <= 0)
- mpr("You feel less healthy.");
+ mpr("You no longer feel resistant to poison.");
break;
case SPARM_SEE_INVISIBLE:
@@ -1150,7 +1150,7 @@ static void _unequip_armour_effect(item_def& item, bool meld)
break;
case SPARM_POSITIVE_ENERGY:
- mpr("You feel vulnerable.");
+ mpr("You feel less protected from negative energy.");
break;
case SPARM_ARCHMAGI: