From 19bf317b0cca034346a0372cf5488be030b1fa37 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Thu, 6 Dec 2012 17:12:30 +0000
Subject: [PATCH] Buffed Champions of Urh'Rok

git-svn-id: http://svn.net-core.org/repos/t-engine4@5956 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/data/general/npcs/major-demon.lua | 8 ++++++++
 game/modules/tome/data/talents/uber/wil.lua         | 4 ++--
 game/modules/tome/data/timed_effects/mental.lua     | 2 +-
 3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/game/modules/tome/data/general/npcs/major-demon.lua b/game/modules/tome/data/general/npcs/major-demon.lua
index 984f40bede..00ecf6341d 100644
--- a/game/modules/tome/data/general/npcs/major-demon.lua
+++ b/game/modules/tome/data/general/npcs/major-demon.lua
@@ -211,8 +211,12 @@ newEntity{ base = "BASE_NPC_MAJOR_DEMON",
 	combat_armor = 90, combat_def = 60,
 	mana_regen = 100, positive_regen = 100, negative_regen = 100, equilibrium_regen = -100, vim_regen = 100, stamina_regen = 100,
 
+	stats = { str=22, dex=10, mag=20, con=13, wil=60 },
+
 	ai = "tactical",
 
+	combat_dam = resolvers.levelup(resolvers.mbonus(40, 20), 1, 2),
+
 	resolvers.equip{ {type="weapon", subtype="greatsword", autoreq=true}, },
 
 	resists={all = resolvers.mbonus(25, 20)},
@@ -231,6 +235,7 @@ newEntity{ base = "BASE_NPC_MAJOR_DEMON",
 		[Talents.T_STUNNING_BLOW]={base=5, every=8, max=8},
 		[Talents.T_SUNDER_ARMOUR]={base=5, every=8, max=10},
 		[Talents.T_SUNDER_ARMS]={base=5, every=8, max=10},
+		[Talents.T_SPELL_FEEDBACK]=1,
 	},
 }
 
@@ -327,6 +332,9 @@ newEntity{ base = "BASE_NPC_MAJOR_DEMON",
 		[Talents.T_FLAME]={base=5, every=8, max=10},
 			--Special
 		[Talents.T_INFERNAL_BREATH]={base=3, every=5, max=7},
+
+		[Talents.T_ELEMENTAL_SURGE]=1,
+		[Talents.T_SPELL_FEEDBACK]=1,
 	},
 	resolvers.sustains_at_birth(),
 	resolvers.drops{chance=100, nb=3, {tome_drops="boss"} },
diff --git a/game/modules/tome/data/talents/uber/wil.lua b/game/modules/tome/data/talents/uber/wil.lua
index 27628b75ee..8409c9924f 100644
--- a/game/modules/tome/data/talents/uber/wil.lua
+++ b/game/modules/tome/data/talents/uber/wil.lua
@@ -203,14 +203,14 @@ uberTalent{
 
 		local dur = target:getTalentCooldown(source_t)
 		if dur and dur > 0 then
-			target:setEffect(target.EFF_SPELL_FEEDBACK, dur, {power=30})
+			target:setEffect(target.EFF_SPELL_FEEDBACK, dur, {power=40})
 		end
 		return true
 	end,
 	info = function(self, t)
 		return ([[Your will is a shield against the assault of crazy arcane users.
 		Each time you take damage from a spell you punish the spellcaster with %0.2f mind damage.
-		Also they will suffer a 30%% spell failure chance for the durtion of the spell cooldown they used on you.]])
+		Also they will suffer a 40%% spell failure chance for the durtion of the spell cooldown they used on you.]])
 		:format(damDesc(self, DamageType.MIND, 20 + self:getWil() * 2))
 	end,
 }
diff --git a/game/modules/tome/data/timed_effects/mental.lua b/game/modules/tome/data/timed_effects/mental.lua
index 269d88bce5..c9b6db7002 100644
--- a/game/modules/tome/data/timed_effects/mental.lua
+++ b/game/modules/tome/data/timed_effects/mental.lua
@@ -2812,7 +2812,7 @@ newEffect{
 	status = "detrimental",
 	on_gain = function(self, err) return "#Target#'s is surrounded by antimagic forces.", "+Spell Feedback" end,
 	on_lose = function(self, err) return "#Target#'s antimagic forces vanishes.", "-Spell Feedback" end,
-	parameters = { power=30 },
+	parameters = { power=40 },
 	activate = function(self, eff)
 		self:effectTemporaryValue(eff, "spell_failure", eff.power)
 	end,
-- 
GitLab