From 45b09ca507eeadfbf535cc880b1fc67ff84baea8 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Tue, 25 Dec 2012 21:01:23 +0000
Subject: [PATCH] Bligthed Summoning grants Bone Shield to Bone Giants

git-svn-id: http://svn.net-core.org/repos/t-engine4@6228 51575b47-30f0-44d4-a5cc-537603b46e54
---
 .../tome/data/talents/spells/advanced-necrotic-minions.lua     | 3 +++
 game/modules/tome/data/talents/spells/necrotic-minions.lua     | 3 ++-
 game/modules/tome/data/talents/uber/mag.lua                    | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/game/modules/tome/data/talents/spells/advanced-necrotic-minions.lua b/game/modules/tome/data/talents/spells/advanced-necrotic-minions.lua
index 636051b578..5b60addff9 100644
--- a/game/modules/tome/data/talents/spells/advanced-necrotic-minions.lua
+++ b/game/modules/tome/data/talents/spells/advanced-necrotic-minions.lua
@@ -266,6 +266,9 @@ newTalent{
 		if minion and x and y then
 			local lev = t.getLevel(self, t)
 			necroSetupSummon(self, minion, x, y, lev, true)
+			if self:knowTalent(self.T_BLIGHTED_SUMMONING) then 
+				if minion.subtype == "giant" then minion:learnTalent(minion.T_BONE_SHIELD, true, 3) minion:forceUseTalent(minion.T_BONE_SHIELD, {ignore_energy=true}) end
+			end
 		end
 
 		game:playSoundNear(self, "talents/spell_generic2")
diff --git a/game/modules/tome/data/talents/spells/necrotic-minions.lua b/game/modules/tome/data/talents/spells/necrotic-minions.lua
index 125ec22fb2..f266229b20 100644
--- a/game/modules/tome/data/talents/spells/necrotic-minions.lua
+++ b/game/modules/tome/data/talents/spells/necrotic-minions.lua
@@ -716,7 +716,8 @@ newTalent{
 				p.souls = p.souls - 1
 				necroSetupSummon(self, minion, pos.x, pos.y, lev, true)
 				if self:knowTalent(self.T_BLIGHTED_SUMMONING) then 
-					if minion.subtype == "skeleton" or minion.subtype == "giant" then minion:learnTalent(minion.T_BONE_GRAB, true, 3) end
+					if minion.subtype == "skeleton" then minion:learnTalent(minion.T_BONE_GRAB, true, 3) end
+					if minion.subtype == "giant" then minion:learnTalent(minion.T_BONE_SHIELD, true, 3) end
 					if minion.subtype == "ghoul" then minion:learnTalent(minion.T_BLOOD_LOCK, true, 3) end
 					if minion.subtype == "vampire" or minion.subtype == "lich" then minion:learnTalent(minion.T_DARKFIRE, true, 3) end
 					if minion.subtype == "ghost" or minion.subtype == "wight" then minion:learnTalent(minion.T_BLOOD_BOIL, true, 3) end
diff --git a/game/modules/tome/data/talents/uber/mag.lua b/game/modules/tome/data/talents/uber/mag.lua
index 1c73aa965e..3ea549011d 100644
--- a/game/modules/tome/data/talents/uber/mag.lua
+++ b/game/modules/tome/data/talents/uber/mag.lua
@@ -139,6 +139,7 @@ uberTalent{
 		- Turtle: Curse of Impotence
 		- Spider: Corrosive Worm
 		- Skeletons: Bone Grab
+		- Bone Giants: Bone Shield
 		- Ghouls: Blood Lock
 		- Vampires / Liches: Darkfire
 		- Ghosts / Wights: Blood Boil
-- 
GitLab