From c1416b48f9f3bdd9e5841ea4e03702e176f1a287 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Sun, 2 Aug 2020 03:12:15 +0200
Subject: [PATCH] she's probably going to kick your ass ;)

---
 game/modules/tome/data/talents/spells/thaumaturgy.lua | 6 ++++--
 game/modules/tome/data/talents/uber/mag.lua           | 7 +++----
 game/modules/tome/data/zones/town-angolwen/npcs.lua   | 5 +++++
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/game/modules/tome/data/talents/spells/thaumaturgy.lua b/game/modules/tome/data/talents/spells/thaumaturgy.lua
index a18011af30..1c635178cd 100644
--- a/game/modules/tome/data/talents/spells/thaumaturgy.lua
+++ b/game/modules/tome/data/talents/spells/thaumaturgy.lua
@@ -26,7 +26,9 @@ newTalent{
 	cooldown = 20,
 	range = 10,
 	use_only_arcane = 5,
-	tactical = { BUFF=2 },
+	tactical = { BUFF=function(self, t)
+		if not self:hasEffect(self.EFF_ORB_OF_THAUMATURGY) then return 2 end
+	end },
 	on_pre_use = thaumaturgyCheck,
 	requires_target = true,
 	no_energy = true,
@@ -183,7 +185,7 @@ newTalent{
 	mana = 25,
 	use_only_arcane = 5,
 	cooldown = 16,
-	tactical = { ATTACKAREA = { THAUM = 3 } },
+	tactical = { ATTACKAREA = { THAUM = 4 } },
 	range = 10,
 	is_beam_spell = true,
 	requires_target = true,
diff --git a/game/modules/tome/data/talents/uber/mag.lua b/game/modules/tome/data/talents/uber/mag.lua
index 3d45b1570c..f1f82f6f48 100644
--- a/game/modules/tome/data/talents/uber/mag.lua
+++ b/game/modules/tome/data/talents/uber/mag.lua
@@ -460,14 +460,13 @@ uberTalent{
 	cant_steal = true,
 	is_spell = true,
 	mode = "passive",
-	no_npc_use = true,
 	on_learn = function(self, t)
-		if not game.party:hasMember(self) then return end
-		self.descriptor.class_evolution = "High Thaumaturgist"
-
 		self:learnTalentType("spell/thaumaturgy", true)
 		self:setTalentTypeMastery("spell/thaumaturgy", 1.3)
 		self:attr("archmage_widebeam", 1)
+
+		if not game.party:hasMember(self) then return end
+		self.descriptor.class_evolution = "High Thaumaturgist"
 	end,
 	on_unlearn = function(self, t)
 	end,
diff --git a/game/modules/tome/data/zones/town-angolwen/npcs.lua b/game/modules/tome/data/zones/town-angolwen/npcs.lua
index 706c17c2cc..f99793d90e 100644
--- a/game/modules/tome/data/zones/town-angolwen/npcs.lua
+++ b/game/modules/tome/data/zones/town-angolwen/npcs.lua
@@ -96,6 +96,11 @@ newEntity{ define_as = "SUPREME_ARCHMAGE_LINANIIL",
 		[Talents.T_TELEPORT]=5,
 		[Talents.T_KEEN_SENSES]=5,
 		[Talents.T_PREMONITION]=5,
+		[Talents.T_HIGH_THAUMATURGIST]=1,
+		[Talents.T_ORB_OF_THAUMATURGY]=5,
+		[Talents.T_SLIPSTREAM]=5,
+		[Talents.T_MULTICASTER]=5,
+		[Talents.T_ELEMENTAL_ARRAY_BURST]=5,
 	},
 	resolvers.sustains_at_birth(),
 
-- 
GitLab