From 567539891b9581ff8d3ccf4289ed74215e55b5f1 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sun, 15 May 2011 14:02:09 +0000
Subject: [PATCH] Renamed the demon plane to the Fearscape

git-svn-id: http://svn.net-core.org/repos/t-engine4@3370 51575b47-30f0-44d4-a5cc-537603b46e54
---
 .../data/talents/corruptions/shadowflame.lua  | 20 +++++++++----------
 .../data/texts/unlock-corrupter_corruptor.lua |  2 +-
 .../data/zones/demon-plane-spell/zone.lua     |  2 +-
 .../tome/data/zones/demon-plane/zone.lua      |  2 +-
 4 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/game/modules/tome/data/talents/corruptions/shadowflame.lua b/game/modules/tome/data/talents/corruptions/shadowflame.lua
index 2d32f4a8c8..604b48ee85 100644
--- a/game/modules/tome/data/talents/corruptions/shadowflame.lua
+++ b/game/modules/tome/data/talents/corruptions/shadowflame.lua
@@ -110,7 +110,7 @@ newTalent{
 	info = function(self, t)
 		return ([[Call upon the essence of the supreme demon overlord Urh'Rok to turn into a demon.
 		While in demon form you gain %d%% fire resistance, %d%% darkness resistance and your global speed is increased by %d%%.
-		The flames of the demon plane will heal you while in demon form.
+		The flames of the fearscape will heal you while in demon form.
 		The resistances and heal will increase with Magic stat.]]):
 		format(
 			self:combatTalentSpellDamage(t, 20, 30), self:combatTalentSpellDamage(t, 20, 35),
@@ -120,7 +120,7 @@ newTalent{
 }
 
 newTalent{
-	name = "Demon Plane",
+	name = "Fearscape", short_name = "DEMON_PLANE",
 	type = {"corruption/shadowflame", 4},
 	require = corrs_req4,
 	mode = "sustained",
@@ -132,7 +132,7 @@ newTalent{
 	range = 5,
 	activate = function(self, t)
 		if game.zone.is_demon_plane then
-			game.logPlayer(self, "This spell can not be used from within the demon place.")
+			game.logPlayer(self, "This spell can not be used from within the Fearscape.")
 			return
 		end
 		if not self:canBe("worldport") then
@@ -202,7 +202,7 @@ newTalent{
 				self.on_die, self.demon_plane_on_die = self.demon_plane_on_die, nil
 			end
 
-			game.logPlayer(game.player, "#LIGHT_RED#You are taken to the demon plane!")
+			game.logPlayer(game.player, "#LIGHT_RED#You are taken to the Fearscape!")
 			level.allow_demon_plane_damage = true
 		end)
 
@@ -268,18 +268,18 @@ newTalent{
 				act.last_act_turn = math.floor(game.turn / (game.zone.wilderness and 1000 or 10))
 			end
 
-			game.logPlayer(game.player, "#LIGHT_RED#You are brought back from the demon plane!")
+			game.logPlayer(game.player, "#LIGHT_RED#You are brought back from the Fearscape!")
 		end)
 
 		return true
 	end,
 	info = function(self, t)
-		return ([[Summon a part of the demon plane to intersect with the current level.
-		Your target and yourself are taken to the demon plane, trapped there until you end the spell or until your target dies.
-		While in the demon plane a constant aura of flames will burn both of you (unless you are a demon) for %0.2f fire damage.
-		When the spell ends only you and the target (if still alive) are taken back to your home plane, all summons are left in the demon plane.
+		return ([[Summon a part of the Fearscape to intersect with the current level.
+		Your target and yourself are taken to the Fearscape, trapped there until you end the spell or until your target dies.
+		While inside a constant aura of flames will burn both of you (unless you are a demon) for %0.2f fire damage.
+		When the spell ends only you and the target (if still alive) are taken back to your home plane, all summons are left in the Fearscape.
 		Objects will be moved as well.
-		This spell has no effect if cast when already inside the demon plane.
+		This spell has no effect if cast when already inside the Fearscape.
 		The damage will increase with the Magic stat]]):format(damDesc(self, DamageType.FIRE, self:combatTalentSpellDamage(t, 12, 140)))
 	end,
 }
diff --git a/game/modules/tome/data/texts/unlock-corrupter_corruptor.lua b/game/modules/tome/data/texts/unlock-corrupter_corruptor.lua
index d8da2e32cd..1d76b3c83e 100644
--- a/game/modules/tome/data/texts/unlock-corrupter_corruptor.lua
+++ b/game/modules/tome/data/texts/unlock-corrupter_corruptor.lua
@@ -29,7 +29,7 @@ Class features:#YELLOW#
 - Plague your foes with deadly and contagious diseases
 - Hex and curse your foes, hindering and withering them away
 - Sap the life of your victims to heal yourself
-- Master demonic energies to burn and destroy. You can even summon a part of the demon plane.#WHITE#
+- Master demonic energies to burn and destroy. You can even summon a part of the demon plane, the Fearscape, to trap your foes.#WHITE#
 
 Corruptors use "vim" to power their special abilities.
 Vim is the life force of all beings. It does not regenerate, and can only be stolen from your foes.
diff --git a/game/modules/tome/data/zones/demon-plane-spell/zone.lua b/game/modules/tome/data/zones/demon-plane-spell/zone.lua
index 7b3acd758c..b6f6e1a5a4 100644
--- a/game/modules/tome/data/zones/demon-plane-spell/zone.lua
+++ b/game/modules/tome/data/zones/demon-plane-spell/zone.lua
@@ -18,7 +18,7 @@
 -- darkgod@te4.org
 
 return {
-	name = "Demon Plane",
+	name = "Fearscape",
 	level_range = {1, 100},
 	level_scheme = "player",
 	max_level = 1,
diff --git a/game/modules/tome/data/zones/demon-plane/zone.lua b/game/modules/tome/data/zones/demon-plane/zone.lua
index 9431376bc1..21450d17ad 100644
--- a/game/modules/tome/data/zones/demon-plane/zone.lua
+++ b/game/modules/tome/data/zones/demon-plane/zone.lua
@@ -18,7 +18,7 @@
 -- darkgod@te4.org
 
 return {
-	name = "Demon Plane",
+	name = "Fearscape",
 	level_range = {35, 45},
 	level_scheme = "player",
 	max_level = 1,
-- 
GitLab