Skip to content
Snippets Groups Projects
Commit 4755fefa authored by dg's avatar dg
Browse files

Lowered damage taken requirements of Corrupted Shell and Cauterize to 15k

git-svn-id: http://svn.net-core.org/repos/t-engine4@6306 51575b47-30f0-44d4-a5cc-537603b46e54
parent f6e74c0f
No related branches found
No related tags found
No related merge requests found
......@@ -156,8 +156,8 @@ uberTalent{
uberTalent{
name = "Corrupted Shell",
mode = "passive",
require = { special={desc="Have received at least 50000 blight damage and destroyed Zigur with the Grand Corruptor.", fct=function(self) return
(self.damage_intake_log and self.damage_intake_log[DamageType.BLIGHT] and self.damage_intake_log[DamageType.BLIGHT] >= 50000) and
require = { special={desc="Have received at least 15000 blight damage and destroyed Zigur with the Grand Corruptor.", fct=function(self) return
(self.damage_intake_log and self.damage_intake_log[DamageType.BLIGHT] and self.damage_intake_log[DamageType.BLIGHT] >= 15000) and
(game.state.birth.ignore_prodigies_special_reqs or (
self:hasQuest("anti-antimagic") and
self:hasQuest("anti-antimagic"):isStatus(engine.Quest.DONE) and
......
......@@ -190,8 +190,8 @@ uberTalent{
name = "Cauterize",
mode = "passive",
cooldown = 12,
require = { special={desc="Have received at least 50000 fire damage, and have cast at least 1000 spells", fct=function(self) return
self.talent_kind_log and self.talent_kind_log.spell and self.talent_kind_log.spell >= 1000 and self.damage_intake_log and self.damage_intake_log[DamageType.FIRE] and self.damage_intake_log[DamageType.FIRE] >= 50000
require = { special={desc="Have received at least 15000 fire damage, and have cast at least 1000 spells", fct=function(self) return
self.talent_kind_log and self.talent_kind_log.spell and self.talent_kind_log.spell >= 1000 and self.damage_intake_log and self.damage_intake_log[DamageType.FIRE] and self.damage_intake_log[DamageType.FIRE] >= 15000
end} },
trigger = function(self, t, value)
self:startTalentCooldown(t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment