summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/abl-show.cc8
-rw-r--r--crawl-ref/source/dat/descript/ability.txt4
-rw-r--r--crawl-ref/source/enum.h2
-rw-r--r--crawl-ref/source/religion.cc4
4 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index a9784f8105..feac3cb429 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -108,7 +108,7 @@ ability_type god_abilities[MAX_NUM_GODS][MAX_GOD_ABILITIES] =
ABIL_KIKU_ENSLAVE_UNDEAD, ABIL_NON_ABILITY,
ABIL_KIKU_INVOKE_DEATH },
// Yredelemnul
- { ABIL_YRED_ANIMATE_CORPSE, ABIL_YRED_RECALL_UNDEAD,
+ { ABIL_YRED_ANIMATE_REMAINS, ABIL_YRED_RECALL_UNDEAD,
ABIL_YRED_ANIMATE_DEAD, ABIL_YRED_DRAIN_LIFE,
ABIL_YRED_ENSLAVE_SOUL },
// Xom
@@ -234,7 +234,7 @@ static const ability_def Ability_List[] =
{ ABIL_KIKU_INVOKE_DEATH, "Invoke Death", 4, 0, 250, 3, ABFLAG_NONE },
// Yredelemnul
- { ABIL_YRED_ANIMATE_CORPSE, "Animate Corpse", 1, 0, 100, 0, ABFLAG_NONE },
+ { ABIL_YRED_ANIMATE_REMAINS, "Animate Remains", 1, 0, 100, 0, ABFLAG_NONE },
{ ABIL_YRED_RECALL_UNDEAD, "Recall Undead Slaves", 2, 0, 50, 0, ABFLAG_NONE },
{ ABIL_YRED_ANIMATE_DEAD, "Animate Dead", 3, 0, 100, 1, ABFLAG_NONE },
{ ABIL_YRED_DRAIN_LIFE, "Drain Life", 6, 0, 200, 2, ABFLAG_NONE },
@@ -654,7 +654,7 @@ static talent _get_talent(ability_type ability, bool check_confused)
failure = 160 - you.piety; // starts at 60%
break;
- case ABIL_YRED_ANIMATE_CORPSE:
+ case ABIL_YRED_ANIMATE_REMAINS:
invoc = true;
failure = 40 - (you.piety / 20) - (3 * you.skills[SK_INVOCATIONS]);
break;
@@ -1501,7 +1501,7 @@ static bool _do_ability(const ability_def& abil)
exercise(SK_INVOCATIONS, 10 + random2(14));
break;
- case ABIL_YRED_ANIMATE_CORPSE:
+ case ABIL_YRED_ANIMATE_REMAINS:
mpr("You call on the dead to walk for you...");
animate_a_corpse(you.pos(), CORPSE_BODY, BEH_FRIENDLY, you.pet_target,
GOD_YREDELEMNUL);
diff --git a/crawl-ref/source/dat/descript/ability.txt b/crawl-ref/source/dat/descript/ability.txt
index 9f3f26e3fb..f465e90eb6 100644
--- a/crawl-ref/source/dat/descript/ability.txt
+++ b/crawl-ref/source/dat/descript/ability.txt
@@ -189,9 +189,9 @@ Invoke Death
Summon the personification of Death, which, depending on your Invocations skill, may be hostile.
%%%%
# Yredelemnul
-Animate Corpse
+Animate Remains
-Reanimate a corpse or skeleton as a follower.
+Reanimate a single corpse or skeleton as a follower.
%%%%
Animate Dead ability
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 941155f61b..367da2badb 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -62,7 +62,7 @@ enum ability_type
ABIL_KIKU_RECALL_UNDEAD_SLAVES = 130, // 130
ABIL_KIKU_ENSLAVE_UNDEAD = 132, // 132
ABIL_KIKU_INVOKE_DEATH, // 133
- ABIL_YRED_ANIMATE_CORPSE = 140, // 140
+ ABIL_YRED_ANIMATE_REMAINS = 140, // 140
ABIL_YRED_RECALL_UNDEAD,
ABIL_YRED_ANIMATE_DEAD,
ABIL_YRED_DRAIN_LIFE,
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 94aa8900a2..5fa3d994da 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -209,7 +209,7 @@ const char* god_gain_power_messages[NUM_GODS][MAX_GOD_ABILITIES] =
"",
"summon an emissary of Death" },
// Yredelemnul
- { "animate corpses",
+ { "animate remains",
"recall your undead slaves",
"animate legions of the dead",
"drain ambient lifeforce",
@@ -295,7 +295,7 @@ const char* god_lose_power_messages[NUM_GODS][MAX_GOD_ABILITIES] =
"",
"summon an emissary of Death" },
// Yredelemnul
- { "animate corpses",
+ { "animate remains",
"recall your undead slaves",
"animate legions of the dead",
"drain ambient lifeforce",