当前位置:首页>>攻略文章>>正文
WOW7.2.5戒律与神牧自用TMW及插件分享
2018-08-12 11:27:48 作者:Heting·桓 来源: 浏览次数:0
摘要:而且看到神殿里的很多TMW字符串 (特别是戒律) 的都已经比较旧,甚至是戒律小重做之前的TMW了。

差不多就这么多啦,希望大家的萨墓之旅都能顺利,多出泰坦。谢谢各位。
 
^1^T^SVersion^N84002 ^SDrawEdge^B ^SNumGroups^N25 ^STextureName^SElvUI~`Norm ^SCodeSnippets^T ^N1^T ^SName^ST2DFORTMW ^SCode^S--Time~`to~`die~`by~`Shapri/灰谷--~J local~`T2D_TMW_FRAME~`=~`CreateFrame("FRAME")~J local~`TF~`=~`T2D_TMW_FRAME~`~J local~`T2D_TMW_OBJECTFRAME~`=~`CreateFrame("FRAME")--"Target~`time~`to~`die~`frame"~J local~`TOF~`=~`T2D_TMW_OBJECTFRAME~J local~`class,classes,classIndex~`=~`UnitClass("PLAYER")~J local~`T2D_TMW_TOGGLE~`=~`1~`--T2D_TMW开启状态,1启用,0关闭~J local~`T2D_TMW_COMBAT~`=~`0~`--初始化战斗状态~`~J local~`T2D_TMW_COUNT~`=~`0~`--初始化次数~J T2D_TMWSTRING~`=~`"初始化"~`--全局化T2D_TMW.STRING~J TF:RegisterEvent("UNIT_AURA")~`~J TF:RegisterEvent("ACTIVE_TALENT_GROUP_CHANGED");--天赋专精切换~J ~J function~`TF:OnEvent(event,arg1,_,_)~J ~`~`~`~`local~`ShadowTalent~`=~`IsSpellKnown(589)--判断是否为暗影天赋~J ~`~`~`~`if~`classIndex~`~|=~`5~`then~`~`--如果不是牧师~J ~`~`~`~`~`~`~`~`--T2D_TMWSTRING~`=~`"测试"~J ~`~`~`~`~`~`~`~`T2D_TMW_TOGGLE~`=~`0~`--关闭T2D_TMW~J ~`~`~`~`~`~`~`~`T2D_TMW_TOGGLESet()~J ~`~`~`~`~`~`~`~`--return~`~J ~`~`~`~`elseif~`~`event~`==~`"UNIT_AURA"~`and~`T2D_TMW_COUNT~`==~`0~`then~J ~`~`~`~`~`~`~`~`if~`ShadowTalent~`==~`false~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLE~`=~`0~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLESet()~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_COUNT~`=~`1~J ~`~`~`~`~`~`~`~`elseif~`ShadowTalent~`==~`true~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLE~`=~`1~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLESet()~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_COUNT~`=~`1~J ~`~`~`~`~`~`~`~`end~J ~`~`~`~`elseif~`(event=="ACTIVE_TALENT_GROUP_CHANGED")~`then~J ~`~`~`~`~`~`~`~`if~`ShadowTalent~`==~`false~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLE~`=~`0~`~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLESet()~J ~`~`~`~`~`~`~`~`elseif~`ShadowTalent~`==~`true~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLE~`=~`1~`~J ~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_TOGGLESet()~`~`~`~`~J ~`~`~`~`~`~`~`~`end~J ~`~`~`~`end~J end~J function~`T2D_TMW_TOGGLESet()~J ~`~`~`~`function~`T2D_TMW_VAR_INITIALIZE()~J ~`~`~`~`~`~`~`~`T2D_TMW~`=~`~`{}~`~J ~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO~`=~`~`{}~J ~`~`~`~`~`~`~`~`T2D_TMW.PRETIME~`=~`nil~J ~`~`~`~`~`~`~`~`T2D_TMW.STRING~`=~`""~J ~`~`~`~`~`~`~`~`T2D_TMW_UPDATEPRE~`=~`nil~J ~`~`~`~`~`~`~`~`T2D_TMWSTRING~`=~`""~J ~`~`~`~`end~J ~`~`~`~`function~`T2D_TMW_EVENT_REG()~J ~`~`~`~`~`~`~`~`TOF:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED");--注册战斗日志事件~J ~`~`~`~`~`~`~`~`TOF:RegisterEvent("PLAYER_REGEN_DISABLED");--注册进入战斗事件~J ~`~`~`~`~`~`~`~`TOF:RegisterEvent("PLAYER_REGEN_ENABLED");--注册脱离战斗事件~J ~`~`~`~`~`~`~`~`--print("注册事件")~J ~`~`~`~`end~J ~`~`~`~`function~`T2D_TMW_EVENT_UNREG(frame)~J ~`~`~`~`~`~`~`~`frame:UnregisterAllEvents()~J ~`~`~`~`end~`~`~`~`~J ~`~`~`~`if~`T2D_TMW_TOGGLE~`==~`0~`then~`--如果T2D_TMW处于关闭状态~J ~`~`~`~`~`~`~`~`T2D_TMW_EVENT_UNREG(TF)~J ~`~`~`~`~`~`~`~`T2D_TMW_EVENT_UNREG(TOF)~J ~`~`~`~`~`~`~`~`TOF:Hide()~J ~`~`~`~`~`~`~`~`--return~`~`~`~`~J ~`~`~`~`elseif~`T2D_TMW_TOGGLE~`==~`1~`then~`--如果处于启用状态~J ~`~`~`~`~`~`~`~`T2D_TMW_VAR_INITIALIZE()--初始化所有变量~J ~`~`~`~`~`~`~`~`T2D_TMW_EVENT_REG()--为TOF注册事件~J ~`~`~`~`~`~`~`~`--&darr;TOF事件函数~J ~`~`~`~`~`~`~`~`function~`TOF:OnEvent(event,timestamp,~`eventtype,~`hideCaster,~`sourceGUID,~`sourceName,~`sourceFlags,~`sourceFlags2,~`destGUID,~`destName,~`destFlags,~`destFlags2,~`spellid,~`spellname,~`swingdamage,~`damage)--spellid,swingdamage,~`damage需要测试~J ~`~`~`~`~`~`~`~`~`~`~`~`--print("spellid:"~`..~`spellid~`..~`"spellname:"~`..~`spellname~`..~`"swingdamage:"~`..~`swingdamage)~J ~`~`~`~`~`~`~`~`~`~`~`~`CurrentTime~`=~`GetTime()~`~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`if~`event~`==~`"PLAYER_REGEN_DISABLED"~`then~`--进入及脱离战斗~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_COMBAT~`=~`1~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_VAR_INITIALIZE()~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.PRETIME~`=~`GetTime()~`~`~`~`~`--记录进入战斗时间~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("进入战斗,T2D_TMW_COMBAT:"~`..~`T2D_TMW_COMBAT)~J ~`~`~`~`~`~`~`~`~`~`~`~`elseif~`event~`==~`"PLAYER_REGEN_ENABLED"~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_COMBAT~`=~`0~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_VAR_INITIALIZE()~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("脱离战斗,T2D_TMW_COMBAT:"~`..~`T2D_TMW_COMBAT)~J ~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`if~`(event~`==~`"COMBAT_LOG_EVENT_UNFILTERED"~`and~`T2D_TMW_COMBAT~`==~`1)~`then~`--当角色在战斗状态才统计数据~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_UPDATEPRE~`=~`T2D_TMW_UPDATEPRE~`or~`GetTime()~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`function~`T2D_TMW.UPDATE(dmg)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`destGUID~`then~`--如果目标GUID存在~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[destGUID]~`=~`T2D_TMW.UNITINFO[destGUID]~`or~`{}~`--初始化目标数据~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[destGUID].TIMESTART~`=~`T2D_TMW.UNITINFO[destGUID].TIMESTART~`or~`CurrentTime~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`T2D_TMW.UNITINFO[destGUID].HEALTHGONE~`~|=~`nil~`then~`--计算目标已损失血量~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[destGUID].HEALTHGONE~`=~`~`T2D_TMW.UNITINFO[destGUID].HEALTHGONE~`+~`dmg~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`else~`T2D_TMW.UNITINFO[destGUID].HEALTHGONE~`=~`dmg~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`(eventtype~`==~`"SWING_DAMAGE")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("SWING_DAMAGE"~`..~`spellid~`)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(spellid)~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"SPELL_DAMAGE")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--~`print("SPELL_DAMAGE"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"RANGE_DAMAGE")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("RANGE_DAMAGE"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"SPELL_PERIODIC_DAMAGE")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("SPELL_PERIODIC_DAMAGE"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"SPELL_BUILDING_DAMAGE")~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("SPELL_BUILDING_DAMAGE"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"DAMAGE_SHIELD")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("DAMAGE_SHIELD"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`elseif~`(eventtype~`==~`"ENVIRONMENTAL_DAMAGE")~`then~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UPDATE(damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print("ENVIRONMENTAL_DAMAGE"~`..~`damage)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`CurrentTime~`-~`T2D_TMW_UPDATEPRE~`>=~`0.1~`then~`--更新间隔默认0.1s一次~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW_UPDATEPRE~`=~`CurrentTime~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`UnitExists("target")~`then~`--当目标存在~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`~`(T2D_TMW.UNITINFO[UnitGUID("target")]~`and~`(UnitCanAttack("player","target")~`)~`)then~`--当且仅当目标数据已初始化切目标可攻击~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print(T2D_TMW.UNITINFO[UnitGUID("target")])~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[UnitGUID("target")].TIMEGONE~`=~`CurrentTime~`-~`T2D_TMW.UNITINFO[UnitGUID("target")].TIMESTART~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[UnitGUID("target")].DPS~`=~`T2D_TMW.UNITINFO[UnitGUID("target")].HEALTHGONE/T2D_TMW.UNITINFO[UnitGUID("target")].TIMEGONE~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[UnitGUID("target")].HEALTHMAX~`=~`UnitHealthMax("target")~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[UnitGUID("target")].HEALTH~`=~`UnitHealth("target")~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.UNITINFO[UnitGUID("target")].T2D_TMW~`=~`T2D_TMW.UNITINFO[UnitGUID("target")].HEALTH/T2D_TMW.UNITINFO[UnitGUID("target")].DPS--死亡时间~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`if~`T2D_TMW.UNITINFO[UnitGUID("target")].T2D_TMW~`>=~`60~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.STRING~`=~`string.format("倒计时:~`%.1fM~`",~`~`T2D_TMW.UNITINFO[UnitGUID("target")].T2D_TMW/60,T2D_TMW.UNITINFO[UnitGUID("target")].HEALTHGONE/10000)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMWSTRING~`=~`T2D_TMW.STRING~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print(T2D_TMWSTRING)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`else~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMW.STRING~`=~`string.format("倒计时:~`%.1fS",T2D_TMW.UNITINFO[UnitGUID("target")].T2D_TMW,T2D_TMW.UNITINFO[UnitGUID("target")].HEALTHGONE/10000)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`T2D_TMWSTRING~`=~`T2D_TMW.STRING~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print(T2D_TMWSTRING)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`--&uarr;TOF事件函数~`~`~`~`~J ~`~`~`~`~`~`~`~`TOF:SetScript("OnEvent",~`TOF.OnEvent)~`~`~`~`~`~`~`~`~J ~`~`~`~`end~J ~`~`~`~`~J end~J TF:SetScript("OnEvent",~`TF.OnEvent)~J ~J ~J local~`DogTag~`=~`LibStub("LibDogTag-3.0",~`true)~J ~J local~`L~`=~`DogTag.L~J ~J DogTag:AddTag("TMW",~`"TimeToDie",~`{~J ~`~`~`~`~`~`~`~`code~`=~`function(unitid)~J ~`~`~`~`~`~`~`~`~`~`~`~`if~`T2D_TMWSTRING~`then~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`--print(T2D_TMWSTRING)~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`return~`T2D_TMWSTRING~J ~`~`~`~`~`~`~`~`~`~`~`~`else~J ~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`~`return~`"T2D_TMW未生效"~J ~`~`~`~`~`~`~`~`~`~`~`~`end~J ~`~`~`~`~`~`~`~`end,~J ~`~`~`~`~`~`~`~`arg~`=~`{~J ~`~`~`~`~`~`~`~`~`~`~`~`'unitid',~`'string',~`'target',~J ~`~`~`~`~`~`~`~`},~J ~`~`~`~`~`~`~`~`ret~`=~`"string",~`~`~`~`~J ~`~`~`~`~`~`~`~`--static=~`true~`,~J ~`~`~`~`~`~`~`~`events~`=~`"Update"~`,~J ~`~`~`~`~`~`~`~`doc~`=~`L["显示指定目标当前血量及预计死亡时间"],~J ~`~`~`~`~`~`~`~`example~`=~`'[TimeToDie("target")]~`=>~`"倒计时:XXM"',~`~`~`~`~J ~`~`~`~`~`~`~`~`--category~`=~`L["无"]~J }) ^t^Sn^N1 ^t^SGroups^T ^N1^T ^SPoint^T ^Sy^F-6206521947979776 ^f-46^Sx ^F8577109819654144^f-46 ^t^STextureName^SElvUI~`Norm ^SEnabledSpecs^T ^N257^b ^N256^b ^t^SGUID^STMW:group:1KtOP3mhSE=z ^SColumns^N2 ^SIcons^T ^N1^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SUnit^Starget ^SType^Sbuff ^SName^S暗言术:痛 ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SPassingCndt^B ^SType^SAnimations ^SCndtJustPassed^B ^SDuration^N1.5 ^SValue^N4 ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SPassThrough^b ^SInfinite^B ^SOperator^S<= ^SOnConditionConditions^T ^N1^T ^SType^SDEBUFFPERC ^SChecked^B ^SOperator^S<= ^SUnit^Starget ^SLevel^N33 ^SName^S589 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^t^N2^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SUnit^Starget ^SType^Sbuff ^SName^S吸血鬼之触 ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SPassingCndt^B ^SType^SAnimations ^SCndtJustPassed^B ^SDuration^N1.5 ^SValue^N5 ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SPassThrough^b ^SInfinite^B ^SOperator^S<= ^SOnConditionConditions^T ^N1^T ^SType^SDEBUFFPERC ^SChecked^B ^SOperator^S<= ^SUnit^Starget ^SLevel^N33 ^SName^S吸血鬼之触 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N12^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^Sskill~`cooldown ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N1.2 ^SSpacingY^N3 ^t^t^t^N2^T ^SPoint^T ^Sy^F7402713454052591 ^f-46^Sx ^F-5521413237056618^f-47 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^SScale^F6867476075773945 ^f-52^SRows ^N7^SLevel ^N8^SGUID ^STMW:group:1NrkZP9vvO8S^SColumns ^N8^SIcons ^T^N1^T ^SShowTimer^B ^SType^Sreactive ^SName^S228260 ^SGUID^STMW:icon:1NrkZP9ynvy9 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^STALENTLEARNED ^SLevel^N1 ^SName^S21637 ^t^N2^T ^SType^SINSANITY ^SLevel^N100 ^t^Sn^N2 ^t^t^N2^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S21637 ^t^N2^T ^SType^SINSANITY ^SOperator^S>= ^SLevel^N65 ^t^Sn^N2 ^t^t^Sn^N2 ^t^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1N=4wru48XDm ^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S228260 ^SGUID^STMW:icon:1NrkZPA1SGfo ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SBUFFDUR ^SChecked^B ^SOperator^S> ^SName^S194249 ^t^Sn^N1 ^t^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1N=4wru48XDm ^STexts^T ^N2^S[Stacks:Hide(0)] ^t^t^t^SCustomTex^S228266 ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SLocation^S综合 ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^t^N3^T ^SShowTimer^B ^SType^Scooldown ^SName^S47585 ^SGUID^STMW:icon:1NtzCbl8e2o3 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N4^T ^SShowTimer^B ^SType^Sbuff ^SName^S47585 ^SGUID^STMW:icon:1NtzCblDBnYE ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SOnlyMine^B ^t^N5^T ^SShowTimer^B ^SBuffOrDebuff^SEITHER ^SOnlyMine^B ^SType^Sbuff ^SName^S193223 ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^STimerOperation^Srestart ^SType^STimer ^SCounter^Svoidform ^SEvent^SOnCondition ^SLocation^S综合 ^SOnConditionConditions^T ^N1^T ^SType^SREACTIVE ^SChecked^B ^SOperator^S> ^SName^S205065 ^t^Sn^N1 ^t^t^N2^T ^STimerOperation^Spause ^SType^STimer ^SCounter^Svoidform ^SEvent^SOnCondition ^SLocation^S综合 ^SOnConditionConditions^T ^N1^T ^SType^SREACTIVE ^SChecked^B ^SOperator^S< ^SLevel^N1 ^SName^S205065 ^t^Sn^N1 ^t^t^N3^T ^SType^SAnnouncements ^SChannel^SFRAME ^SLocation^SPM ^SShowIconTex^b ^SText^S本次虚空形态持续["%.2f":Format(Timer("VoidForm"))]秒 ^SEvent^SOnCondition ^STextDuration^N10 ^SOnConditionConditions^T ^N1^T ^SType^SREACTIVE ^SChecked^B ^SOperator^S< ^SLevel^N1 ^SName^S205065 ^t^Sn^N1 ^t^t^N4^T ^SType^SAnnouncements ^SChannel^SSMART ^SText^S我已疯入膏肓 ^SEvent^SOnShow ^SOnConditionConditions^T ^N1^T ^SType^SDEBUFFDUR ^SChecked^B ^SOperator^S> ^SName^S193223 ^t^Sn^N1 ^t^t^Sn^N4 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N6^T ^SShowTimer^B ^SType^Sbuff ^SHideIfNoUnits^B ^SName^S194249 ^SGUID^STMW:icon:1Nu0TvZnTN4u ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1N=4pGicg7XG ^t^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SOnlyMine^B ^t^N7^T ^SType^Sconditionicon ^SGUID^STMW:icon:1OWRG5Z1k3R1 ^SEnabled^B ^SCustomTex^S238558 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S21719 ^t^Sn^N1 ^t^t^N8^T ^SShowTimer^B ^SType^Sbuff ^SConditions^T ^Sn^N1 ^t^SShowTimerText^B ^SGUID^STMW:icon:1NubS8ItvF7S ^SName^S10060 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N9^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S21718 ^t^N2^T ^SType^STALENTLEARNED ^SAndOr^SOR ^SName^S19765 ^t^Sn^N2 ^t^SName^S10060 ^SGUID^STMW:icon:1NubS8Iwz9zZ ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SICONSHAKE ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SOperator^S<= ^SName^S10060 ^t^N2^T ^SType^SBUFFSTACKS ^SChecked^B ^SOperator^S>= ^SLevel^N85 ^SName^S194249 ^t^Sn^N2 ^t^SMagnitude^N2 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N10^T ^SShowTimer^B ^SType^Scooldown ^SName^S205385 ^SGUID^STMW:icon:1Nz_o1Wvtew1 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S暗影冲撞 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N11^T ^SShowTimer^B ^SType^Sbuff ^SName^S214121 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N12^T ^SShowTimer^B ^SType^Sreactive ^SName^S32379 ^SGUID^STMW:icon:1Nz=kug7iUbD ^SShowTimerTextnoOCC^B ^SEnabled^B ^SCooldownCheck^B ^SSettingsPerView^T ^Sicon^T ^STextLayout^Sicon1 ^STexts^T ^N2^S[Stacks:Hide(0)] ^t^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SHEALTH ^SOperator^S<= ^SUnit^Starget ^SLevel^N35 ^SPrtsBefore^N1 ^t^N2^T ^SType^STALENTLEARNED ^SPrtsAfter^N1 ^SName^S夺魂之镰 ^t^N3^T ^SType^STALENTLEARNED ^SLevel^N1 ^SName^S夺魂之镰 ^SPrtsBefore^N1 ^SAndOr^SOR ^t^N4^T ^SType^SHEALTH ^SPrtsAfter^N1 ^SOperator^S<= ^SUnit^Starget ^SLevel^N20 ^t^Sn^N4 ^t^t^Sn^N1 ^t^SUseActvtnOverlay^B ^t^N13^T ^SShowTimer^B ^SType^Sreactive ^SConditions^T ^N1^T ^SType^SEXISTS ^SUnit^Sfocus ^SPrtsBefore^N1 ^t^N2^T ^SType^SHEALTH ^SOperator^S<= ^SUnit^Sfocus ^SLevel^N35 ^t^N3^T ^SType^SHEALTH ^SOperator^S> ^SUnit^Starget ^SLevel^N35 ^t^N4^T ^SType^STALENTLEARNED ^SPrtsAfter^N1 ^SName^S夺魂之镰 ^t^N5^T ^SType^STALENTLEARNED ^SLevel^N1 ^SName^S夺魂之镰 ^SPrtsBefore^N1 ^SAndOr^SOR ^t^N6^T ^SType^SEXISTS ^SUnit^Sfocus ^t^N7^T ^SType^SHEALTH ^SOperator^S>= ^SUnit^Starget ^SLevel^N20 ^t^N8^T ^SType^SHEALTH ^SPrtsAfter^N1 ^SOperator^S< ^SUnit^Sfocus ^SLevel^N20 ^t^Sn^N8 ^t^SName^S32379 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SHEALTH ^SOperator^S<= ^SUnit^Sfocus ^SLevel^N35 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SGUID^STMW:icon:1Nz=o1M160hr ^SSettingsPerView^T ^Sicon^T ^STextLayout^Sicon1 ^STexts^T ^N1^S焦 ^t^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SUseActvtnOverlay^B ^t^N14^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S19763 ^t^N2^T ^SType^STALENTLEARNED ^SName^S光晕 ^t^Sn^N2 ^t^SName^S120517 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SGUID^STMW:icon:1OVlk8dn2NCK ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N15^T ^SShowTimer^B ^SType^Scooldown ^SName^S110744 ^SGUID^STMW:icon:1OVlk8dogrxB ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S19760 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N16^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^N1^T ^SType^SBUFFSTACKS ^SChecked^B ^SOperator^S>= ^SLevel^N14 ^SName^S诸罪加身 ^t^Sn^N1 ^t^SName^S福音 ^SGUID^STMW:icon:1OVlk8dq7GkB ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFSTACKS ^SChecked^B ^SOperator^S> ^SLevel^N10 ^SName^S198076 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N1 ^t^t^SFakeHidden^B ^t^N17^T ^SShowTimer^B ^SType^Sbuff ^SName^S47536 ^SGUID^STMW:icon:1OG5=bsTnJj7 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SOnlyShown^B ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S> ^SName^S47536 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N18^T ^SShowTimer^B ^SType^Scooldown ^SName^S47536 ^SGUID^STMW:icon:1OG5=bsYBpxo ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N19^T ^SShowTimer^B ^SType^Scooldown ^SName^S232633 ^SGUID^STMW:icon:1OSt6dTiOK8z ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SINSTANCE2 ^SBitFlags^N245760 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N1 ^t^t^SFakeHidden^B ^t^N20^T ^SShowTimer^B ^SType^Scooldown ^SName^S205369 ^SGUID^STMW:icon:1OSt6dTnSu4W ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SINSTANCE2 ^SBitFlags^N12583961 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N21^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S197937 ^SGUID^STMW:icon:1Nu0TvZrm4yQ ^SEnabled^B ^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1N=4pGicg7XG ^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N22^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S197937 ^SGUID^STMW:icon:1OToJ6VP0e7P ^SEnabled^B ^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1N=4pGicg7XG ^t^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N23^T ^SType^Sbuff ^SConditions^T ^N1^T ^SType^SUNITSPEC ^SBitFlags^T ^N256^B ^t^t^Sn^N1 ^t^SName^S诸罪加身 ^SGUID^STMW:icon:1OVAHetFc3Mh ^SEnabled^B ^SSettingsPerView^T ^Sicon^T ^STexts^T ^N2^S[Stacks] ^t^t^t^SManaCheck^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N24^T ^SShowTimer^B ^SType^Sbuff ^SName^S198069 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.3 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N25^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S229206 ^SGUID^STMW:icon:1O6S=CABU_xn ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N26^T ^SShowTimer^B ^SType^Sbuff ^SName^S123254 ^SGUID^STMW:icon:1N=2lwBm0gE3 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N27^T ^SShowTimer^B ^SType^Sbuff ^SName^S188027 ^SGUID^STMW:icon:1N=4Hl1tpVA5 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N28^T ^SShowTimer^B ^SType^Sbuff ^SName^S80353;~`2825;~`178207;~`230935 ^SGUID^STMW:icon:1N=2lwBoxHUG ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N29^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1N=2lwBj6Ad7 ^SName^S207724 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^SAlpha^N0.3 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SOnlyMine^B ^t^N30^T ^SShowTimer^B ^SType^Sbuff ^SName^S吸血鬼的拥抱 ^SGUID^STMW:icon:1O8nV42AEzF_ ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N31^T ^SShowTimer^B ^SType^Scooldown ^SName^S15286 ^SGUID^STMW:icon:1PTvTpOvCDPC ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N32^T ^SShowTimer^B ^SType^Scooldown ^SName^S34433 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N33^T ^SShowTimer^B ^SType^Stotem ^SGUID^STMW:icon:1O8nV42C3Gsv ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N34^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1PVQ1v8j23h7 ^SName^S235966 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N35^T ^SShowTimer^B ^SType^Sitem ^SName^S144258 ^SGUID^STMW:icon:1PVP_FCxMQb= ^SShowTimerTextnoOCC^B ^SShowTimerText^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N36^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVQ1v8j23h7 ^N2^STMW:icon:1PVP_FCxMQb= ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N37^T ^SShowTimer^B ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PSF8vSvSlaN ^N2^STMW:icon:1PT3=IhWtUyj ^t^SName^S治疗之环 ^SGUID^STMW:icon:1PVR0a4fMufK ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SManaCheck^B ^t^N38^T ^SUnit^Sgroup~`1-40 ^SType^Sbuff ^SName^S愈合祷言 ^SStackMax^N1 ^SOnlyMine^B ^SSettingsPerView^T ^Sicon^T ^STexts^T ^N1^S[RaidStacks("\230\132\136\229\144\136\231\165\183\232\168€")] ^t^t^t^SCustomTex^S193157 ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^N101^T ^SAlpha^N1 ^t^t^SGUID^STMW:icon:1PVR0a4g=t_3 ^SFakeHidden^B ^SEnabled^B ^t^N39^T ^SType^Sbuff ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N40^T ^SType^Sconditionicon ^SGUID^STMW:icon:1PVWS95igQGL ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S恩赐 ^t^Sn^N1 ^t^SCustomTex^S200309 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N41^T ^SShowTimer^B ^SType^Scooldown ^SName^S神圣之星 ^SGUID^STMW:icon:1PVXo3ihajFz ^SShowTimerTextnoOCC^B ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S神圣之星 ^t^Sn^N1 ^t^SManaCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N42^T ^SShowTimer^B ^SType^Scooldown ^SName^S圣言术:罚 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SGUID^STMW:icon:1PVXo3inAAcM ^t^N43^T ^SType^Sconditionicon ^SGUID^STMW:icon:1PVXo3isI2MU ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S祈福 ^t^Sn^N1 ^t^SCustomTex^S193157 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N44^T ^SShowTimer^B ^SType^Scooldown ^SName^S214121 ^SGUID^STMW:icon:1PVXo3ixPjmp ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N1 ^t^t^SFakeHidden^B ^SEnabled^B ^t^N45^T ^SShowTimer^B ^SType^Sbuff ^SName^S214121 ^SGUID^STMW:icon:1PVXo3j0OqEv ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S> ^SName^S214121 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^SFakeHidden^B ^SEnabled^B ^t^N46^T ^SType^Smeta ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S提神愈心 ^t^Sn^N1 ^t^SIcons^T ^N1^STMW:icon:1PVXo3j0OqEv ^N2^STMW:icon:1PVXo3ixPjmp ^t^SGUID^STMW:icon:1PVXo3j5oKkt ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N47^T ^SShowTimer^B ^SType^Scooldown ^SName^S天堂之羽 ^SGUID^STMW:icon:1PVXo3jB5gUI ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N48^T ^SShowTimer^B ^SType^Sbuff ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S谴罚 ^t^Sn^N1 ^t^SName^S139 ^SGUID^STMW:icon:1PVXo3jGT9Tf ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S<= ^SName^S139 ^t^Sn^N1 ^t^t^N2^T ^SType^SAnimations ^SAlpha^N0.1 ^SAnimation^SICONALPHAFLASH ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S<= ^SName^S恢复 ^t^Sn^N1 ^t^t^Sn^N2 ^t^SCustomTex^S235189 ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N1 ^t^t^SOnlyMine^B ^SFakeHidden^B ^SEnabled^B ^t^N49^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N50^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N51^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N52^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N53^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N54^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N55^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N56^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^S整合 ^t^N3^T ^SScale^N0.8 ^SRows^N3 ^SControlled^B ^SEnabledSpecs^T ^N257^b ^N256^b ^t^SOnlyInCombat^B ^SGUID^STMW:group:1NrkfyA2jvaw ^SColumns^N2 ^SName^Sbuff ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^t^t^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1OToJ6VP0e7P ^N2^STMW:icon:1NubS8ItvF7S ^N3^STMW:icon:1N=2lwBm0gE3 ^N4^STMW:icon:1N=4Hl1tpVA5 ^N5^STMW:icon:1O6S=CABU_xn ^N6^STMW:icon:1N=2lwBoxHUG ^N7^STMW:icon:1N=2lwBj6Ad7 ^N8^STMW:icon:1O8nV42AEzF_ ^N9^STMW:icon:1O8nV42C3Gsv ^N10^STMW:icon:1NtzCblDBnYE ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N13^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N15^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SPoint^T ^Sy^N-212 ^Sx^N-351 ^t^t^N4^T ^SGUID^STMW:group:1Nt=Can6iRUL ^SScale^N1.2 ^SPoint^T ^Sy^N-137 ^Sx^N-86.5 ^t^SEnabledSpecs^T ^N258^b ^N256^b ^t^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S47788 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S绝望祷言 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N3^T ^SShowTimer^B ^SType^Scooldown ^SName^S神圣赞美诗 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N4^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1OVlk8dn2NCK ^N2^STMW:icon:1PVXo3ihajFz ^N3^STMW:icon:1PVXo3inAAcM ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N12^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^SCD ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3.1 ^t^t^t^N5^T ^SBackdropColor^Sb4070707 ^SScale^F6194635089117178 ^f-52^SView ^Sbar^SEnabledSpecs ^T^N256^b ^N257^b ^t^SGUID^STMW:group:1Nz=lXVnqUkP ^SColumns^N1 ^SBackdropColor_Enable^B ^SName^S狂乱条 ^SSettingsPerView^T ^Sbar^T ^SSpacingY^N-6 ^SBorderBar^N1.7 ^SSizeX^N235.57080078125 ^SIcon^b ^t^t^SIcons^T ^N1^T ^SType^Svalue ^SBackdropColor^Sdd16111e ^SBackdropColor_Enable^B ^SSettingsPerView^T ^Sbar^T ^STextLayout^STMW:textlayout:1Nz_IMkQvqvN ^STexts^T ^N1^S[Haste:Round(1):Percent] ^N2^S[(Value~`/~`ValueMax~`*~`100):Round(0)] ^N3^S[TimeToDie] ^t^t^t^SCustomTex^Snone ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SPoint^T ^Sy^F-6964067900659264 ^f-45^Spoint ^STOPRIGHT^SrelativePoint ^STOPRIGHT^Sx ^F-8591246398285902^f-45 ^t^t^N6^T ^SGUID^STMW:group:1Nz_sWRktqdw ^SColumns^N1 ^SIcons^T ^N1^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SType^Sbuff ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SCustomTex^S月灼 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^SName^S203095;~`215143;~`215443;~`198006;~`206653;~`209032;~`206308;~`208929;~`210099;~`228811;~`228819;~`228794 ^t^t^SName^SBossDebuff ^t^N7^T ^SStrata^SLOW ^SScale^N2.2 ^SPoint^T ^Sy^N-78.5 ^Sx^N-100 ^t^SEnabledSpecs^T ^N257^b ^N256^b ^t^SGUID^STMW:group:1N=4hWwsw9bE ^SColumns^N1 ^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1Nu0TvZnTN4u ^N2^STMW:icon:1Nu0TvZrm4yQ ^t^SGUID^STMW:icon:1N=2lwBg9mrI ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^S贤者 ^t^N8^T ^SGUID^STMW:group:1N_CoWKq4V4g ^SScale^N0.29997992515564 ^SBackdropColor^S00333333 ^SEnabledSpecs^T ^N257^b ^N256^b ^t^SOnlyInCombat^B ^SEnabled^b ^SView^Sbar ^SColumns^N1 ^SBackdropColor_Enable^B ^SName^SGCD ^SSettingsPerView^T ^Sbar^T ^SSizeX^F8679395539550212 ^f-43^SIcon ^b^t ^t^SIcons^T ^N1^T ^SType^Scooldown ^SBarDisplay_BarGCD^B ^STimerBar_StartColor^Sffffffff ^SName^S2006 ^STimerBar_CompleteColor^Sffffffff ^SClockGCD^B ^STimerBar_EnableColors^B ^SEnabled^B ^SSettingsPerView^T ^Sbar^T ^STexts^T ^N1^S ^N2^S ^t^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^STimerBar_MiddleColor^Sffffffff ^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SPoint^T ^Sy^N-880 ^Sx^N66 ^t^t^N9^T ^SScale^F8556801603665904 ^f-52^SPoint ^T^Sy^N88.684467985792 ^Sx^F6481346527931156 ^f-46^t ^SEnabledSpecs^T ^N256^b ^N258^b ^t^SEnabled^b ^SGUID^STMW:group:1O8CpNZAbSa_ ^SName^S神牧CD ^SIcons^T ^N1^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SOnlyInCombat^B ^t^N10^T ^SScale^N1 ^SPoint^T ^Sy^N-128 ^Sx^N157.5 ^t^SEnabledSpecs^T ^N258^b ^t^SGUID^STMW:group:1O8Cw9ASNlpC ^SColumns^N8 ^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1O8ChXDCsxiF ^N2^STMW:icon:1O8ChXDIQldA ^N3^STMW:icon:1PPUgJJpv5IS ^N4^STMW:icon:1PPUgH9KEECW ^N5^STMW:icon:1PPUgEGAchMj ^N6^STMW:icon:1O6S=CABU_xn ^N7^STMW:icon:1PSF8vSvSlaN ^N8^STMW:icon:1PT3_uZjdB0D ^N9^STMW:icon:1PVS09fI5_Me ^N10^STMW:icon:1PVSD5GVIg04 ^N11^STMW:icon:1PVSD5GZMndd ^N12^STMW:icon:1PVSD5GdVjdf ^N13^STMW:icon:1PVSD5Gi9ERj ^N14^STMW:icon:1PVWSAJBqT2L ^N15^STMW:icon:1PVWSAJE9fDr ^N16^STMW:icon:1PVWSAJGErTT ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SShowTimer^B ^SType^Scooldown ^SName^S208065 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SShowTimer^B ^SType^Scooldown ^SName^S47788 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SShowTimer^B ^SType^Scooldown ^SShowTimerText^B ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SName^S绝望祷言 ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N12^T ^SShowTimer^B ^SType^Scooldown ^SShowTimerText^B ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SName^S神圣赞美诗 ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N13^T ^SType^Scooldown ^SName^S纯净术 ^SManaCheck^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^t^SName^S神牧BUFF ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^SSpacingY^N3 ^t^t^SControlled^B ^t^N11^T ^SPoint^T ^Sy^F5946991115274595 ^f-47^Sx ^F6985083565898854^f-51 ^t^SScale^F4617367942332434 ^f-52^SEnabledSpecs ^T^N257^b ^N256^b ^t^SGUID^STMW:group:1O8oeogClHGJ ^SColumns^N1 ^SIcons^T ^N1^T ^SType^Sitem ^SName^S142117 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SCOMBAT ^SLevel^N1 ^SPrtsBefore^N1 ^t^N2^T ^SType^SINSTANCE2 ^SPrtsAfter^N1 ^SBitFlags^N4195328 ^t^N3^T ^SType^SBUFFSTACKS ^SChecked^B ^SOperator^S>= ^SAndOr^SOR ^SName^S194249 ^SLevel^N60 ^t^Sn^N3 ^t^SStates^T ^N1^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^S战前 ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N8 ^SSpacingY^N3 ^t^t^t^N12^T ^SScale^N1.2 ^SRole^N2 ^SPoint^T ^Sy^N-137 ^Sx^N-86.5 ^t^SLocked^B ^SEnabledSpecs^T ^N257^b ^N258^b ^t^SGUID^STMW:group:1OG5tRsIfwtS ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S207946 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SICONFLASH ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S> ^SName^S223166 ^t^Sn^N1 ^t^SPeriod^N1.2 ^t^N2^T ^SType^SSound ^SSound^SWarning ^SEvent^SOnCondition ^t^Sn^N2 ^t^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S暗影魔;~`摧心魔 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N3^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1OG5=bsTnJj7 ^N2^STMW:icon:1OG5=bsYBpxo ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVQ1v8j23h7 ^N2^STMW:icon:1OVlk8dq7GkB ^N3^STMW:icon:1OVlk8dn2NCK ^N4^STMW:icon:1OVlk8dogrxB ^N5^STMW:icon:1PVWS95igQGL ^t^SEnabled^B ^SConditions^T ^N1^T ^SType^SUNITSPEC ^SBitFlags^T ^N256^B ^t^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^SJLM ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^SSpacingY^N3 ^t^t^t^N13^T ^SStrata^SHIGH ^SPoint^T ^Sy^F-4658025859908811 ^f-45^Sx ^F4564087803920388^f-44 ^t^SScale^F6905597131751423 ^f-53^SEnabledSpecs ^T^N257^b ^N256^b ^t^SGUID^STMW:group:1OSr2m4VDMzk ^SColumns^N2 ^SName^S焦点 ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N23.1 ^t^t^SIcons^T ^N1^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SUnit^Sfocus ^SType^Sbuff ^SName^S暗言术:痛 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SUNITISUNIT ^SUnit^Starget ^SLevel^N1 ^SName^Sfocus ^t^Sn^N1 ^t^SHideIfNoUnits^B ^SSettingsPerView^T ^Sicon^T ^STexts^T ^N1^S ^t^t^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^SEvents^T ^N1^T ^SPassingCndt^B ^SType^SAnimations ^SCndtJustPassed^B ^SDuration^N1.5 ^SValue^N4 ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SPassThrough^b ^SInfinite^B ^SOperator^S<= ^SOnConditionConditions^T ^N1^T ^SType^SDEBUFFPERC ^SChecked^B ^SOperator^S<= ^SUnit^Sfocus ^SLevel^N33 ^SName^S589 ^t^Sn^N1 ^t^t^Sn^N1 ^t^t^N2^T ^SShowTimer^B ^SBuffOrDebuff^SHARMFUL ^SUnit^Sfocus ^SType^Sbuff ^SName^S吸血鬼之触 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SUNITISUNIT ^SUnit^Starget ^SLevel^N1 ^SName^Sfocus ^t^Sn^N1 ^t^SHideIfNoUnits^B ^SSettingsPerView^T ^Sicon^T ^STexts^T ^N1^S ^t^t^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^SEvents^T ^N1^T ^SPassingCndt^B ^SType^SAnimations ^SCndtJustPassed^B ^SDuration^N1.5 ^SValue^N5 ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SPassThrough^b ^SInfinite^B ^SOperator^S<= ^SOnConditionConditions^T ^N1^T ^SType^SDEBUFFPERC ^SChecked^B ^SOperator^S<= ^SUnit^Sfocus ^SLevel^N33 ^SName^S吸血鬼之触 ^t^Sn^N1 ^t^t^Sn^N1 ^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SOnlyInCombat^B ^t^N14^T ^SPoint^T ^Sy^N-88 ^Sx^N-122 ^t^SLocked^B ^SEnabledSpecs^T ^N257^b ^N258^b ^t^SGUID^STMW:group:1OUDRU0pCFWW ^SColumns^N2 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S47540 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SInvertTimer^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SName^S47540 ^t^Sn^N1 ^t^t^N2^T ^SType^SAnimations ^SAlpha^N0.05 ^SAnimation^SICONALPHAFLASH ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SChecked^B ^SOperator^S> ^SName^S246519 ^t^Sn^N1 ^t^t^Sn^N2 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SRangeCheck^B ^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S17 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SInvertTimer^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SName^S17 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SRangeCheck^B ^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^S卡CD ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N1.2 ^t^t^t^N15^T ^SBackdropColor^Sff102939 ^SScale^F5023420056076297 ^f-52^SView ^Sbar^SEnabledSpecs ^T^N258^b ^t^SGUID^STMW:group:1OV7vXGsAhos ^SColumns^N1 ^SBackdropColor_Enable^B ^SName^S蓝 ^SSettingsPerView^T ^Sbar^T ^SBorderBar^N0.9 ^SSizeX^F5766847219630084 ^f-44^SIcon ^b^t ^t^SIcons^T ^N1^T ^SType^Svalue ^STimerBar_StartColor^Sffbfc2c3 ^STimerBar_EnableColors^B ^SSettingsPerView^T ^Sbar^T ^STextLayout^STMW:textlayout:1OVAtjeOegwH ^STexts^T ^N1^S[Stacks(icon="TMW:icon:1OVAHetFc3Mh")] ^N2^S ^t^t^t^SCustomTex^SEl ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^STimerBar_MiddleColor^S84ffffff ^STimerBar_CompleteColor^Sff2a5f80 ^SFakeHidden^B ^SEnabled^B ^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SPoint^T ^Sy^F6494475183000883 ^f-45^Sx ^N371.61774238053^t ^t^N16^T ^SPoint^T ^Sy^F7669672894711365 ^f-46^Sx ^F7189782113608104^f-44 ^t^SScale^N0.95 ^SEnabledSpecs^T ^N257^b ^N258^b ^t^SGUID^STMW:group:1OVA_dn5VCNS ^SColumns^N5 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Sdotwatch ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SName^S589;~`净化邪恶 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N12^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N13^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SName^SJLM痛 ^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^SSpacingY^N3 ^t^t^SControlled^B ^t^N17^T ^SGUID^STMW:group:1PPUc1S9qpCJ ^SPoint^T ^Sy^N-88 ^Sx^F-8587407003746313 ^f-46^t ^SEnabledSpecs^T ^N258^b ^N256^b ^t^SColumns^N2 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S2050 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SName^S圣言术:静 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S34861 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SName^S圣言术:灵 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N12^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N13^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N14^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N15^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N16^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N17^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N18^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N19^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N20^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N21^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N22^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N23^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N24^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N25^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N27^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N29^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N31^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N33^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N35^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N37^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N39^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N41^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N43^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N45^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N47^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N49^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingX^N1.2 ^t^t^t^N18^T ^SGUID^STMW:group:1PPUe=Swt6FE ^SPoint^T ^Sy^F-6192446266408959 ^f-46^Sx ^F8584995379609635^f-46 ^t^SEnabledSpecs^T ^N258^b ^N256^b ^t^SColumns^N2 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S33076 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SSPELLCD ^SName^S愈合祷言 ^t^Sn^N1 ^t^t^Sn^N1 ^t^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S208065 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SShowCBar^B ^STimerBar_EnableColors^B ^SEnabled^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SRangeCheck^B ^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^t^N19^T ^SGUID^STMW:group:1PPUtYcVEmiK ^SScale^N0.8 ^SRows^N2 ^SEnabledSpecs^T ^N258^b ^N256^b ^t^SEnabled^b ^SAlpha^N0.99 ^SColumns^N1 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SShowTimerText^B ^SManaCheck^B ^SName^S天堂之羽 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^SAlpha^N0.7 ^t^N2^T ^SAlpha^N0.4 ^t^N3^T ^SAlpha^N0.4 ^t^N4^T ^SAlpha^N0.4 ^t^t^t^N2^T ^SType^Scooldown ^SName^S纯净术 ^SManaCheck^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingY^N3 ^t^t^SPoint^T ^Sy^F-4996179494436869 ^f-44^Sx ^F-5095271637712898^f-43 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^t^N20^T ^SPoint^T ^Sy^F4594550442965927 ^f-47^Sx ^F5518940163030944^f-44 ^t^SScale^F4982165284585484 ^f-52^SRows ^N2^SEnabledSpecs ^T^N258^b ^t^SGUID^STMW:group:1PPV1a3QmaMa ^SColumns^N13 ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1O8ChXDCsxiF ^SShowTimerTextnoOCC^B ^SName^S图雷的祝福 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N2^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1O8ChXDIQldA ^SShowTimerTextnoOCC^B ^SName^S圣洁 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N3^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1PPUgJJpv5IS ^SShowTimerTextnoOCC^B ^SName^S纳鲁之能 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N4^T ^SShowTimer^B ^SType^Sbuff ^SName^S235966 ^SGUID^STMW:icon:1PPUgEGAchMj ^SShowTimerTextnoOCC^B ^SShowTimerText^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N5^T ^SShowTimer^B ^SType^Sbuff ^SName^S80353;~`2825;~`178207;~`230935 ^SGUID^STMW:icon:1PPUgH9KEECW ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N6^T ^SShowTimer^B ^SType^Sbuff ^SName^S229206 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SOnlyMine^B ^t^N7^T ^SShowTimer^B ^SType^Sbuff ^SGUID^STMW:icon:1PSF8vSvSlaN ^SName^S神圣化身 ^SShowTimerTextnoOCC^B ^SEvents^T ^N1^T ^SType^SAnimations ^SAnimation^SACTVTNGLOW ^SEvent^SOnShow ^SInfinite^B ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N8^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S治疗之环 ^t^Sn^N1 ^t^SName^S204883 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SGUID^STMW:icon:1PT3=IThC6SZ ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SRangeCheck^B ^SFakeHidden^B ^t^N9^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^N1^T ^SType^STALENTLEARNED ^SName^S神圣化身 ^t^Sn^N1 ^t^SName^S200183 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SGUID^STMW:icon:1PT3=IhWtUyj ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N10^T ^SShowTimer^B ^SType^Sbuff ^SShowTimerText^B ^SGUID^STMW:icon:1PT3_uZjdB0D ^SShowTimerTextnoOCC^B ^SName^S139 ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N11^T ^SShowTimer^B ^SType^Scooldown ^SConditions^T ^Sn^N1 ^t^SName^S14914 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SGUID^STMW:icon:1PT40zmYVK7x ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SRangeCheck^B ^SFakeHidden^B ^t^N12^T ^SShowTimer^B ^SType^Sitem ^SName^S144258 ^SGUID^STMW:icon:1PTr8P4VKtp4 ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SOnlyInBags^B ^SConditions^T ^N1^T ^SType^SITEMEQUIPPED ^SName^S144258 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N1 ^t^t^SFakeHidden^B ^t^N13^T ^SShowTimer^B ^SType^Sbuff ^SName^S121557 ^SGUID^STMW:icon:1PVS09fI5_Me ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N14^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S争分夺秒 ^SGUID^STMW:icon:1PVSD5GVIg04 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N15^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S阴暗面之力 ^SGUID^STMW:icon:1PVSD5GZMndd ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N16^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S216135 ^SGUID^STMW:icon:1PVSD5GdVjdf ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N17^T ^SShowTimer^B ^SOnlyMine^B ^SType^Sbuff ^SName^S命运多舛 ^SGUID^STMW:icon:1PVSD5Gi9ERj ^SShowTimerTextnoOCC^B ^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^t^N18^T ^SShowTimer^B ^SType^Sbuff ^SName^S痛苦压制 ^SGUID^STMW:icon:1PVWSAJBqT2L ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^SFakeHidden^B ^SEnabled^B ^t^N19^T ^SShowTimer^B ^SType^Sbuff ^SName^S救赎之魂 ^SGUID^STMW:icon:1PVWSAJE9fDr ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SOnlyMine^B ^SFakeHidden^B ^SEnabled^B ^t^N20^T ^SShowTimer^B ^SType^Sbuff ^SName^S激活 ^SGUID^STMW:icon:1PVWSAJGErTT ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SFakeHidden^B ^SEnabled^B ^t^N21^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N22^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N23^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N24^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N25^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N26^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N27^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N40^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3.1 ^t^t^t^N21^T ^SScale^N1.2 ^SRole^N2 ^SPoint^T ^Sy^N-137 ^Sx^N86.5 ^t^SLocked^B ^SEnabledSpecs^T ^N257^b ^N258^b ^t^SGUID^STMW:group:1PVQE7PdJCOd ^SIcons^T ^N1^T ^SShowTimer^B ^SType^Scooldown ^SName^S62618 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N2^T ^SShowTimer^B ^SType^Scooldown ^SName^S痛苦压制 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N3^T ^SShowTimer^B ^SType^Scooldown ^SName^S纯净术 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N4^T ^SShowTimer^B ^SType^Scooldown ^SName^S群体驱散 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N13^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^SSpacingY^N3 ^t^t^t^N22^T ^SGUID^STMW:group:1PVRmt6ApaO9 ^SScale^N1.6 ^SPoint^T ^Sy^N-99 ^Sx^N-1.52587890625e-005 ^t^SLevel^N8 ^SEnabledSpecs^T ^N258^b ^N256^b ^t^SColumns^N1 ^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVQ1v8j23h7 ^N2^STMW:icon:1PVP_FCxMQb= ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^t^N23^T ^SGUID^STMW:group:1PVRpdjmweEJ ^SScale^N1.2 ^SPoint^T ^Sy^N-137 ^Sx^N86.5 ^t^SEnabledSpecs^T ^N258^b ^N256^b ^t^SIcons^T ^N1^T ^SShowTimer^B ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVR0a4fMufK ^N2^STMW:icon:1PT3=IThC6SZ ^N3^STMW:icon:1PVR0a4g=t_3 ^t^SName^S治疗之环 ^SManaCheck^B ^SShowTimerText^B ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVXo3jB5gUI ^N2^STMW:icon:1PVXo3j5oKkt ^N3^STMW:icon:1PVXo3jGT9Tf ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N3^T ^SShowTimer^B ^SType^Scooldown ^SName^S纯净术 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N4^T ^SShowTimer^B ^SType^Scooldown ^SName^S32375 ^SManaCheck^B ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.55 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N5^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N6^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N13^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3.1 ^t^t^t^N24^T ^SGUID^STMW:group:1PVS2bDTsCbn ^SScale^N1.6 ^SPoint^T ^Sy^N-99 ^SrelativePoint^SBOTTOMLEFT ^t^SLevel^N8 ^SEnabledSpecs^T ^N258^b ^t^SColumns^N1 ^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1PVQ1v8j23h7 ^N2^STMW:icon:1PVP_FCxMQb= ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N3^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N4^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^t^N25^T ^SGUID^STMW:group:1PVWUEIKhGkY ^SScale^N1.1 ^STextureName^SElvUI~`Norm ^SEnabledSpecs^T ^N257^b ^N256^b ^t^SPoint^T ^Sy^N-148 ^Sx^N-2 ^t^SColumns^N10 ^SIcons^T ^N1^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1NrkZPA1SGfo ^N2^STMW:icon:1NrkZP9ynvy9 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N2^T ^SShowTimer^B ^SType^Scooldown ^STimerBar_StartColor^Sffffffff ^SName^S8092 ^SShowTimerTextnoOCC^B ^STimerBar_CompleteColor^Sffffffff ^SStackMax^N3 ^STimerBar_EnableColors^B ^SSettingsPerView^T ^Sicon^T ^STextLayout^STMW:textlayout:1OSyRWi_EChY ^STexts^T ^N1^S[Stacks] ^N2^S ^t^t^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N101^T ^SAlpha^N1 ^t^t^STimerBar_MiddleColor^Sffffffff ^SEnabled^B ^SEvents^T ^N1^T ^SType^SAnimations ^SLocation^S综合 ^SAnimation^SACTVTNGLOW ^SEvent^SWCSP ^SOnConditionConditions^T ^N1^T ^SType^SBUFFDUR ^SOperator^S> ^SName^S124430 ^t^Sn^N1 ^t^t^Sn^N1 ^t^t^N3^T ^SShowTimer^B ^SType^Scooldown ^SName^S205065 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SConditions^T ^N1^T ^SType^SBUFFDUR ^SChecked^B ^SOperator^S> ^SName^S194249 ^t^Sn^N1 ^t^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^N102^T ^SAlpha^N0.5 ^t^t^t^N4^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1Nz=o1M160hr ^N2^STMW:icon:1Nz=kug7iUbD ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N5^T ^SShowTimer^B ^SType^Scooldown ^SName^S34433 ^SShowTimerTextnoOCC^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N1 ^t^N3^T ^t^N4^T ^t^t^SEnabled^B ^t^N6^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1NtzCblDBnYE ^N2^STMW:icon:1NtzCbl8e2o3 ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N7^T ^SShowTimer^B ^SType^Scooldown ^SShowTimerText^B ^SManaCheck^B ^SName^S17 ^SShowTimerTextnoOCC^B ^SEnabled^B ^SRangeCheck^B ^SStates^T ^N1^T ^t^N2^T ^SAlpha^N0.5 ^t^N3^T ^t^N4^T ^t^t^t^N8^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1Nz_o1Wvtew1 ^N2^STMW:icon:1OSt6dTnSu4W ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N9^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1O8nV42AEzF_ ^N2^STMW:icon:1PTvTpOvCDPC ^t^SEnabled^B ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N10^T ^SType^Smeta ^SIcons^T ^N1^STMW:icon:1OSt6dTiOK8z ^N2^STMW:icon:1OWRG5Z1k3R1 ^t^SEnabled^B ^SConditions^T ^Sn^N1 ^t^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N11^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N12^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N21^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^N31^T ^SStates^T ^N1^T ^t^N3^T ^t^N4^T ^t^t^t^t^SSettingsPerView^T ^Sicon^T ^SSpacingX^N3 ^SSpacingY^N3 ^t^t^t^t^t^N84002^S~`~| ^Sprofile^S灰与白~`-~`巴瑟拉斯 ^^


相关报道:

[关闭] [返回顶部]


  返回首页 | 最新资讯 | 资源下载 | 魔兽图片 | 单机文档 | 技术攻略 | 玩家视频
备案号:蜀ICP备2024062380号-1
免责声明:本网站为热爱怀旧WOW的玩家们建立的魔兽世界资料网站,仅供交流和学习使用,非盈利和商用.如有侵权之处,请联系我们,我们会在24小时内确认删除侵权内容,谢谢合作。
Copyright © 2024 - 2024 WOWAII.COM Corporation, All Rights Reserved

机器人国度