⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 countdoomspells.lua

📁 时间太紧了
💻 LUA
📖 第 1 页 / 共 2 页
字号:
CountDoomSpellMapping = {};


CountDoomSpell = {};
--[[
spell = "amplify";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_AMPLIFY_CURSE;
CountDoomSpell[ spell ].type = COUNTDOOMSPELL_AMPLIFY_CURSE;
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 30;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 30;
CountDoomSpell[ spell ].countDown = false;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_Contagion";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;
--]]

spell = "放逐术";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_BANISH;
CountDoomSpell[ spell ].type = COUNTDOOMSPELL_BANISH;
CountDoomSpell[ spell ].replacesSameType = false;
CountDoomSpell[ spell ].duration = 30;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 20;
CountDoomSpell[ spell ].rankDuration[2] = 30;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_Cripple";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = true;
CountDoomSpell[ spell ].announceWarning = true;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "痛苦诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFAGONY;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 24;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 24;
CountDoomSpell[ spell ].rankDuration[2] = 24;
CountDoomSpell[ spell ].rankDuration[3] = 24;
CountDoomSpell[ spell ].rankDuration[4] = 24;
CountDoomSpell[ spell ].rankDuration[5] = 24;
CountDoomSpell[ spell ].rankDuration[6] = 24;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_CurseOfSargeras";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "厄运诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFDOOM;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 60;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 60;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_AuraOfDarkness";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = true;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "元素诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFTHEELEMENTS;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 300;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 300;
CountDoomSpell[ spell ].rankDuration[2] = 300;
CountDoomSpell[ spell ].rankDuration[3] = 300;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 30;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_ChillTouch";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "疲劳诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFEXHAUSTION;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 12;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 12;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 2;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_GrimWard";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "鲁莽诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFRECKLESSNESS;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 120;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 120;
CountDoomSpell[ spell ].rankDuration[2] = 120;
CountDoomSpell[ spell ].rankDuration[3] = 120;
CountDoomSpell[ spell ].rankDuration[4] = 120;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 15;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_UnholyStrength";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "腐蚀术";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CORRUPTION;
CountDoomSpell[ spell ].type = COUNTDOOMSPELL_CORRUPTION;
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 18;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 12;
CountDoomSpell[ spell ].rankDuration[2] = 15;
CountDoomSpell[ spell ].rankDuration[3] = 18;
CountDoomSpell[ spell ].rankDuration[4] = 18;
CountDoomSpell[ spell ].rankDuration[5] = 18;
CountDoomSpell[ spell ].rankDuration[6] = 18;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_AbominationExplosion";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "暗影诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFSHADOW;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 300;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 300;
CountDoomSpell[ spell ].rankDuration[2] = 300;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 30;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_CurseOfAchimonde";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "语言诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFTONGUES;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 30;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 30;
CountDoomSpell[ spell ].rankDuration[2] = 30;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 5;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_CurseOfTounges";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;


spell = "虚弱诅咒";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_CURSEOFWEAKNESS;
CountDoomSpell[ spell ].type = "curse";
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 120;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 120;
CountDoomSpell[ spell ].rankDuration[2] = 120;
CountDoomSpell[ spell ].rankDuration[3] = 120;
CountDoomSpell[ spell ].rankDuration[4] = 120;
CountDoomSpell[ spell ].rankDuration[5] = 120;
CountDoomSpell[ spell ].rankDuration[6] = 120;
CountDoomSpell[ spell ].countDown = true;
CountDoomSpell[ spell ].warningTime = 15;
CountDoomSpell[ spell ].combatOnly = true;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_CurseOfMannoroth";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = false;
CountDoomSpell[ spell ].soundEnd = false;
CountDoomSpell[ spell ].announceStart = false;
CountDoomSpell[ spell ].announceWarning = false;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "奴役恶魔";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_ENSLAVEDEMON;
CountDoomSpell[ spell ].type = COUNTDOOMSPELL_ENSLAVEDEMON;
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 300;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 300;
CountDoomSpell[ spell ].rankDuration[2] = 300;
CountDoomSpell[ spell ].rankDuration[3] = 300;
CountDoomSpell[ spell ].countDown = false;
CountDoomSpell[ spell ].warningTime = 60;
CountDoomSpell[ spell ].combatOnly = false;
CountDoomSpell[ spell ].icon = "Interface\\Icons\\Spell_Shadow_EnslaveDemon";
CountDoomSpell[ spell ].soundStart = false;
CountDoomSpell[ spell ].soundWarning = true;
CountDoomSpell[ spell ].soundEnd = true;
CountDoomSpell[ spell ].announceStart = true;
CountDoomSpell[ spell ].announceWarning = true;
CountDoomSpell[ spell ].announceEnd = false;
CountDoomSpellMapping[ CountDoomSpell[ spell ].text ] = spell;

spell = "恐惧术";
CountDoomSpell[ spell ] = {};
CountDoomSpell[ spell ].text = COUNTDOOMSPELL_FEAR;
CountDoomSpell[ spell ].type = COUNTDOOMSPELL_FEAR;
CountDoomSpell[ spell ].replacesSameType = true;
CountDoomSpell[ spell ].duration = 20;
CountDoomSpell[ spell ].rankDuration = {};
CountDoomSpell[ spell ].rankDuration[1] = 10;
CountDoomSpell[ spell ].rankDuration[2] = 15;
CountDoomSpell[ spell ].rankDuration[3] = 20;
CountDoomSpell[ spell ].countDown = true;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -