Skip to content
Snippets Groups Projects
Commit 6a7e3416 authored by dg's avatar dg
Browse files

Cauterize and Corrupted Shell only require 7500 damage taken

git-svn-id: http://svn.net-core.org/repos/t-engine4@6479 51575b47-30f0-44d4-a5cc-537603b46e54
parent ad82c872
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@
-- darkgod@te4.org
name = "Boot"
long_name = "T-Engine4 Main Menu"
long_name = "Tales of Maj'Eyal Main Menu"
short_name = "boot"
author = { "DarkGod", "darkgod@te4.org" }
homepage = "http://te4.org/"
......
......@@ -156,8 +156,8 @@ uberTalent{
uberTalent{
name = "Corrupted Shell",
mode = "passive",
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
require = { special={desc="Have received at least 7500 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] >= 7500) 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 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
require = { special={desc="Have received at least 7500 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] >= 7500
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