Spells/Filters
* add various filters (mostly attribute flags) * resolve additional dbc-data on detail page * fixed DK rune indexing
This commit is contained in:
parent
adc1273b08
commit
04e183f5e3
21 changed files with 2267 additions and 717 deletions
|
|
@ -1278,12 +1278,17 @@ abstract class Filter
|
|||
return null;
|
||||
}
|
||||
|
||||
private function genericBooleanFlags($field, $value, $op)
|
||||
private function genericBooleanFlags($field, $value, $op, $matchAny = false)
|
||||
{
|
||||
if ($this->int2Bool($op))
|
||||
return [[$field, $value, '&'], $op ? $value : 0];
|
||||
if (!$this->int2Bool($op))
|
||||
return null;
|
||||
|
||||
return null;
|
||||
if (!$op)
|
||||
return [[$field, $value, '&'], 0];
|
||||
else if ($matchAny)
|
||||
return [[$field, $value, '&'], 0, '!'];
|
||||
else
|
||||
return [[$field, $value, '&'], $value];
|
||||
}
|
||||
|
||||
private function genericString($field, $value, $strFlags)
|
||||
|
|
@ -1321,19 +1326,16 @@ abstract class Filter
|
|||
|
||||
protected function genericCriterion(&$cr)
|
||||
{
|
||||
$gen = $this->genericFilter[$cr[0]];
|
||||
$gen = array_pad($this->genericFilter[$cr[0]], 4, null);
|
||||
$result = null;
|
||||
|
||||
if(!isset($gen[2]))
|
||||
$gen[2] = 0;
|
||||
|
||||
switch ($gen[0])
|
||||
{
|
||||
case FILTER_CR_NUMERIC:
|
||||
$result = $this->genericNumeric($gen[1], $cr[2], $cr[1], $gen[2]);
|
||||
break;
|
||||
case FILTER_CR_FLAG:
|
||||
$result = $this->genericBooleanFlags($gen[1], $gen[2], $cr[1]);
|
||||
$result = $this->genericBooleanFlags($gen[1], $gen[2], $cr[1], $gen[3]);
|
||||
break;
|
||||
case FILTER_CR_STAFFFLAG:
|
||||
if (User::isInGroup(U_GROUP_EMPLOYEE) && $cr[1] >= 0)
|
||||
|
|
|
|||
|
|
@ -760,11 +760,11 @@ class SpellList extends BaseType
|
|||
{ // Blood 2|1 - Unholy 2|1 - Frost 2|1
|
||||
$runes = [];
|
||||
if ($_ = (($rCost & 0x300) >> 8))
|
||||
$runes[] = $_.' '.Lang::spell('powerRunes', 2);
|
||||
$runes[] = $_.' '.Lang::spell('powerRunes', 0);
|
||||
if ($_ = (($rCost & 0x030) >> 4))
|
||||
$runes[] = $_.' '.Lang::spell('powerRunes', 1);
|
||||
if ($_ = ($rCost & 0x003))
|
||||
$runes[] = $_.' '.Lang::spell('powerRunes', 0);
|
||||
$runes[] = $_.' '.Lang::spell('powerRunes', 2);
|
||||
|
||||
$str .= implode(', ', $runes);
|
||||
}
|
||||
|
|
@ -789,7 +789,7 @@ class SpellList extends BaseType
|
|||
if ($this->isChanneledSpell())
|
||||
return Lang::spell('channeled');
|
||||
else if ($this->curTpl['castTime'] > 0)
|
||||
return $short ? sprintf(Lang::spell('castIn'), $this->curTpl['castTime'] / 1000) : Util::formatTime($this->curTpl['castTime']);
|
||||
return $short ? sprintf(Lang::spell('castIn'), $this->curTpl['castTime']) : Util::formatTime($this->curTpl['castTime'] * 1000);
|
||||
// show instant only for player/pet/npc abilities (todo (low): unsure when really hidden (like talent-case))
|
||||
else if ($noInstant && !in_array($this->curTpl['typeCat'], [11, 7, -3, -6, -8, 0]) && !($this->curTpl['cuFlags'] & SPELL_CU_TALENTSPELL))
|
||||
return '';
|
||||
|
|
@ -2256,7 +2256,7 @@ class SpellList extends BaseType
|
|||
public function getCastingTimeForBonus($asDOT = false)
|
||||
{
|
||||
$areaTargets = [7, 8, 15, 16, 20, 24, 30, 31, 33, 34, 37, 54, 56, 59, 104, 108];
|
||||
$castingTime = $this->IsChanneledSpell() ? $this->curTpl['duration'] : $this->curTpl['castTime'];
|
||||
$castingTime = $this->IsChanneledSpell() ? $this->curTpl['duration'] : ($this->curTpl['castTime'] * 1000);
|
||||
|
||||
if (!$castingTime)
|
||||
return 3500;
|
||||
|
|
@ -2293,7 +2293,7 @@ class SpellList extends BaseType
|
|||
if ($overTime > 0 && $castingTime > 0 && $isDirect)
|
||||
{
|
||||
// mainly for DoTs which are 3500 here otherwise
|
||||
$originalCastTime = $this->curTpl['castTime'];
|
||||
$originalCastTime = $this->curTpl['castTime'] * 1000;
|
||||
if ($this->curTpl['attributes0'] & 0x2) // requires Ammo
|
||||
$originalCastTime += 500;
|
||||
|
||||
|
|
@ -2349,9 +2349,11 @@ class SpellList extends BaseType
|
|||
|
||||
class SpellListFilter extends Filter
|
||||
{
|
||||
// sources in filter and general use different indizes
|
||||
private $enums = array(
|
||||
9 => array(
|
||||
const MAX_SPELL_EFFECT = 167;
|
||||
const MAX_SPELL_AURA = 316;
|
||||
|
||||
protected $enums = array(
|
||||
9 => array( // sources index
|
||||
1 => true, // Any
|
||||
2 => false, // None
|
||||
3 => 1, // Crafted
|
||||
|
|
@ -2361,33 +2363,144 @@ class SpellListFilter extends Filter
|
|||
8 => 6, // Trainer
|
||||
9 => 7, // Discovery
|
||||
10 => 9 // Talent
|
||||
),
|
||||
40 => array( // damage class index
|
||||
1 => 0, // none
|
||||
2 => 1, // magic
|
||||
3 => 2, // melee
|
||||
4 => 3 // ranged
|
||||
),
|
||||
45 => array( // power type index
|
||||
// 1 => ??, // burning embers
|
||||
// 2 => ??, // chi
|
||||
// 3 => ??, // demonic fury
|
||||
4 => POWER_ENERGY, // energy
|
||||
5 => POWER_FOCUS, // focus
|
||||
6 => POWER_HEALTH, // health
|
||||
// 7 => ??, // holy power
|
||||
8 => POWER_MANA, // mana
|
||||
9 => POWER_RAGE, // rage
|
||||
10 => POWER_RUNE, // runes
|
||||
11 => POWER_RUNIC_POWER, // runic power
|
||||
// 12 => ??, // shadow orbs
|
||||
// 13 => ??, // soul shard
|
||||
14 => POWER_HAPPINESS, // happiness v custom v
|
||||
15 => -1, // ammo
|
||||
16 => -41, // pyrite
|
||||
17 => -61, // steam pressure
|
||||
18 => -101, // heat
|
||||
19 => -121, // ooze
|
||||
20 => -141, // blood power
|
||||
21 => -142 // wrath
|
||||
)
|
||||
);
|
||||
|
||||
// cr => [type, field, misc, extraCol]
|
||||
protected $genericFilter = array( // misc (bool): _NUMERIC => useFloat; _STRING => localized; _FLAG => match Value; _BOOLEAN => stringSet
|
||||
1 => [FILTER_CR_CALLBACK, 'cbCost', null, null], // costAbs [op] [int]
|
||||
2 => [FILTER_CR_NUMERIC, 'powerCostPercent', NUM_CAST_INT ], // prcntbasemanarequired
|
||||
3 => [FILTER_CR_BOOLEAN, 'spellFocusObject' ], // requiresnearbyobject
|
||||
4 => [FILTER_CR_NUMERIC, 'trainingcost', NUM_CAST_INT ], // trainingcost
|
||||
5 => [FILTER_CR_BOOLEAN, 'reqSpellId' ], // requiresprofspec
|
||||
8 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_SCREENSHOT ], // hasscreenshots
|
||||
9 => [FILTER_CR_CALLBACK, 'cbSource', null, null], // source [enum]
|
||||
10 => [FILTER_CR_FLAG, 'cuFlags', SPELL_CU_FIRST_RANK ], // firstrank
|
||||
11 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_COMMENT ], // hascomments
|
||||
12 => [FILTER_CR_FLAG, 'cuFlags', SPELL_CU_LAST_RANK ], // lastrank
|
||||
13 => [FILTER_CR_NUMERIC, 'rankNo', NUM_CAST_INT ], // rankno
|
||||
14 => [FILTER_CR_NUMERIC, 'id', NUM_CAST_INT, true], // id
|
||||
15 => [FILTER_CR_STRING, 'ic.name', ], // icon
|
||||
17 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_VIDEO ], // hasvideos
|
||||
19 => [FILTER_CR_FLAG, 'attributes0', 0x80000 ], // scaling
|
||||
20 => [FILTER_CR_CALLBACK, 'cbReagents', null, null], // has Reagents [yn]
|
||||
25 => [FILTER_CR_BOOLEAN, 'skillLevelYellow' ] // rewardsskillups
|
||||
1 => [FILTER_CR_CALLBACK, 'cbCost', ], // costAbs [op] [int]
|
||||
2 => [FILTER_CR_NUMERIC, 'powerCostPercent', NUM_CAST_INT ], // prcntbasemanarequired
|
||||
3 => [FILTER_CR_BOOLEAN, 'spellFocusObject' ], // requiresnearbyobject
|
||||
4 => [FILTER_CR_NUMERIC, 'trainingcost', NUM_CAST_INT ], // trainingcost
|
||||
5 => [FILTER_CR_BOOLEAN, 'reqSpellId' ], // requiresprofspec
|
||||
8 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_SCREENSHOT ], // hasscreenshots
|
||||
9 => [FILTER_CR_CALLBACK, 'cbSource', ], // source [enum]
|
||||
10 => [FILTER_CR_FLAG, 'cuFlags', SPELL_CU_FIRST_RANK ], // firstrank
|
||||
11 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_COMMENT ], // hascomments
|
||||
12 => [FILTER_CR_FLAG, 'cuFlags', SPELL_CU_LAST_RANK ], // lastrank
|
||||
13 => [FILTER_CR_NUMERIC, 'rankNo', NUM_CAST_INT ], // rankno
|
||||
14 => [FILTER_CR_NUMERIC, 'id', NUM_CAST_INT, true ], // id
|
||||
15 => [FILTER_CR_STRING, 'ic.name', ], // icon
|
||||
17 => [FILTER_CR_FLAG, 'cuFlags', CUSTOM_HAS_VIDEO ], // hasvideos
|
||||
19 => [FILTER_CR_FLAG, 'attributes0', 0x80000 ], // scaling
|
||||
20 => [FILTER_CR_CALLBACK, 'cbReagents', ], // has Reagents [yn]
|
||||
// 22 => [FILTER_CR_NYI_PH, null, null, null ], // proficiencytype [proficiencytype] pointless
|
||||
25 => [FILTER_CR_BOOLEAN, 'skillLevelYellow' ], // rewardsskillups
|
||||
27 => [FILTER_CR_FLAG, 'attributes1', 0x0044, true ], // channeled [yn]
|
||||
28 => [FILTER_CR_NUMERIC, 'castTime', NUM_CAST_FLOAT ], // casttime [num]
|
||||
29 => [FILTER_CR_CALLBACK, 'cbAuraNames', ], // appliesaura [effectauranames]
|
||||
// 31 => [FILTER_CR_NYI_PH, null, null, null ], // usablewhenshapeshifted [yn] pointless
|
||||
33 => [FILTER_CR_CALLBACK, 'cbInverseFlag', 'attributes0', 0x10000000], // combatcastable [yn]
|
||||
34 => [FILTER_CR_CALLBACK, 'cbInverseFlag', 'attributes2', 0x20000000], // chancetocrit [yn]
|
||||
35 => [FILTER_CR_CALLBACK, 'cbInverseFlag', 'attributes3', 0x00040000], // chancetomiss [yn]
|
||||
36 => [FILTER_CR_FLAG, 'attributes3', 0x00100000 ], // persiststhroughdeath [yn]
|
||||
38 => [FILTER_CR_FLAG, 'attributes0', 0x00020000 ], // requiresstealth [yn]
|
||||
39 => [FILTER_CR_CALLBACK, 'cbSpellstealable', 'attributes4', 0x00000040], // spellstealable [yn]
|
||||
40 => [FILTER_CR_ENUM, 'damageClass' ], // damagetype [damagetype]
|
||||
41 => [FILTER_CR_FLAG, 'stanceMask', (1 << (22 - 1)) ], // requiresmetamorphosis [yn]
|
||||
42 => [FILTER_CR_FLAG, 'attributes5', 0x00000008 ], // usablewhenstunned [yn]
|
||||
44 => [FILTER_CR_CALLBACK, 'cbUsableInArena' ], // usableinarenas [yn]
|
||||
45 => [FILTER_CR_ENUM, 'powerType' ], // resourcetype [resourcetype]
|
||||
// 46 => [FILTER_CR_NYI_PH, null, null, null ], // disregardimmunity [yn]
|
||||
47 => [FILTER_CR_FLAG, 'attributes1', 0x00010000 ], // disregardschoolimmunity [yn]
|
||||
48 => [FILTER_CR_CALLBACK, 'cbEquippedWeapon', 0x0004000C, false ], // reqrangedweapon [yn]
|
||||
49 => [FILTER_CR_FLAG, 'attributes0', 0x00000004 ], // onnextswingplayers [yn]
|
||||
50 => [FILTER_CR_FLAG, 'attributes0', 0x00000040 ], // passivespell [yn]
|
||||
51 => [FILTER_CR_FLAG, 'attributes1', 0x10000000 ], // hiddenaura [yn]
|
||||
52 => [FILTER_CR_FLAG, 'attributes0', 0x00000400 ], // onnextswingnpcs [yn]
|
||||
53 => [FILTER_CR_FLAG, 'attributes0', 0x00001000 ], // daytimeonly [yn]
|
||||
54 => [FILTER_CR_FLAG, 'attributes0', 0x00002000 ], // nighttimeonly [yn]
|
||||
55 => [FILTER_CR_FLAG, 'attributes0', 0x00004000 ], // indoorsonly [yn]
|
||||
56 => [FILTER_CR_FLAG, 'attributes0', 0x00008000 ], // outdoorsonly [yn]
|
||||
57 => [FILTER_CR_FLAG, 'attributes0', 0x80000000 ], // uncancellableaura [yn]
|
||||
58 => [FILTER_CR_FLAG, 'attributes0', 0x00080000 ], // damagedependsonlevel [yn]
|
||||
59 => [FILTER_CR_FLAG, 'attributes0', 0x00100000 ], // stopsautoattack [yn]
|
||||
60 => [FILTER_CR_FLAG, 'attributes0', 0x00200000 ], // cannotavoid [yn]
|
||||
61 => [FILTER_CR_FLAG, 'attributes0', 0x00800000 ], // usabledead [yn]
|
||||
62 => [FILTER_CR_FLAG, 'attributes0', 0x01000000 ], // usablemounted [yn]
|
||||
63 => [FILTER_CR_FLAG, 'attributes0', 0x02000000 ], // delayedrecoverystarttime [yn]
|
||||
64 => [FILTER_CR_FLAG, 'attributes0', 0x08000000 ], // usablesitting [yn]
|
||||
65 => [FILTER_CR_FLAG, 'attributes1', 0x00000002 ], // usesallpower [yn]
|
||||
66 => [FILTER_CR_FLAG, 'attributes1', 0x00000044, true ], // channeled [yn] redundancy much...?
|
||||
67 => [FILTER_CR_FLAG, 'attributes1', 0x00000080 ], // cannotreflect [yn]
|
||||
68 => [FILTER_CR_FLAG, 'attributes1', 0x00000020 ], // usablestealthed [yn]
|
||||
69 => [FILTER_CR_FLAG, 'attributes0', 0x04000000 ], // harmful [yn]
|
||||
70 => [FILTER_CR_FLAG, 'attributes1', 0x00000100 ], // targetnotincombat [yn]
|
||||
71 => [FILTER_CR_FLAG, 'attributes1', 0x00000400 ], // nothreat [yn]
|
||||
72 => [FILTER_CR_FLAG, 'attributes1', 0x00001000 ], // pickpocket [yn]
|
||||
73 => [FILTER_CR_FLAG, 'attributes1', 0x00008000 ], // dispelauraonimmunity [yn]
|
||||
74 => [FILTER_CR_CALLBACK, 'cbEquippedWeapon', 0x00100000, false ], // reqfishingpole [yn]
|
||||
75 => [FILTER_CR_FLAG, 'attributes2', 0x00000040 ], // requntappedtarget [yn]
|
||||
// 76 => [FILTER_CR_NYI_PH, null, null, null ], // targetownitem [yn] // the flag for this has to be somewhere....
|
||||
77 => [FILTER_CR_FLAG, 'attributes2', 0x00080000 ], // doesntreqshapeshift [yn]
|
||||
78 => [FILTER_CR_FLAG, 'attributes2', 0x80000000 ], // foodbuff [yn]
|
||||
79 => [FILTER_CR_FLAG, 'attributes3', 0x00000100 ], // targetonlyplayer [yn]
|
||||
80 => [FILTER_CR_CALLBACK, 'cbEquippedWeapon', 1 << INVTYPE_WEAPONMAINHAND, true ], // reqmainhand [yn]
|
||||
81 => [FILTER_CR_FLAG, 'attributes3', 0x00020000 ], // doesntengagetarget [yn]
|
||||
82 => [FILTER_CR_CALLBACK, 'cbEquippedWeapon', 0x00080000, false ], // reqwand [yn]
|
||||
83 => [FILTER_CR_CALLBACK, 'cbEquippedWeapon', 1 << INVTYPE_WEAPONOFFHAND, true ], // reqoffhand [yn]
|
||||
84 => [FILTER_CR_FLAG, 'attributes0', 0x00000100 ], // nolog [yn]
|
||||
85 => [FILTER_CR_FLAG, 'attributes4', 0x00000004 ], // auratickswhileloggedout [yn]
|
||||
87 => [FILTER_CR_FLAG, 'attributes5', 0x00000200 ], // startstickingatapplication [yn]
|
||||
88 => [FILTER_CR_FLAG, 'attributes5', 0x00040000 ], // usableconfused [yn]
|
||||
89 => [FILTER_CR_FLAG, 'attributes5', 0x00020000 ], // usablefeared [yn]
|
||||
90 => [FILTER_CR_FLAG, 'attributes6', 0x00000002 ], // onlyarena [yn]
|
||||
91 => [FILTER_CR_FLAG, 'attributes6', 0x00000800 ], // notinraid [yn]
|
||||
92 => [FILTER_CR_FLAG, 'attributes7', 0x00000004 ], // paladinaura [yn]
|
||||
93 => [FILTER_CR_FLAG, 'attributes7', 0x00000020 ], // totemspell [yn]
|
||||
95 => [FILTER_CR_CALLBACK, 'cbBandageSPell' ], // bandagespell [yn] ...don't ask
|
||||
96 => [FILTER_CR_STAFFFLAG, 'attributes0' ], // flags1 [flags]
|
||||
97 => [FILTER_CR_STAFFFLAG, 'attributes1' ], // flags2 [flags]
|
||||
98 => [FILTER_CR_STAFFFLAG, 'attributes2' ], // flags3 [flags]
|
||||
99 => [FILTER_CR_STAFFFLAG, 'attributes3' ], // flags4 [flags]
|
||||
100 => [FILTER_CR_STAFFFLAG, 'attributes4' ], // flags5 [flags]
|
||||
101 => [FILTER_CR_STAFFFLAG, 'attributes5' ], // flags6 [flags]
|
||||
102 => [FILTER_CR_STAFFFLAG, 'attributes6' ], // flags7 [flags]
|
||||
103 => [FILTER_CR_STAFFFLAG, 'attributes7' ], // flags8 [flags]
|
||||
104 => [FILTER_CR_STAFFFLAG, 'targets' ], // flags9 [flags]
|
||||
105 => [FILTER_CR_STAFFFLAG, 'stanceMaskNot' ], // flags10 [flags]
|
||||
106 => [FILTER_CR_STAFFFLAG, 'spellFamilyFlags1' ], // flags11 [flags]
|
||||
107 => [FILTER_CR_STAFFFLAG, 'spellFamilyFlags2' ], // flags12 [flags]
|
||||
108 => [FILTER_CR_STAFFFLAG, 'spellFamilyFlags3' ], // flags13 [flags]
|
||||
109 => [FILTER_CR_CALLBACK, 'cbEffectNames', ], // effecttype [effecttype]
|
||||
// 110 => [FILTER_CR_NYI_PH, null, null, null ], // scalingap [yn] // unreasonably complex for now
|
||||
// 111 => [FILTER_CR_NYI_PH, null, null, null ], // scalingsp [yn] // unreasonably complex for now
|
||||
114 => [FILTER_CR_CALLBACK, 'cbReqFaction' ], // requiresfaction [side]
|
||||
116 => [FILTER_CR_BOOLEAN, 'startRecoveryTime' ] // onGlobalCooldown [yn]
|
||||
);
|
||||
|
||||
// fieldId => [checkType, checkValue[, fieldIsArray]]
|
||||
protected $inputFields = array(
|
||||
'cr' => [FILTER_V_RANGE, [1, 25], true ], // criteria ids
|
||||
'cr' => [FILTER_V_RANGE, [1, 116], true ], // criteria ids
|
||||
'crs' => [FILTER_V_LIST, [FILTER_ENUM_NONE, FILTER_ENUM_ANY, [0, 99999]], true ], // criteria operators
|
||||
'crv' => [FILTER_V_REGEX, '/[\p{C};:]/ui', true ], // criteria values - only printable chars, no delimiters
|
||||
'na' => [FILTER_V_REGEX, '/[\p{C};]/ui', false], // name / text - only printable chars, no delimiter
|
||||
|
|
@ -2510,7 +2623,10 @@ class SpellListFilter extends Filter
|
|||
if (!Util::checkNumeric($cr[2], NUM_CAST_INT) || !$this->int2Op($cr[1]))
|
||||
return false;
|
||||
|
||||
return ['OR', ['AND', ['powerType', [1, 6]], ['powerCost', (10 * $cr[2]), $cr[1]]], ['AND', ['powerType', [1, 6], '!'], ['powerCost', $cr[2], $cr[1]]]];
|
||||
return ['OR',
|
||||
['AND', ['powerType', [POWER_RAGE, POWER_RUNIC_POWER]], ['powerCost', (10 * $cr[2]), $cr[1]]],
|
||||
['AND', ['powerType', [POWER_RAGE, POWER_RUNIC_POWER], '!'], ['powerCost', $cr[2], $cr[1]]]
|
||||
];
|
||||
}
|
||||
|
||||
protected function cbSource($cr)
|
||||
|
|
@ -2539,6 +2655,104 @@ class SpellListFilter extends Filter
|
|||
else
|
||||
return ['AND', ['reagent1', 0], ['reagent2', 0], ['reagent3', 0], ['reagent4', 0], ['reagent5', 0], ['reagent6', 0], ['reagent7', 0], ['reagent8', 0]];
|
||||
}
|
||||
|
||||
protected function cbAuraNames($cr)
|
||||
{
|
||||
if (!Util::checkNumeric($cr[1], NUM_CAST_INT) || $cr[1] <= 0 || $cr[1] > self::MAX_SPELL_AURA)
|
||||
return false;
|
||||
|
||||
return ['OR', ['effect1AuraId', $cr[1]], ['effect2AuraId', $cr[1]], ['effect3AuraId', $cr[1]]];
|
||||
}
|
||||
|
||||
protected function cbEffectNames($cr)
|
||||
{
|
||||
if (!Util::checkNumeric($cr[1], NUM_CAST_INT) || $cr[1] <= 0 || $cr[1] > self::MAX_SPELL_EFFECT)
|
||||
return false;
|
||||
|
||||
return ['OR', ['effect1Id', $cr[1]], ['effect2Id', $cr[1]], ['effect3Id', $cr[1]]];
|
||||
}
|
||||
|
||||
protected function cbInverseFlag($cr, $field, $flag)
|
||||
{
|
||||
if (!$this->int2Bool($cr[1]))
|
||||
return false;
|
||||
|
||||
if ($cr[1])
|
||||
return [[$field, $flag, '&'], 0];
|
||||
else
|
||||
return [$field, $flag, '&'];
|
||||
}
|
||||
|
||||
protected function cbSpellstealable($cr, $field, $flag)
|
||||
{
|
||||
if (!$this->int2Bool($cr[1]))
|
||||
return false;
|
||||
|
||||
if ($cr[1])
|
||||
return ['AND', [[$field, $flag, '&'], 0], ['dispelType', 1]];
|
||||
else
|
||||
return ['OR', [$field, $flag, '&'], ['dispelType', 1, '!']];
|
||||
}
|
||||
|
||||
protected function cbReqFaction($cr)
|
||||
{
|
||||
switch ($cr[1])
|
||||
{
|
||||
case 1: // yes
|
||||
return ['reqRaceMask', 0, '!'];
|
||||
case 2: // alliance
|
||||
return ['AND', [['reqRaceMask', RACE_MASK_HORDE, '&'], 0], ['reqRaceMask', RACE_MASK_ALLIANCE, '&']];
|
||||
case 3: // horde
|
||||
return ['AND', [['reqRaceMask', RACE_MASK_ALLIANCE, '&'], 0], ['reqRaceMask', RACE_MASK_HORDE, '&']];
|
||||
case 4: // both
|
||||
return ['AND', ['reqRaceMask', RACE_MASK_ALLIANCE, '&'], ['reqRaceMask', RACE_MASK_HORDE, '&']];
|
||||
case 5: // no
|
||||
return ['reqRaceMask', 0];
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
protected function cbEquippedWeapon($cr, $mask, $useInvType)
|
||||
{
|
||||
if (!$this->int2Bool($cr[1]))
|
||||
return false;
|
||||
|
||||
$field = $useInvType ? 'equippedItemInventoryTypeMask' : 'equippedItemSubClassMask';
|
||||
|
||||
if ($cr[1])
|
||||
return ['AND', ['equippedItemClass', ITEM_CLASS_WEAPON], [$field, $mask, '&']];
|
||||
else
|
||||
return ['OR', ['equippedItemClass', ITEM_CLASS_WEAPON, '!'], [[$field, $mask, '&'], 0]];
|
||||
}
|
||||
|
||||
protected function cbUsableInArena($cr)
|
||||
{
|
||||
if (!$this->int2Bool($cr[1]))
|
||||
return false;
|
||||
|
||||
if ($cr[1])
|
||||
return ['AND',
|
||||
[['attributes4', 0x00010000, '&'], 0],
|
||||
['OR', ['recoveryTime', 10 * MINUTE * 1000, '<='], ['attributes4', 0x00020000, '&']]
|
||||
];
|
||||
else
|
||||
return ['OR',
|
||||
['attributes4', 0x00010000, '&'],
|
||||
['AND', ['recoveryTime', 10 * MINUTE * 1000, '>'], [['attributes4', 0x00020000, '&'], 0]]
|
||||
];
|
||||
}
|
||||
|
||||
protected function cbBandageSpell($cr)
|
||||
{
|
||||
if (!$this->int2Bool($cr[1]))
|
||||
return false;
|
||||
|
||||
if ($cr[1]) // match exact, not as flag
|
||||
return ['AND', ['attributes1', 0x00004044], ['effect1ImplicitTargetA', 21]];
|
||||
else
|
||||
return ['OR', ['attributes1', 0x00004044, '!'], ['effect1ImplicitTargetA', 21, '!']];
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -845,7 +845,7 @@ $lang = array(
|
|||
'directSP' => "+%.2f%% der Zaubermacht zum direkten Effekt", 'directAP' => "+%.2f%% der Angriffskraft zum direkten Effekt",
|
||||
'dotSP' => "+%.2f%% der Zaubermacht pro Tick", 'dotAP' => "+%.2f%% der Angriffskraft pro Tick"
|
||||
),
|
||||
'powerRunes' => ["Frost", "Unheilig", "Blut", "Tod"],
|
||||
'powerRunes' => ["Blut", "Unheilig", "Frost", "Tod"],
|
||||
'powerTypes' => array(
|
||||
// conventional
|
||||
-2 => "Gesundheit", 0 => "Mana", 1 => "Wut", 2 => "Fokus", 3 => "Energie", 4 => "Zufriedenheit",
|
||||
|
|
@ -943,99 +943,99 @@ $lang = array(
|
|||
'unkEffect' => 'Unknown Effect',
|
||||
'effects' => array(
|
||||
/*0-5 */ 'None', 'Instakill', 'School Damage', 'Dummy', 'Portal Teleport', 'Teleport Units',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Quest Complete', 'Weapon Damage NoSchool',
|
||||
/*18+ */ 'Resurrect', 'Add Extra Attacks', 'Dodge', 'Evade', 'Parry', 'Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Defense', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Energize', 'Weapon Damage Percent', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ 'Learn Spell', 'Spell Defense', 'Dispel', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', 'Pickpocket',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Complete Quest', 'Weapon Damage - No School',
|
||||
/*18+ */ 'Resurrect with % Health', 'Add Extra Attacks', 'Can Dodge', 'Can Evade', 'Can Parry', 'Can Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Know Defense Skill', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Give Power', 'Weapon Damage - %', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ 'Learn Spell', 'Know Spell Defense', 'Dispel', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', 'Pickpocket',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ 'Charge', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => 'Unknown Aura',
|
||||
'auras' => array(
|
||||
/*0- */ 'None', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ 'None', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -845,7 +845,7 @@ $lang = array(
|
|||
'directSP' => "+%.2f%% of spell power to direct component", 'directAP' => "+%.2f%% of attack power to direct component",
|
||||
'dotSP' => "+%.2f%% of spell power per tick", 'dotAP' => "+%.2f%% of attack power per tick"
|
||||
),
|
||||
'powerRunes' => ["Frost", "Unholy", "Blood", "Death"], // RUNE_COST_* / COMBAT_TEXT_RUNE_*
|
||||
'powerRunes' => ["Blood", "Unholy", "Frost", "Death"], // RUNE_COST_* / COMBAT_TEXT_RUNE_*
|
||||
'powerTypes' => array(
|
||||
// conventional - HEALTH, MANA, RAGE, FOCUS, ENERGY, HAPPINESS, RUNES, RUNIC_POWER / *_COST / *COST_PER_TIME
|
||||
-2 => "Health", 0 => "Mana", 1 => "Rage", 2 => "Focus", 3 => "Energy", 4 => "Happiness",
|
||||
|
|
@ -943,99 +943,99 @@ $lang = array(
|
|||
'unkEffect' => 'Unknown Effect',
|
||||
'effects' => array(
|
||||
/*0-5 */ 'None', 'Instakill', 'School Damage', 'Dummy', 'Portal Teleport', 'Teleport Units',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Quest Complete', 'Weapon Damage NoSchool',
|
||||
/*18+ */ 'Resurrect', 'Add Extra Attacks', 'Dodge', 'Evade', 'Parry', 'Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Defense', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Energize', 'Weapon Damage Percent', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ 'Learn Spell', 'Spell Defense', 'Dispel', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', 'Pickpocket',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Complete Quest', 'Weapon Damage - No School',
|
||||
/*18+ */ 'Resurrect with % Health', 'Add Extra Attacks', 'Can Dodge', 'Can Evade', 'Can Parry', 'Can Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Know Defense Skill', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Give Power', 'Weapon Damage - %', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ 'Learn Spell', 'Know Spell Defense', 'Dispel', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', 'Pickpocket',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ 'Charge', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => 'Unknown Aura',
|
||||
'auras' => array(
|
||||
/*0- */ 'None', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ 'None', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -845,7 +845,7 @@ $lang = array(
|
|||
'directSP' => "+%.2f%% del poder de hechizo al componente directo", 'directAP' => "+%.2f%% del poder de ataque al componente directo",
|
||||
'dotSP' => "+%.2f%% del poder de hechizo por tick", 'dotAP' => "+%.2f%% del poder de ataque por tick"
|
||||
),
|
||||
'powerRunes' => ["Escarcha", "Profano", "Sangre", "Muerte"],
|
||||
'powerRunes' => ["Sangre", "Profano", "Escarcha", "Muerte"],
|
||||
'powerTypes' => array(
|
||||
// conventional
|
||||
-2 => "Salud", 0 => "Maná", 1 => "Ira", 2 => "Enfoque", 3 => "Energía", 4 => "Felicidad",
|
||||
|
|
@ -943,99 +943,99 @@ $lang = array(
|
|||
'unkEffect' => 'Unknown Effect',
|
||||
'effects' => array(
|
||||
/*0-5 */ 'None', 'Instakill', 'School Damage', 'Dummy', 'Portal Teleport', 'Teleport Units',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Quest Complete', 'Weapon Damage NoSchool',
|
||||
/*18+ */ 'Resurrect', 'Add Extra Attacks', 'Dodge', 'Evade', 'Parry', 'Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Defense', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Energize', 'Weapon Damage Percent', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ 'Learn Spell', 'Spell Defense', 'Dispel', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', 'Pickpocket',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Complete Quest', 'Weapon Damage - No School',
|
||||
/*18+ */ 'Resurrect with % Health', 'Add Extra Attacks', 'Can Dodge', 'Can Evade', 'Can Parry', 'Can Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Know Defense Skill', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Give Power', 'Weapon Damage - %', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ 'Learn Spell', 'Know Spell Defense', 'Dispel', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', 'Pickpocket',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ 'Charge', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => 'Unknown Aura',
|
||||
'auras' => array(
|
||||
/*0- */ 'None', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ 'None', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -846,7 +846,7 @@ $lang = array(
|
|||
'directSP' => "+%.2f%% de la puissance des sorts directe", 'directAP' => "+%.2f%% de la puissance d'attaque directe",
|
||||
'dotSP' => "+%.2f%% de la puissance des sorts par tick", 'dotAP' => "+%.2f%% de la puissance d'attaque par tick"
|
||||
),
|
||||
'powerRunes' => ["Givre", "Impie", "Sang", "Mort"],
|
||||
'powerRunes' => ["Sang", "Impie", "Givre", "Mort"],
|
||||
'powerTypes' => array(
|
||||
// conventional
|
||||
-2 => "vie", 0 => "mana", 1 => "rage", 2 => "focus", 3 => "énergie", 4 => "Satisfaction",
|
||||
|
|
@ -944,99 +944,99 @@ $lang = array(
|
|||
'unkEffect' => 'Unknown Effect',
|
||||
'effects' => array(
|
||||
/*0-5 */ 'None', 'Instakill', 'School Damage', 'Dummy', 'Portal Teleport', 'Teleport Units',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Quest Complete', 'Weapon Damage NoSchool',
|
||||
/*18+ */ 'Resurrect', 'Add Extra Attacks', 'Dodge', 'Evade', 'Parry', 'Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Defense', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Energize', 'Weapon Damage Percent', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ 'Learn Spell', 'Spell Defense', 'Dispel', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', 'Pickpocket',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Complete Quest', 'Weapon Damage - No School',
|
||||
/*18+ */ 'Resurrect with % Health', 'Add Extra Attacks', 'Can Dodge', 'Can Evade', 'Can Parry', 'Can Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Know Defense Skill', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Give Power', 'Weapon Damage - %', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ 'Learn Spell', 'Know Spell Defense', 'Dispel', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', 'Pickpocket',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ 'Charge', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => 'Unknown Aura',
|
||||
'auras' => array(
|
||||
/*0- */ 'None', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ 'None', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -845,7 +845,7 @@ $lang = array(
|
|||
'directSP' => "[+%.2f%% of spell power to direct component]", 'directAP' => "[+%.2f%% of attack power to direct component]",
|
||||
'dotSP' => "[+%.2f%% of spell power per tick]", 'dotAP' => "[+%.2f%% of attack power per tick]"
|
||||
),
|
||||
'powerRunes' => ["Лед", "Руна льда", "Руна крови", "Смерти"],
|
||||
'powerRunes' => ["Руна крови", "Руна льда", "Лед", "Смерти"],
|
||||
'powerTypes' => array(
|
||||
// conventional
|
||||
-2 => "Здоровье", 0 => "Мана", 1 => "Ярость", 2 => "Тонус", 3 => "Энергия", 4 => "Настроение",
|
||||
|
|
@ -943,99 +943,99 @@ $lang = array(
|
|||
'unkEffect' => 'Unknown Effect',
|
||||
'effects' => array(
|
||||
/*0-5 */ 'None', 'Instakill', 'School Damage', 'Dummy', 'Portal Teleport', 'Teleport Units',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Quest Complete', 'Weapon Damage NoSchool',
|
||||
/*18+ */ 'Resurrect', 'Add Extra Attacks', 'Dodge', 'Evade', 'Parry', 'Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Defense', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Energize', 'Weapon Damage Percent', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ 'Learn Spell', 'Spell Defense', 'Dispel', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', 'Pickpocket',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*6+ */ 'Apply Aura', 'Environmental Damage', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', 'Complete Quest', 'Weapon Damage - No School',
|
||||
/*18+ */ 'Resurrect with % Health', 'Add Extra Attacks', 'Can Dodge', 'Can Evade', 'Can Parry', 'Can Block',
|
||||
/*24+ */ 'Create Item', 'Can Use Weapon', 'Know Defense Skill', 'Persistent Area Aura', 'Summon', 'Leap',
|
||||
/*30+ */ 'Give Power', 'Weapon Damage - %', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ 'Learn Spell', 'Know Spell Defense', 'Dispel', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', 'Pickpocket',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ 'Charge', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => 'Unknown Aura',
|
||||
'auras' => array(
|
||||
/*0- */ 'None', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ 'None', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -846,7 +846,7 @@ $lang = array(
|
|||
'directSP' => "+%.2f%% of spell power to direct component", 'directAP' => "+%.2f%% of attack power to direct component",
|
||||
'dotSP' => "+%.2f%% of spell power per tick", 'dotAP' => "+%.2f%% of attack power per tick"
|
||||
),
|
||||
'powerRunes' => ["冰霜", "邪恶", "鲜血", "死亡"],
|
||||
'powerRunes' => ["鲜血", "邪恶", "冰霜", "死亡"],
|
||||
'powerTypes' => array(
|
||||
// conventional
|
||||
-2 => "生命值", 0 => "法力值", 1 => "怒气", 2 => "集中", 3 => "能量", 4 => "快乐",
|
||||
|
|
@ -944,99 +944,99 @@ $lang = array(
|
|||
'unkEffect' => '未知效果',
|
||||
'effects' => array(
|
||||
/*0-5 */ '无', '杀死', '类型伤害', 'Dummy', '传送门', '传送单位',
|
||||
/*6+ */ '应用光环', '环境伤害', 'Power Drain', 'Health Leech', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', '任务完成', 'Weapon Damage NoSchool',
|
||||
/*6+ */ '应用光环', '环境伤害', 'Drain Power', 'Drain Health', 'Heal', 'Bind',
|
||||
/*12+ */ 'Portal', 'Ritual Base', 'Ritual Specialize', 'Ritual Activate Portal', '任务完成', 'Weapon Damage - No School',
|
||||
/*18+ */ '复活', 'Add Extra Attacks', '躲闪', '闪避', '招架', '格挡',
|
||||
/*24+ */ '创建物品', '可以使用武器', '防御', 'Persistent Area Aura', '召唤', 'Leap',
|
||||
/*30+ */ 'Energize', '武器伤害百分比', 'Trigger Missile', 'Open Lock', 'Summon Change Item', 'Apply Area Aura Party',
|
||||
/*36+ */ '学习法术', '法术防御', '驱散', 'Language', 'Dual Wield', 'Jump',
|
||||
/*42+ */ 'Jump Dest', 'Teleport Units Face Caster','Skill Step', 'Add Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect', 'Trans Door', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Pet Spell', 'Weapon Damage Flat', 'Create Random Item',
|
||||
/*60+ */ 'Proficiency', 'Send Event', 'Power Burn', 'Threat', 'Trigger Spell', 'Apply Area Aura Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal Max Health', 'Interrupt Cast', 'Distract', 'Pull', '偷窃',
|
||||
/*72+ */ 'Add Farsight', 'Untrain Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object Wild', 'Script Effect',
|
||||
/*78+ */ 'Attack', 'Sanctuary', 'Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'WMO Damage', 'WMO Repair', 'WMO Change',
|
||||
/*30+ */ 'Give Power', '武器伤害百分比', 'Trigger Missile', 'Open Lock', 'Transform Item', 'Apply Area Aura - Party',
|
||||
/*36+ */ '学习法术', '法术防御', '驱散', 'Learn Language', 'Dual Wield', 'Jump to Target',
|
||||
/*42+ */ 'Jump Behind Target', 'Teleport Target to Caster','Learn Skill Step', 'Give Honor', 'Spawn', 'Trade Skill',
|
||||
/*48+ */ 'Stealth', 'Detect Stealthed', 'Summon Object', 'Force Critical Hit', 'Guarantee Hit', 'Enchant Item Permanent',
|
||||
/*54+ */ 'Enchant Item Temporary', 'Tame Creature', 'Summon Pet', 'Learn Spell - Pet', 'Weapon Damage - Flat', 'Open Item & Fast Loot',
|
||||
/*60+ */ 'Proficiency', 'Send Script Event', 'Burn Power', 'Modify Threat - Flat', 'Trigger Spell', 'Apply Area Aura - Raid',
|
||||
/*66+ */ 'Create Mana Gem', 'Heal to Full', 'Interrupt Cast', 'Distract', 'Distract Move', '偷窃',
|
||||
/*72+ */ 'Far Sight', 'Forget Talents', 'Apply Glyph', 'Heal Mechanical', 'Summon Object - Temporary','Script Effect',
|
||||
/*78+ */ 'Attack', 'Abort All Pending Attacks','Add Combo Points', 'Create House', 'Bind Sight', 'Duel',
|
||||
/*84+ */ 'Stuck', 'Summon Player', 'Activate Object', 'Siege Damage', 'Repair Building', 'Siege Building Action',
|
||||
/*90+ */ 'Kill Credit', 'Threat All', 'Enchant Held Item', 'Force Deselect', 'Self Resurrect', 'Skinning',
|
||||
/*96+ */ '可使用次数', 'Cast Button', 'Knock Back', 'Disenchant', 'Inebriate', 'Feed Pet',
|
||||
/*102+ */ 'Dismiss Pet', 'Reputation', 'Summon Object Slot1', 'Summon Object Slot2', 'Summon Object Slot3', 'Summon Object Slot4',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage', 'Summon Demon', 'Resurrect Flat',
|
||||
/*114+ */ 'Attack Me', 'Durability Damage Percent','Skin Player Corpse', 'Spirit Heal', 'Skill', 'Apply Area Aura Pet',
|
||||
/*120+ */ 'Teleport Graveyard', 'Weapon Damage Normalized', null, 'Send Taxi', 'Pull Towards', 'Modify Threat Percent',
|
||||
/*126+ */ 'Steal Beneficial Buff', 'Prospecting', 'Apply Area Aura Friend', 'Apply Area Aura Enemy', 'Redirect Threat', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal Percent', 'Energize Percent',
|
||||
/*138+ */ 'Leap Back', 'Clear Quest', 'Force Cast', 'Force Cast With Value', 'Trigger Spell With Value', 'Apply Area Aura Owner',
|
||||
/*144+ */ 'Knock Back Dest', 'Pull Towards Dest', 'Activate Rune', 'Quest Fail', null, 'Charge Dest',
|
||||
/*150+ */ 'Quest Start', 'Trigger Spell 2', null, 'Create Tamed Pet', 'Discover Taxi', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Enchant Item Prismatic', 'Create Item 2', 'Milling', 'Allow Rename Pet', null, 'Talent Spec Count',
|
||||
/*162-164*/ 'Talent Spec Select', null, 'Remove Aura'
|
||||
/*102+ */ 'Dismiss Pet', 'Give Reputation', 'Summon Object (Trap)', 'Summon Object (Battle S.)','Summon Object (#3)', 'Summon Object (#4)',
|
||||
/*108+ */ 'Dispel Mechanic', 'Summon Dead Pet', 'Destroy All Totems', 'Durability Damage - Flat', 'Summon Demon', 'Resurrect with Flat Health',
|
||||
/*114+ */ 'Taunt', 'Durability Damage - %', 'Skin Player Corpse (PvP)', 'AoE Resurrect with % Health','Learn Skill', 'Apply Area Aura - Pet',
|
||||
/*120+ */ 'Teleport to Graveyard', 'Normalized Weapon Damage', null, 'Take Flight Path', 'Pull Towards', 'Modify Threat - %',
|
||||
/*126+ */ 'Spell Steal ', 'Prospect', 'Apply Area Aura - Friend', 'Apply Area Aura - Enemy', 'Redirect Done Threat %', 'Play Sound',
|
||||
/*132+ */ 'Play Music', 'Unlearn Specialization', 'Kill Credit2', 'Call Pet', 'Heal for % of Total Health','Give % of Total Power',
|
||||
/*138+ */ 'Leap Back', 'Abandon Quest', 'Force Cast', 'Force Spell Cast with Value','Trigger Spell with Value','Apply Area Aura - Pet Owner',
|
||||
/*144+ */ 'Knockback to Dest.', 'Pull Towards Dest.', 'Activate Rune', 'Fail Quest', null, 'Charge to Dest',
|
||||
/*150+ */ 'Start Quest', 'Trigger Spell 2', 'Summon - Refer-A-Friend', 'Create Tamed Pet', 'Discover Flight Path', 'Dual Wield 2H Weapons',
|
||||
/*156+ */ 'Add Socket to Item', 'Create Tradeskill Item', 'Milling', 'Rename Pet', null, 'Change Talent Spec. Count',
|
||||
/*162-167*/ 'Activate Talent Spec.', null, 'Remove Aura', null, null, 'Update Player Phase'
|
||||
),
|
||||
'unkAura' => '未知光环',
|
||||
'auras' => array(
|
||||
/*0- */ '无', 'Bind Sight', 'Mod Possess', 'Periodic Damage', 'Dummy',
|
||||
/*5+ */ 'Mod Confuse', 'Mod Charm', 'Mod Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done Flat', 'Mod Damage Taken Flat',
|
||||
'Damage Shield', 'Mod Stealth', 'Mod Stealth Detection', 'Mod Invisibility', 'Mod Invisibility Detection',
|
||||
'Mod Health Percent', 'Mod Power Percent', 'Mod Resistance Flat', 'Periodic Trigger Spell', 'Periodic Energize',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat Flat',
|
||||
'Mod Skill', 'Mod Increase Speed', 'Mod Increase Mounted Speed', 'Mod Decrease Speed', 'Mod Increase Health',
|
||||
'Mod Increase Power', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'School Immunity',
|
||||
'Damage Immunity', 'Dispel Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Mod Parry Skill', 'Mod Parry Percent', null, 'Mod Dodge Percent',
|
||||
/*50+ */ 'Mod Critical Healing Amount', 'Mod Block Percent', 'Mod Physical Crit Percent', 'Periodic Health Leech', 'Mod Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Mod Increase Swim Speed', 'Mod Damage Done Versus Creature',
|
||||
'Pacify Silence', 'Mod Scale', 'Periodic Health Funnel', 'Periodic Mana Funnel', 'Periodic Mana Leech',
|
||||
'Mod Casting Speed (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'School Absorb',
|
||||
'Extra Attacks', 'Mod Spell Crit Chance School', 'Mod Power Cost School Percent', 'Mod Power Cost School Flat', 'Reflect Spells School',
|
||||
/*75+ */ 'Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done Percent',
|
||||
'Mod Stat Percent', 'Split Damage Percent', 'Water Breathing', 'Mod Base Resistance Flat', 'Mod Health Regeneration',
|
||||
'Mod Power Regeneration', 'Channel Death Item', 'Mod Damage Taken Percent', 'Mod Health Regeneration Percent', 'Periodic Damage Percent',
|
||||
'Mod Resist Chance', 'Mod Detect Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Regeneration',
|
||||
'Ghost', 'Spell Magnet', 'Mana Shield', 'Mod Skill Value', 'Mod Attack Power',
|
||||
/*100+ */ 'Auras Visible', 'Mod Resistance Percent', 'Mod Melee Attack Power Versus', 'Mod Total Threat', 'Water Walk',
|
||||
'Feather Fall', 'Hover', 'Add Flat Modifier', 'Add Percent Modifier', 'Add Target Trigger',
|
||||
'Mod Power Regeneration Percent', 'Add Caster Hit Trigger', 'Override Class Scripts', 'Mod Ranged Damage Taken Flat', 'Mod Ranged Damage Taken Percent',
|
||||
'Mod Healing', 'Mod Regeneration During Combat', 'Mod Mechanic Resistance', 'Mod Healing Taken Percent', 'Share Pet Tracking',
|
||||
'Untrackable', 'Empathy', 'Mod Offhand Damage Percent', 'Mod Target Resistance', 'Mod Ranged Attack Power',
|
||||
/*125+ */ 'Mod Melee Damage Taken Flat', 'Mod Melee Damage Taken Percent', 'Ranged Attack Power Attacker Bonus', 'Possess Pet', 'Mod Speed Always',
|
||||
'Mod Mounted Speed Always', 'Mod Ranged Attack Power Versus', 'Mod Increase Energy Percent', 'Mod Increase Health Percent', 'Mod Mana Regeneration Interrupt',
|
||||
'Mod Healing Done Flat', 'Mod Healing Done Percent', 'Mod Total Stat Percentage', 'Mod Melee Haste', 'Force Reaction',
|
||||
'Mod Ranged Haste', 'Mod Ranged Ammo Haste', 'Mod Base Resistance Percent', 'Mod Resistance Exclusive', 'Safe Fall',
|
||||
'Mod Pet Talent Points', 'Allow Tame Pet Type', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback',
|
||||
/*150+ */ 'Mod Shield Blockvalue Percent', 'Track Stealthed', 'Mod Detected Range', 'Split Damage Flat', 'Mod Stealth Level',
|
||||
'Mod Water Breathing', 'Mod Reputation Gain', 'Pet Damage Multi', 'Mod Shield Blockvalue', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regeneration In Combat', 'Power Burn Mana', 'Mod Crit Damage Bonus', null,
|
||||
'Melee Attack Power Attacker Bonus', 'Mod Attack Power Percent', 'Mod Ranged Attack Power Percent', 'Mod Damage Done Versus', 'Mod Crit Percent Versus',
|
||||
'Change Model', 'Mod Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Damage Of Stat Percent',
|
||||
/*175+ */ 'Mod Spell Healing Of Stat Percent', 'Spirit Of Redemption', 'AoE Charm', 'Mod Debuff Resistance', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Damage Versus', null, 'Mod Resistance Of Stat Percent', 'Mod Critical Threat', 'Mod Attacker Melee Hit Chance',
|
||||
/*0- */ '无', 'Bind Sight', 'Possess', 'Periodic Damage - Flat', 'Dummy',
|
||||
/*5+ */ 'Confuse', 'Charm', 'Fear', 'Periodic Heal', 'Mod Attack Speed',
|
||||
'Mod Threat', 'Taunt', 'Stun', 'Mod Damage Done - Flat', 'Mod Damage Taken - Flat',
|
||||
'Damage Shield', 'Stealth', 'Mod Stealth Detection Level', 'Invisibility', 'Mod Invisibility Detection Level',
|
||||
'Regenerate Health - %', 'Regenerate Power - %', 'Mod Resistance - Flat', 'Periodically Trigger Spell', 'Periodically Give Power',
|
||||
/*25+ */ 'Pacify', 'Root', 'Silence', 'Reflect Spells', 'Mod Stat - Flat',
|
||||
'Mod Skill - Temporary', 'Increase Run Speed %', 'Mod Mounted Speed %', 'Decrease Run Speed %', 'Mod Maximum Health - Flat',
|
||||
'Mod Maximum Power - Flat', 'Shapeshift', 'Spell Effect Immunity', 'Spell Aura Immunity', 'Spell School Immunity',
|
||||
'Damage Immunity', 'Dispel Type Immunity', 'Proc Trigger Spell', 'Proc Trigger Damage', 'Track Creatures',
|
||||
'Track Resources', 'Ignore All Gear', 'Mod Parry %', null, 'Mod Dodge %',
|
||||
/*50+ */ 'Mod Critical Healing Amount %', 'Mod Block %', 'Mod Physical Crit Chance', 'Periodically Drain Health', 'Mod Physical Hit Chance',
|
||||
'Mod Spell Hit Chance', 'Transform', 'Mod Spell Crit Chance', 'Increase Swim Speed %', 'Mod Damage Done Versus Creature',
|
||||
'Pacify & Silence', 'Mod Size %', 'Periodically Transfer Health', 'Periodic Transfer Power', 'Periodic Drain Power',
|
||||
'Mod Spell Haste % (not stacking)', 'Feign Death', 'Disarm', 'Stalked', 'Mod Absorb School Damage',
|
||||
'Extra Attacks', 'Mod Spell School Crit Chance', 'Mod Spell School Power Cost - %', 'Mod Spell School Power Cost - Flat', 'Reflect Spells School From School',
|
||||
/*75+ */ 'Force Language', 'Far Sight', 'Mechanic Immunity', 'Mounted', 'Mod Damage Done - %',
|
||||
'Mod Stat - %', 'Split Damage - %', 'Underwater Breathing', 'Mod Base Resistance - Flat', 'Mod Health Regeneration - Flat',
|
||||
'Mod Power Regeneration - Flat', 'Create Item on Death', 'Mod Damage Taken - %', 'Mod Health Regeneration - %', 'Periodic Damage - %',
|
||||
'Mod Resist Chance', 'Mod Aggro Range', 'Prevent Fleeing', 'Unattackable', 'Interrupt Power Decay',
|
||||
'Ghost', 'Spell Magnet', 'Absorb Damage - Mana Shield', 'Mod Skill Value', 'Mod Attack Power - Flat',
|
||||
/*100+ */ 'Always Show Debuffs', 'Mod Resistance - %', 'Mod Melee Attack Power vs Creature', 'Mod Total Threat - Temporary', 'Water Walking',
|
||||
'Feather Fall', 'Levitate / Hover', 'Add Modifier - Flat', 'Add Modifier - %', 'Proc Spell on Target',
|
||||
'Mod Power Regeneration - %', 'Intercept % of Attacks Against Target','Override Class Script', 'Mod Ranged Damage Taken - Flat', 'Mod Ranged Damage Taken - %',
|
||||
'Mod Healing Taken - Flat', 'Allow % of Health Regen During Combat','Mod Mechanic Resistance', 'Mod Healing Taken - %', 'Share Pet Tracking',
|
||||
'Untrackable', 'Beast Lore', 'Mod Offhand Damage Done %', 'Mod Target Resistance - Flat', 'Mod Ranged Attack Power - Flat',
|
||||
/*125+ */ 'Mod Melee Damage Taken - Flat', 'Mod Melee Damage Taken - %', 'Mod Attacker Ranged Attack Power', 'Possess Pet', 'Increase Run Speed % - Stacking',
|
||||
'Incerase Mounted Speed % - Stacking', 'Mod Ranged Attack Power vs Creature', 'Mod Maximum Power - %', 'Mod Maximum Health - %', 'Allow % of Mana Regen During Combat',
|
||||
'Mod Healing Done - Flat', 'Mod Healing Done - %', 'Mod Stat - %', 'Mod Melee Haste %', 'Force Reputation',
|
||||
'Mod Ranged Haste %', 'Mod Ranged Ammo Haste %', 'Mod Base Resistance - %', 'Mod Resistance - Flat (not stacking)', 'Safe Fall',
|
||||
'Increase Pet Talent Points', 'Allow Exotic Pets Taming', 'Mechanic Immunity Mask', 'Retain Combo Points', 'Reduce Pushback Time %',
|
||||
/*150+ */ 'Mod Shield Block Value - %', 'Track Stealthed', 'Mod Player Aggro Range', 'Split Damage - Flat', 'Mod Stealth Level',
|
||||
'Mod Underwater Breathing %', 'Mod All Reputation Gained by %', 'Done Pet Damage Multiplier', 'Mod Shield Block Value - Flat', 'No PvP Credit',
|
||||
'Mod AoE Avoidance', 'Mod Health Regen During Combat', 'Mana Burn', 'Mod Melee Critical Damage %', null,
|
||||
'Mod Attacker Melee Attack Power', 'Mod Melee Attack Power - %', 'Mod Ranged Attack Power - %', 'Mod Damage Done vs Creature', 'Mod Crit Chance vs Creature',
|
||||
'Change Object Visibility for Player', 'Mod Run Speed (not stacking)', 'Mod Mounted Speed (not stacking)', null, 'Mod Spell Power by % of Stat',
|
||||
/*175+ */ 'Mod Healing Power by % of Stat', 'Spirit of Redemption', 'AoE Charm', 'Mod Debuff Resistance - %', 'Mod Attacker Spell Crit Chance',
|
||||
'Mod Spell Power vs Creature', null, 'Mod Resistance by % of Stat', 'Mod Threat % of Critical Hits', 'Mod Attacker Melee Hit Chance',
|
||||
'Mod Attacker Ranged Hit Chance', 'Mod Attacker Spell Hit Chance', 'Mod Attacker Melee Crit Chance', 'Mod Attacker Ranged Crit Chance', 'Mod Rating',
|
||||
'Mod Faction Reputation Gain', 'Use Normal Movement Speed', 'Mod Melee Ranged Haste', 'Mod Haste', 'Mod Target Absorb School',
|
||||
'Mod Target Ability Absorb School', 'Mod Cooldown', 'Mod Attacker Spell And Weapon Crit Chance', null, 'Mod Increases Spell Percent to Hit',
|
||||
/*200+ */ 'Mod XP Percent', 'Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage', 'Mod Attacker Ranged Crit Damage',
|
||||
'Mod School Crit Damage Taken', 'Mod Increase Vehicle Flight Speed', 'Mod Increase Mounted Flight Speed', 'Mod Increase Flight Speed', 'Mod Mounted Flight Speed Always',
|
||||
'Mod Vehicle Speed Always', 'Mod Flight Speed (not stacking)', 'Mod Ranged Attack Power Of Stat Percent', 'Mod Rage from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Haste Spells', 'Killing Spree', 'Haste Ranged', 'Mod Mana Regeneration from Stat',
|
||||
'Mod Rating from Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge With Value', 'Periodic Dummy', 'Periodic Trigger Spell With Value', 'Detect Stealth', 'Mod AoE Damage Avoidance',
|
||||
'Mod Increase Health', 'Proc Trigger Spell With Value', 'Mod Mechanic Duration', 'Mod Display Model', 'Mod Mechanic Duration (not stacking)',
|
||||
'Mod Dispel Resist', 'Control Vehicle', 'Mod Spell Damage Of Attack Power', 'Mod Spell Healing Of Attack Power', 'Mod Scale 2',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell Damage from Healing', 'Mod Faction', 'Comprehend Language',
|
||||
'Mod Aura Duration By Dispel', 'Mod Aura Duration By Dispel (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Increase Health 2', 'Mod Enemy Dodge', 'Mod Speed Slow All', 'Mod Block Crit Chance', 'Mod Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken Percent', 'No Reagent Use', 'Mod Target Resist By Spell Class', 'Mod Spell Visual', 'Mod HoT Percent',
|
||||
'Mod Reputation Gained %', 'Limit Movement Speed', 'Mod Attack Speed %', 'Mod Haste % (gain)', 'Mod Target School Absorb %',
|
||||
'Mod Target School Absorb for Ability', 'Mod Cooldowns', 'Mod Attacker Crit Chance', null, 'Mod Spell Hit Chance',
|
||||
/*200+ */ 'Mod Kill Experience Gained %', 'Can Fly', 'Ignore Combat Result', 'Mod Attacker Melee Crit Damage %', 'Mod Attacker Ranged Crit Damage %',
|
||||
'Mod Attacker Spell Crit Damage %', 'Mod Vehicle Flight Speed %', 'Mod Mounted Flight Speed %', 'Mod Flight Speed %', 'Mod Mounted Flight Speed % (always)',
|
||||
'Mod Vehicle Speed % (always)', 'Mod Flight Speed % (not stacking)', 'Mod Ranged Attack Power by % of Stat', 'Mod Rage Generated from Damage Dealt', 'Tamed Pet Passive',
|
||||
'Arena Preparation', 'Mod Spell Haste %', 'Killing Spree', 'Mod Ranged Haste %', 'Mod Mana Regeneration by % of Stat',
|
||||
'Mod Combat Rating by % of Stat', 'Ignore Threat', null, 'Raid Proc from Charge', null,
|
||||
/*225+ */ 'Raid Proc from Charge with Value', 'Periodic Dummy', 'Periodically Trigger Spell with Value','Detect Stealth', 'Mod AoE Damage Taken %',
|
||||
'Mod Maximum Health - Flat (no stacking)','Proc Trigger Spell with Value', 'Mod Mechanic Duration %', 'Change other Humanoid Display', 'Mod Mechanic Duration % (not stacking)',
|
||||
'Mod Dispel Resistance %', 'Control Vehicle', 'Mod Spell Power by % of Attack Power', 'Mod Healing Power by % of Attack Power','Mod Size % (not stacking)',
|
||||
'Mod Expertise', 'Force Move Forward', 'Mod Spell & Healing Power by % of Int','Faction Override', 'Comprehend Language',
|
||||
'Mod Aura Duration by Dispel Type', 'Mod Aura Duration by Dispel Type (not stacking)', 'Clone Caster', 'Mod Combat Result Chance', 'Convert Rune',
|
||||
/*250+ */ 'Mod Maximum Health - Flat (stacking)', 'Mod Enemy Dodge Chance', 'Mod Haste % (loss)', 'Mod Critical Block Chance', 'Disarm Offhand',
|
||||
'Mod Mechanic Damage Taken %', 'No Reagent Cost', 'Mod Target Resistance by Spell Class', 'Mod Spell Visual', 'Mod Periodic Healing Taken %',
|
||||
'Screen Effect', 'Phase', 'Ability Ignore Aurastate', 'Allow Only Ability', null,
|
||||
null, null, 'Mod Immune Aura Apply School', 'Mod Attack Power Of Stat Percent', 'Mod Ignore Target Resist',
|
||||
'Mod Ability Ignore Target Resist', 'Mod Damage Taken Percent From Caster', 'Ignore Melee Reset', 'X Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ignore Shapeshift', 'Mod Mechanic Damage Done Percent', 'Mod Max Affected Targets', 'Mod Disarm Ranged', 'Initialize Images',
|
||||
'Mod Armor Penetration Percent', 'Mod Honor Gain Percent', 'Mod Base Health Percent', 'Mod Healing Received', 'Linked',
|
||||
'Mod Attack Power Of Armor', 'Ability Periodic Crit', 'Deflect Spells', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Percent', 'Mod XP Quest Percent', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Block Spell Family', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage Percent', 'School Heal Absorb', null, 'Mod Damage Done Versus Aurastate', 'Mod Fake Inebriate',
|
||||
'Mod Minimum Speed', null, 'Heal Absorb Test', 'Hunter Trap', null,
|
||||
'Mod Creature AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
null, null, 'Cancel Aura Buffer at % of Caster Health','Mod Attack Power by % of Stat', 'Ignore Target Resistance',
|
||||
'Ignore Target Resistance for Ability', 'Mod Damage Taken % from Caster', 'Ignore Swing Timer Reset', 'X-Ray', 'Ability Consume No Ammo',
|
||||
/*275+ */ 'Mod Ability Ignore Shapeshift', 'Mod Mechanic Damage Done %', 'Mod Max Affected Targets', 'Disarm Ranged Weapon', 'Spawn Effect',
|
||||
'Mod Armor Penetration %', 'Mod Honor Gain %', 'Mod Base Health %', 'Mod Healing Taken % from Caster', 'Linked Aura',
|
||||
'Mod Attack Power by School Resistance','Allow Periodic Ability to Crit', 'Mod Spell Deflect Chance', 'Ignore Hit Direction', null,
|
||||
'Mod Crit Chance', 'Mod Quest Experience Gained %', 'Open Stable', 'Override Spells', 'Prevent Power Regeneration',
|
||||
null, 'Set Vehicle Id', 'Spirit Burst', 'Strangulate', null,
|
||||
/*300+ */ 'Share Damage %', 'Mod Absorb School Healing', null, 'Mod Damage Done vs Aurastate - %', 'Fake Inebriate',
|
||||
'Mod Minimum Speed %', null, 'Heal Absorb Test', 'Mod Critical Strike Chance for Caster',null,
|
||||
'Mod Pet AoE Damage Avoidance', null, null, null, 'Prevent Ressurection',
|
||||
/* -316*/ 'Underwater Walking', 'Periodic Haste'
|
||||
)
|
||||
),
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@ class SpellPage extends GenericPage
|
|||
$this->powerCost = $this->subject->createPowerCostForCurrent();
|
||||
$this->castTime = $this->subject->createCastTimeForCurrent(false, false);
|
||||
$this->name = $this->subject->getField('name', true);
|
||||
$this->headIcons = [$this->subject->getField('iconString'), $this->subject->getField('stackAmount')];
|
||||
$this->headIcons = [$this->subject->getField('iconString'), $this->subject->getField('stackAmount') ?: ($this->subject->getField('procCharges') > 1 ? $this->subject->getField('procCharges') : '')];
|
||||
$this->level = $this->subject->getField('spellLevel');
|
||||
$this->rangeName = $this->subject->getField('rangeText', true);
|
||||
$this->range = $this->subject->getField('rangeMaxHostile');
|
||||
|
|
@ -352,7 +352,7 @@ class SpellPage extends GenericPage
|
|||
}
|
||||
}
|
||||
|
||||
// tab: modifies $this
|
||||
// tab: [$this] modifies
|
||||
$sub = ['OR'];
|
||||
$conditions = [
|
||||
['s.typeCat', [0, -9, -8], '!'], // uncategorized (0), GM (-9), NPC-Spell (-8); NPC includes totems, lightwell and others :/
|
||||
|
|
@ -362,8 +362,8 @@ class SpellPage extends GenericPage
|
|||
|
||||
for ($i = 1; $i < 4; $i++)
|
||||
{
|
||||
// Flat Mods (107), Pct Mods (108), No Reagent Use (256) .. include dummy..? (4)
|
||||
if (!in_array($this->subject->getField('effect'.$i.'AuraId'), [107, 108, 256, 286 /*, 4*/]))
|
||||
// include dummy..? (4)
|
||||
if (!in_array($this->subject->getField('effect'.$i.'AuraId'), [107, 108, 256, 286, 195, 262, 263, 272, 274, 275, 316 /*, 4*/]))
|
||||
continue;
|
||||
|
||||
$m1 = $this->subject->getField('effect1SpellClassMask'.$j[$i]);
|
||||
|
|
@ -399,7 +399,7 @@ class SpellPage extends GenericPage
|
|||
}
|
||||
}
|
||||
|
||||
// tab: modified by $this
|
||||
// tab: [$this is] modified by
|
||||
$sub = ['OR'];
|
||||
$conditions = [
|
||||
['s.spellFamilyId', $this->subject->getField('spellFamilyId')],
|
||||
|
|
@ -417,7 +417,7 @@ class SpellPage extends GenericPage
|
|||
|
||||
$sub[] = array(
|
||||
'AND',
|
||||
['s.effect'.$i.'AuraId', [107, 108, 256, 286 /*, 4*/]],
|
||||
['s.effect'.$i.'AuraId', [107, 108, 256, 286, 195, 262, 263, 272, 274, 275, 316 /*, 4*/]],
|
||||
[
|
||||
'OR',
|
||||
['s.effect1SpellClassMask'.$j[$i], $m1, '&'],
|
||||
|
|
@ -1616,7 +1616,10 @@ class SpellPage extends GenericPage
|
|||
}
|
||||
|
||||
// Effect Name
|
||||
$foo['name'] = (User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'EffectId: '.$effId, Lang::spell('effects', $effId)) : Lang::spell('effects', $effId)).Lang::main('colon');
|
||||
if ($_ = Lang::spell('effects', $effId))
|
||||
$foo['name'] = (User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'EffectId: '.$effId, $_) : Lang::spell('effects', $effId)).Lang::main('colon');
|
||||
else
|
||||
$foo['name'] = 'Unknow Effect (#'.$effId.')';
|
||||
|
||||
if ($this->subject->getField('effect'.$i.'RadiusMax') > 0)
|
||||
$foo['radius'] = $this->subject->getField('effect'.$i.'RadiusMax');
|
||||
|
|
@ -1839,6 +1842,7 @@ class SpellPage extends GenericPage
|
|||
case 35: // Mod Increase Power
|
||||
case 85: // Mod Power Regeneration
|
||||
case 110: // Mod Power Regeneration Pct
|
||||
case 132: // Mod Increase Energy Percent
|
||||
if ($_ = Lang::spell('powerTypes', $effMV))
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').$effMV, $_) : $_;
|
||||
|
||||
|
|
@ -1966,6 +1970,13 @@ class SpellPage extends GenericPage
|
|||
case 310: // Mod Creature AoE Damage Avoidance
|
||||
case 237: // Mod Spell Damage Of Attack Power
|
||||
case 238: // Mod Spell Healing Of Attack Power
|
||||
case 242: // Mod Spell & Healing Power by % of Int
|
||||
case 259: // Mod Periodic Healing Taken %
|
||||
case 267: // Cancel Aura Buffer at % of Caster Health
|
||||
case 269: // Ignore Target Resistance
|
||||
case 285: // Mod Attack Power by School Resistance
|
||||
case 300: // Share Damage %
|
||||
case 301: // Mod Absorb School Healing
|
||||
if ($_ = Lang::getMagicSchools($effMV))
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').Util::asHex($effMV), $_) : $_;
|
||||
|
||||
|
|
@ -1983,11 +1994,6 @@ class SpellPage extends GenericPage
|
|||
if ($_ = Lang::spell('spellModOp', $effMV))
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').$effMV, $_) : $_;
|
||||
|
||||
break;
|
||||
case 132: // Mod Increase Energy Percent
|
||||
if ($_ = Lang::spell('powerTypes', $effMV))
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').$effMV, $_) : $_;
|
||||
|
||||
break;
|
||||
case 189: // Mod Rating
|
||||
case 220: // Combat Rating From Stat
|
||||
|
|
@ -2015,8 +2021,20 @@ class SpellPage extends GenericPage
|
|||
|
||||
break;
|
||||
case 249: // Convert Rune
|
||||
$from = $effMV;
|
||||
if ($_ = Lang::spell('powerRunes', $effMV))
|
||||
$from = $_;
|
||||
|
||||
$to = $effMVB;
|
||||
if ($_ = Lang::spell('powerRunes', $effMVB))
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValueB'.Lang::main('colon').$effMVB, $_) : $_;
|
||||
$to = $_;
|
||||
|
||||
if (User::isInGroup(U_GROUP_EMPLOYEE))
|
||||
$bar = sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').$effMV, $from).' => '.sprintf(Util::$dfnString, 'MiscValueB'.Lang::main('colon').$effMVB, $to);
|
||||
else
|
||||
$bar = $from.' => '.$to;
|
||||
|
||||
$effMVB = 0;
|
||||
|
||||
break;
|
||||
case 78: // Mounted
|
||||
|
|
@ -2041,9 +2059,9 @@ class SpellPage extends GenericPage
|
|||
if ($so = DB::Aowow()->selectRow('SELECT spellId1, spellId2, spellId3, spellId4, spellId5 FROM ?_spelloverride WHERE id = ?d', $effMV))
|
||||
{
|
||||
$buff = [];
|
||||
for ($i = 1; $i < 6; $i++)
|
||||
for ($j = 1; $j < 6; $j++)
|
||||
{
|
||||
if ($x = $so['spellId'.$i])
|
||||
if ($x = $so['spellId'.$j])
|
||||
{
|
||||
$this->extendGlobalData([TYPE_SPELL => [$x]]);
|
||||
$buff[] = '[spell='.$x.']';
|
||||
|
|
@ -2052,6 +2070,40 @@ class SpellPage extends GenericPage
|
|||
$foo['markup'] = implode(', ', $buff);
|
||||
}
|
||||
break;
|
||||
case 202: // Ignore Combat Result
|
||||
case 248: // Mod Combat Result Chance
|
||||
$what = '';
|
||||
switch ($effMV)
|
||||
{
|
||||
case 2: // Dodged
|
||||
$what = Lang::spell('combatRating', 2);
|
||||
break;
|
||||
case 3: // Blocked
|
||||
$what = Lang::spell('combatRating', 4);
|
||||
break;
|
||||
case 4: // Parried
|
||||
$what = Lang::spell('combatRating', 3);
|
||||
break;
|
||||
case 0; // Evaded
|
||||
case 1: // Missed
|
||||
case 5: // Glanced
|
||||
case 6: // Crited'ed..ed
|
||||
case 7: // Crushed
|
||||
case 8: // Regular
|
||||
default:
|
||||
trigger_error('hitero unused case #'.$effMV.' found for aura 202');
|
||||
}
|
||||
|
||||
if ($what)
|
||||
$bar = User::isInGroup(U_GROUP_EMPLOYEE) ? sprintf(Util::$dfnString, 'MiscValue'.Lang::main('colon').$effMV, $what) : $what;
|
||||
|
||||
break;
|
||||
case 233: // Change other Humanoid Display
|
||||
case 273: // X-Ray
|
||||
case 304: // Fake Inebriate
|
||||
$bar = ' ('.Lang::game('npc').' #'.$effMV.')';
|
||||
if ($n = CreatureList::getName($effMV))
|
||||
$bar = ' (<a href="?npc='.$effMV.'">'.$n.'</a>)';
|
||||
}
|
||||
$foo['name'] .= strstr($bar, 'href') || strstr($bar, '#') ? $bar : ($bar ? ' ('.$bar.')' : null);
|
||||
|
||||
|
|
|
|||
|
|
@ -448,10 +448,10 @@ class SpellsPage extends GenericPage
|
|||
$visibleCols[] = 'reagents';
|
||||
if (!($mask & 0x2) && $this->category && !in_array($this->category[0], [9, 11]))
|
||||
$hiddenCols[] = 'skill';
|
||||
if (($mask & 0x4))
|
||||
if ($mask & 0x4)
|
||||
$visibleCols[] = 'trainingcost';
|
||||
if (($mask & 0x8) && !in_array('classes', $visibleCols))
|
||||
$visibleCols[] = 'singleclass';
|
||||
if (($mask & 0x8) && !in_array('singleclass', $visibleCols))
|
||||
$visibleCols[] = 'classes';
|
||||
|
||||
|
||||
if ($visibleCols)
|
||||
|
|
|
|||
|
|
@ -2496,8 +2496,9 @@ CREATE TABLE `aowow_spell` (
|
|||
`typeCat` smallint(6) NOT NULL,
|
||||
`stanceMask` int(10) unsigned NOT NULL,
|
||||
`stanceMaskNot` int(10) unsigned NOT NULL,
|
||||
`targets` mediumint(8) unsigned NOT NULL,
|
||||
`spellFocusObject` smallint(5) unsigned NOT NULL,
|
||||
`castTime` mediumint(8) unsigned NOT NULL,
|
||||
`castTime` float unsigned NOT NULL,
|
||||
`recoveryTime` int(10) unsigned NOT NULL,
|
||||
`recoveryCategory` int(10) unsigned NOT NULL,
|
||||
`startRecoveryTime` mediumint(8) unsigned NOT NULL,
|
||||
|
|
@ -2511,7 +2512,7 @@ CREATE TABLE `aowow_spell` (
|
|||
`spellLevel` tinyint(3) unsigned NOT NULL,
|
||||
`talentLevel` tinyint(3) unsigned NOT NULL,
|
||||
`duration` int(16) NOT NULL DEFAULT 0,
|
||||
`powerType` tinyint(4) NOT NULL,
|
||||
`powerType` smallint(5) NOT NULL,
|
||||
`powerCost` smallint(5) unsigned NOT NULL,
|
||||
`powerCostPerLevel` tinyint(3) unsigned NOT NULL,
|
||||
`powerCostPercent` tinyint(3) unsigned NOT NULL,
|
||||
|
|
@ -3091,7 +3092,7 @@ UNLOCK TABLES;
|
|||
|
||||
LOCK TABLES `aowow_dbversion` WRITE;
|
||||
/*!40000 ALTER TABLE `aowow_dbversion` DISABLE KEYS */;
|
||||
INSERT INTO `aowow_dbversion` VALUES (1527343033,0,NULL,NULL);
|
||||
INSERT INTO `aowow_dbversion` VALUES (1528316366,0,NULL,NULL);
|
||||
/*!40000 ALTER TABLE `aowow_dbversion` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ class DBC
|
|||
'soundambience' => 'nii',
|
||||
'soundemitters' => 'nffxxxxiix',
|
||||
'soundentries' => 'nisssssssssssxxxxxxxxxxsxixxxx',
|
||||
'spell' => 'niiiuuuuuuuuixixxxixxxxxxxxxiiixxxxiiiiiiiiiiiixxiiiiiiiiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiifffiiiiiiiiiiiiixsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxiiiiiiiiiixxfffxxxiixiixifffii',
|
||||
'spell' => 'niiiuuuuuuuuixixixixxxxxxxxxiiixxxxiiiiiiiiiiiixxiiiiiiiiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiifffiiiiiiiiiiiiixsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxsxsssxsxsxxxxxxxxiiiiiiiiiixxfffxxxiixiixifffii',
|
||||
'spellcasttimes' => 'nixx',
|
||||
'spelldescriptionvariables' => 'ns',
|
||||
'spelldifficulty' => 'xiiii',
|
||||
|
|
@ -210,7 +210,7 @@ class DBC
|
|||
'soundambience' => 'id,soundIdDay,soundIdNight',
|
||||
'soundemitters' => 'id,posY,posX,soundId,mapId',
|
||||
'soundentries' => 'id,type,name,file1,file2,file3,file4,file5,file6,file7,file8,file9,file10,path,flags',
|
||||
'spell' => 'id,category,dispelType,mechanic,attributes0,attributes1,attributes2,attributes3,attributes4,attributes5,attributes6,attributes7,stanceMask,stanceMaskNot,spellFocus,castTimeId,recoveryTime,recoveryTimeCategory,procChance,procCharges,maxLevel,baseLevel,spellLevel,durationId,powerType,powerCost,powerCostPerLevel,powerPerSecond,powerPerSecondPerLevel,rangeId,stackAmount,tool1,tool2,reagent1,reagent2,reagent3,reagent4,reagent5,reagent6,reagent7,reagent8,reagentCount1,reagentCount2,reagentCount3,reagentCount4,reagentCount5,reagentCount6,reagentCount7,reagentCount8,equippedItemClass,equippedItemSubClassMask,equippedItemInventoryTypeMask,effect1Id,effect2Id,effect3Id,effect1DieSides,effect2DieSides,effect3DieSides,effect1RealPointsPerLevel,effect2RealPointsPerLevel,effect3RealPointsPerLevel,effect1BasePoints,effect2BasePoints,effect3BasePoints,effect1Mechanic,effect2Mechanic,effect3Mechanic,effect1ImplicitTargetA,effect2ImplicitTargetA,effect3ImplicitTargetA,effect1ImplicitTargetB,effect2ImplicitTargetB,effect3ImplicitTargetB,effect1RadiusId,effect2RadiusId,effect3RadiusId,effect1AuraId,effect2AuraId,effect3AuraId,effect1Periode,effect2Periode,effect3Periode,effect1ValueMultiplier,effect2ValueMultiplier,effect3ValueMultiplier,effect1ChainTarget,effect2ChainTarget,effect3ChainTarget,effect1CreateItemId,effect2CreateItemId,effect3CreateItemId,effect1MiscValue,effect2MiscValue,effect3MiscValue,effect1MiscValueB,effect2MiscValueB,effect3MiscValueB,effect1TriggerSpell,effect2TriggerSpell,effect3TriggerSpell,effect1PointsPerComboPoint,effect2PointsPerComboPoint,effect3PointsPerComboPoint,effect1SpellClassMaskA,effect2SpellClassMaskA,effect3SpellClassMaskA,effect1SpellClassMaskB,effect2SpellClassMaskB,effect3SpellClassMaskB,effect1SpellClassMaskC,effect2SpellClassMaskC,effect3SpellClassMaskC,spellVisualId1,spellVisualId2,iconId,iconIdActive,name_loc0,name_loc2,name_loc3,name_loc4,name_loc6,name_loc8,rank_loc0,rank_loc2,rank_loc3,rank_loc4,rank_loc6,rank_loc8,description_loc0,description_loc2,description_loc3,description_loc4,description_loc6,description_loc8,buff_loc0,buff_loc2,buff_loc3,buff_loc4,buff_loc6,buff_loc8,powerCostPercent,startRecoveryCategory,startRecoveryTime,maxTargetLevel,spellFamilyId,spellFamilyFlags1,spellFamilyFlags2,spellFamilyFlags3,maxAffectedTargets,damageClass,effect1DamageMultiplier,effect2DamageMultiplier,effect3DamageMultiplier,toolCategory1,toolCategory2,schoolMask,runeCostId,powerDisplayId,effect1BonusMultiplier,effect2BonusMultiplier,effect3BonusMultiplier,spellDescriptionVariable,spellDifficulty',
|
||||
'spell' => 'id,category,dispelType,mechanic,attributes0,attributes1,attributes2,attributes3,attributes4,attributes5,attributes6,attributes7,stanceMask,stanceMaskNot,targets,spellFocus,castTimeId,recoveryTime,recoveryTimeCategory,procChance,procCharges,maxLevel,baseLevel,spellLevel,durationId,powerType,powerCost,powerCostPerLevel,powerPerSecond,powerPerSecondPerLevel,rangeId,stackAmount,tool1,tool2,reagent1,reagent2,reagent3,reagent4,reagent5,reagent6,reagent7,reagent8,reagentCount1,reagentCount2,reagentCount3,reagentCount4,reagentCount5,reagentCount6,reagentCount7,reagentCount8,equippedItemClass,equippedItemSubClassMask,equippedItemInventoryTypeMask,effect1Id,effect2Id,effect3Id,effect1DieSides,effect2DieSides,effect3DieSides,effect1RealPointsPerLevel,effect2RealPointsPerLevel,effect3RealPointsPerLevel,effect1BasePoints,effect2BasePoints,effect3BasePoints,effect1Mechanic,effect2Mechanic,effect3Mechanic,effect1ImplicitTargetA,effect2ImplicitTargetA,effect3ImplicitTargetA,effect1ImplicitTargetB,effect2ImplicitTargetB,effect3ImplicitTargetB,effect1RadiusId,effect2RadiusId,effect3RadiusId,effect1AuraId,effect2AuraId,effect3AuraId,effect1Periode,effect2Periode,effect3Periode,effect1ValueMultiplier,effect2ValueMultiplier,effect3ValueMultiplier,effect1ChainTarget,effect2ChainTarget,effect3ChainTarget,effect1CreateItemId,effect2CreateItemId,effect3CreateItemId,effect1MiscValue,effect2MiscValue,effect3MiscValue,effect1MiscValueB,effect2MiscValueB,effect3MiscValueB,effect1TriggerSpell,effect2TriggerSpell,effect3TriggerSpell,effect1PointsPerComboPoint,effect2PointsPerComboPoint,effect3PointsPerComboPoint,effect1SpellClassMaskA,effect2SpellClassMaskA,effect3SpellClassMaskA,effect1SpellClassMaskB,effect2SpellClassMaskB,effect3SpellClassMaskB,effect1SpellClassMaskC,effect2SpellClassMaskC,effect3SpellClassMaskC,spellVisualId1,spellVisualId2,iconId,iconIdActive,name_loc0,name_loc2,name_loc3,name_loc4,name_loc6,name_loc8,rank_loc0,rank_loc2,rank_loc3,rank_loc4,rank_loc6,rank_loc8,description_loc0,description_loc2,description_loc3,description_loc4,description_loc6,description_loc8,buff_loc0,buff_loc2,buff_loc3,buff_loc4,buff_loc6,buff_loc8,powerCostPercent,startRecoveryCategory,startRecoveryTime,maxTargetLevel,spellFamilyId,spellFamilyFlags1,spellFamilyFlags2,spellFamilyFlags3,maxAffectedTargets,damageClass,effect1DamageMultiplier,effect2DamageMultiplier,effect3DamageMultiplier,toolCategory1,toolCategory2,schoolMask,runeCostId,powerDisplayId,effect1BonusMultiplier,effect2BonusMultiplier,effect3BonusMultiplier,spellDescriptionVariable,spellDifficulty',
|
||||
'spellcasttimes' => 'id,baseTime',
|
||||
'spelldescriptionvariables' => 'id,vars',
|
||||
'spellduration' => 'id,baseTime',
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ function spell()
|
|||
Mechanic,
|
||||
Attributes, AttributesEx, AttributesEx2, AttributesEx3, AttributesEx4, AttributesEx5, AttributesEx6, AttributesEx7,
|
||||
Stances, StancesNot,
|
||||
Targets,
|
||||
0 AS spellFocus,
|
||||
CastingTimeIndex,
|
||||
0 AS recoveryTime, 0 AS recoveryTimeCategory,
|
||||
|
|
@ -127,8 +128,9 @@ function spell()
|
|||
0 AS cuFlags,
|
||||
0 AS typeCat,
|
||||
stanceMask, stanceMaskNot,
|
||||
targets,
|
||||
spellFocus,
|
||||
IFNULL(sct.baseTime, 0) AS castTime,
|
||||
IFNULL(sct.baseTime, 0) / 1000 AS castTime,
|
||||
recoveryTime, recoveryTimeCategory,
|
||||
startRecoveryTime, startRecoveryCategory,
|
||||
procChance, procCharges,
|
||||
|
|
@ -142,7 +144,7 @@ function spell()
|
|||
powerPerSecond,
|
||||
powerPerSecondPerLevel,
|
||||
IFNULL (src.runicPowerGain, 0) AS powerGainRunicPower,
|
||||
IF (src.id IS NULL, 0, (src.costBlood << 8) | (src.costUnholy << 4) | src.costFrost) AS powerCostRunes,
|
||||
IF (src.id IS NULL, 0, (src.costFrost << 8) | (src.costUnholy << 4) | src.costBlood) AS powerCostRunes,
|
||||
rangeId,
|
||||
stackAmount,
|
||||
tool1, tool2,
|
||||
|
|
|
|||
8
setup/updates/1528316365_01.sql
Normal file
8
setup/updates/1528316365_01.sql
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
DROP TABLE IF EXISTS `dbc_spell`;
|
||||
|
||||
ALTER TABLE `aowow_spell`
|
||||
ADD COLUMN `targets` MEDIUMINT UNSIGNED NOT NULL AFTER `stanceMaskNot`,
|
||||
CHANGE COLUMN `castTime` `castTime` FLOAT UNSIGNED NOT NULL AFTER `spellFocusObject`,
|
||||
CHANGE COLUMN `powerType` `powerType` SMALLINT NOT NULL AFTER `duration`;
|
||||
|
||||
UPDATE `aowow_dbversion` SET `sql` = CONCAT(IFNULL(`sql`, ''), ' spell');
|
||||
|
|
@ -316,26 +316,112 @@ var fi_filters = {
|
|||
],
|
||||
|
||||
spells: [
|
||||
{ id: 6, name: 'sepgeneral' },
|
||||
{ id: 1, name: 'manaenergyragecost', type: 'num' },
|
||||
{ id: 2, name: 'prcntbasemanarequired', type: 'num' },
|
||||
{ id: 14, name: 'id', type: 'num', before: 'name' },
|
||||
{ id: 15, name: 'icon', type: 'str' },
|
||||
{ id: 10, name: 'firstrank', type: 'yn' },
|
||||
{ id: 20, name: 'hasreagents', type: 'yn' },
|
||||
{ id: 12, name: 'lastrank', type: 'yn' },
|
||||
{ id: 13, name: 'rankno', type: 'num' },
|
||||
{ id: 19, name: 'scaling', type: 'yn' },
|
||||
{ id: 25, name: 'rewardsskillups', type: 'yn' },
|
||||
{ id: 3, name: 'requiresnearbyobject', type: 'yn' },
|
||||
{ id: 5, name: 'requiresprofspec', type: 'yn' },
|
||||
{ id: 9, name: 'source', type: 'spellsource' },
|
||||
{ id: 4, name: 'trainingcost', type: 'num' },
|
||||
{ id: 9999, name: 'sepgeneral' },
|
||||
{ id: 2, name: 'prcntbasemanarequired', type: 'num' },
|
||||
{ id: 116, name: 'onGlobalCooldown', type: 'yn' },
|
||||
{ id: 28, name: 'casttime', type: 'num' },
|
||||
{ id: 27, name: 'channeled', type: 'yn' },
|
||||
{ id: 40, name: 'damagetype', type: 'damagetype' },
|
||||
{ id: 109, name: 'effecttype', type: 'effecttype' },
|
||||
{ id: 29, name: 'appliesaura', type: 'effectauranames' },
|
||||
{ id: 15, name: 'icon', type: 'str' },
|
||||
{ id: 10, name: 'firstrank', type: 'yn' },
|
||||
{ id: 20, name: 'hasreagents', type: 'yn' },
|
||||
{ id: 14, name: 'id', type: 'num', before: 'name' },
|
||||
{ id: 12, name: 'lastrank', type: 'yn' },
|
||||
// { id: 22, name: 'proficiencytype', type: 'proficiencytype' }, // aowow - not used, pointless in wotlk
|
||||
{ id: 13, name: 'rankno', type: 'num' },
|
||||
{ id: 3, name: 'requiresnearbyobject', type: 'yn' },
|
||||
{ id: 5, name: 'requiresprofspec', type: 'yn' },
|
||||
{ id: 114, name: 'requiresfaction', type: 'side' },
|
||||
{ id: 1, name: 'manaenergyragecost', type: 'num' },
|
||||
{ id: 45, name: 'resourcetype', type: 'resourcetype' },
|
||||
{ id: 25, name: 'rewardsskillups', type: 'yn' },
|
||||
// { id: 110, name: 'scalingap', type: 'yn' }, // aowow - too complex for now
|
||||
{ id: 19, name: 'scaling', type: 'yn' },
|
||||
// { id: 111, name: 'scalingsp', type: 'yn' }, // aowow - too complex for now
|
||||
{ id: 9, name: 'source', type: 'spellsource' },
|
||||
{ id: 4, name: 'trainingcost', type: 'num' },
|
||||
{ id: 44, name: 'usableinarenas', type: 'yn' },
|
||||
// { id: 31, name: 'usablewhenshapeshifted', type: 'yn' }, // aowow - not used, pointless in wotlk
|
||||
|
||||
{ id: 7, name: 'sepcommunity' },
|
||||
{ id: 11, name: 'hascomments', type: 'yn' },
|
||||
{ id: 8, name: 'hasscreenshots', type: 'yn' },
|
||||
{ id: 17, name: 'hasvideos', type: 'yn' }
|
||||
{ id: 9999, name: 'sepattributes' },
|
||||
{ id: 69, name: 'harmful', type: 'yn' },
|
||||
{ id: 57, name: 'uncancellableaura', type: 'yn' },
|
||||
{ id: 51, name: 'hiddenaura', type: 'yn' },
|
||||
{ id: 95, name: 'bandagespell', type: 'yn' },
|
||||
{ id: 61, name: 'usabledead', type: 'yn' },
|
||||
{ id: 62, name: 'usablemounted', type: 'yn' },
|
||||
{ id: 64, name: 'usablesitting', type: 'yn' },
|
||||
{ id: 53, name: 'daytimeonly', type: 'yn' },
|
||||
{ id: 54, name: 'nighttimeonly', type: 'yn' },
|
||||
{ id: 55, name: 'indoorsonly', type: 'yn' },
|
||||
{ id: 56, name: 'outdoorsonly', type: 'yn' },
|
||||
{ id: 79, name: 'targetonlyplayer', type: 'yn' },
|
||||
{ id: 60, name: 'cannotavoid', type: 'yn' },
|
||||
{ id: 67, name: 'cannotreflect', type: 'yn' },
|
||||
{ id: 91, name: 'notinraid', type: 'yn' },
|
||||
{ id: 33, name: 'combatcastable', type: 'yn' },
|
||||
{ id: 34, name: 'chancetocrit', type: 'yn' },
|
||||
{ id: 35, name: 'chancetomiss', type: 'yn' },
|
||||
{ id: 66, name: 'channeled', type: 'yn' },
|
||||
{ id: 85, name: 'auratickswhileloggedout', type: 'yn' },
|
||||
{ id: 84, name: 'nolog', type: 'yn' },
|
||||
{ id: 68, name: 'usablestealthed', type: 'yn' },
|
||||
{ id: 81, name: 'doesntengagetarget', type: 'yn' },
|
||||
{ id: 77, name: 'doesntreqshapeshift', type: 'yn' },
|
||||
// { id: 46, name: 'disregardimmunity', type: 'yn' }, // aowow - unsure what to make of it
|
||||
{ id: 47, name: 'disregardschoolimmunity', type: 'yn' },
|
||||
{ id: 78, name: 'foodbuff', type: 'yn' },
|
||||
{ id: 71, name: 'nothreat', type: 'yn' },
|
||||
{ id: 52, name: 'onnextswingnpcs', type: 'yn' },
|
||||
{ id: 49, name: 'onnextswingplayers', type: 'yn' },
|
||||
{ id: 90, name: 'onlyarena', type: 'yn' },
|
||||
{ id: 92, name: 'paladinaura', type: 'yn' },
|
||||
{ id: 50, name: 'passivespell', type: 'yn' },
|
||||
{ id: 36, name: 'persiststhroughdeath', type: 'yn' },
|
||||
{ id: 72, name: 'pickpocket', type: 'yn' },
|
||||
{ id: 73, name: 'dispelauraonimmunity', type: 'yn' },
|
||||
{ id: 48, name: 'reqrangedweapon', type: 'yn' },
|
||||
{ id: 82, name: 'reqwand', type: 'yn' },
|
||||
{ id: 83, name: 'reqoffhand', type: 'yn' },
|
||||
{ id: 74, name: 'reqfishingpole', type: 'yn' },
|
||||
{ id: 41, name: 'requiresmetamorphosis', type: 'yn' },
|
||||
{ id: 80, name: 'reqmainhand', type: 'yn' },
|
||||
{ id: 38, name: 'requiresstealth', type: 'yn' },
|
||||
{ id: 75, name: 'requntappedtarget', type: 'yn' },
|
||||
{ id: 58, name: 'damagedependsonlevel', type: 'yn' },
|
||||
{ id: 39, name: 'spellstealable', type: 'yn' },
|
||||
{ id: 63, name: 'delayedrecoverystarttime', type: 'yn' },
|
||||
{ id: 87, name: 'startstickingatapplication', type: 'yn' },
|
||||
{ id: 59, name: 'stopsautoattack', type: 'yn' },
|
||||
// { id: 76, name: 'targetownitem', type: 'yn' }, // aowow - e.g. DK weapon enchantments ... this flag for this has to be somewhere....
|
||||
{ id: 70, name: 'targetnotincombat', type: 'yn' },
|
||||
{ id: 93, name: 'totemspell', type: 'yn' },
|
||||
{ id: 42, name: 'usablewhenstunned', type: 'yn' },
|
||||
{ id: 88, name: 'usableconfused', type: 'yn' },
|
||||
{ id: 89, name: 'usablefeared', type: 'yn' },
|
||||
{ id: 65, name: 'usesallpower', type: 'yn' },
|
||||
|
||||
{ id: 9999, name: 'sepcommunity' },
|
||||
{ id: 11, name: 'hascomments', type: 'yn' },
|
||||
{ id: 8, name: 'hasscreenshots', type: 'yn' },
|
||||
{ id: 17, name: 'hasvideos', type: 'yn' },
|
||||
|
||||
{ id: 9999, name: 'sepstaffonly', staffOnly: true },
|
||||
{ id: 96, name: 'flags1', type: 'flags', staffOnly: true },
|
||||
{ id: 97, name: 'flags2', type: 'flags', staffOnly: true },
|
||||
{ id: 98, name: 'flags3', type: 'flags', staffOnly: true },
|
||||
{ id: 99, name: 'flags4', type: 'flags', staffOnly: true },
|
||||
{ id: 100, name: 'flags5', type: 'flags', staffOnly: true },
|
||||
{ id: 101, name: 'flags6', type: 'flags', staffOnly: true },
|
||||
{ id: 102, name: 'flags7', type: 'flags', staffOnly: true },
|
||||
{ id: 103, name: 'flags8', type: 'flags', staffOnly: true },
|
||||
{ id: 104, name: 'flags9', type: 'flags', staffOnly: true },
|
||||
{ id: 105, name: 'flags10', type: 'flags', staffOnly: true },
|
||||
{ id: 106, name: 'flags11', type: 'flags', staffOnly: true },
|
||||
{ id: 107, name: 'flags12', type: 'flags', staffOnly: true },
|
||||
{ id: 108, name: 'flags13', type: 'flags', staffOnly: true }
|
||||
],
|
||||
|
||||
achievements: [
|
||||
|
|
|
|||
|
|
@ -3681,6 +3681,116 @@ var LANG = {
|
|||
[11083, "Seelenstaub"], [10940, "Seltsamer Staub"], [34057, "Tiefenkristall"], [34052, "Traumsplitter"], [11176, "Traumstaub"],
|
||||
[11137, "Visionenstaub"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "Rüstung"], [3, "Rüstungssachverstand"], [4, "Rüstungsspezialisierungen"], [5, "Sprachen"], [1, "Waffen"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "Keins"], [2, "Magie"], [3, "Nahkampf"], [4, "Distanz"]
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "Energie"], [5, "Fokus"], [6, "Gesundheit"], [8, "Mana"],
|
||||
[9, "Wut"], [10, "Runen"], [11, "Runenmacht"], [14, "Zufriedenheit"],
|
||||
[15, "Munition"], [16, "Pyrit"], [17, "Dampfdruck"], [18, "Hitze"],
|
||||
[19, "Schlamm"], [20, "Blutmacht"], [21, "Wrath"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3921,26 +4031,113 @@ var LANG = {
|
|||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "Allgemein",
|
||||
prcntbasemanarequired: "% des Grundmanas benötigt",
|
||||
firstrank: "Erster Rang",
|
||||
lastrank: "Letzten Rang",
|
||||
rankno: "Rang #...",
|
||||
rewardsskillups: "Belohnt Fertigkeitspunkte",
|
||||
manaenergyragecost: "Mana/Energie/Wut-Kosten",
|
||||
requiresnearbyobject: "Benötigt ein Objekt in der Nähe",
|
||||
hasreagents: "Verfügt über Reagenzien",
|
||||
scaling: "Skaliert mit Stufe",
|
||||
requiresprofspec: "Benötigt eine Berufsspezialisierung",
|
||||
source: "Quelle",
|
||||
trainingcost: "Trainingskosten",
|
||||
id: "ID",
|
||||
icon: "Symbol",
|
||||
sepgeneral: "Allgemein",
|
||||
prcntbasemanarequired: "% des Grundmanas benötigt",
|
||||
casttime: "Zauberzeit",
|
||||
channeled: "Kanalisiert",
|
||||
firstrank: "Erster Rang",
|
||||
lastrank: "Letzten Rang",
|
||||
rankno: "Rang #...",
|
||||
proficiencytype: "Sachverstandsart",
|
||||
rewardsskillups: "Belohnt Fertigkeitspunkte",
|
||||
manaenergyragecost: "Mana/Energie/Wut-Kosten",
|
||||
requiresnearbyobject: "Benötigt ein Objekt in der Nähe",
|
||||
hasreagents: "Verfügt über Reagenzien",
|
||||
scaling: "Skaliert mit Stufe",
|
||||
requiresprofspec: "Benötigt eine Berufsspezialisierung",
|
||||
requiresfaction: "Erfordert Fraktion",
|
||||
resourcetype: "Ressourcentyp",
|
||||
source: "Quelle",
|
||||
trainingcost: "Trainingskosten",
|
||||
usablewhenshapeshifted: "Benutzbar in Gestaltwandlung",
|
||||
id: "ID",
|
||||
icon: "Symbol",
|
||||
appliesaura: "Aureneffekttyp",
|
||||
effecttype: "Effekttyp",
|
||||
scalingap: "Skaliert mit Angriffskraft",
|
||||
scalingsp: "Skaliert mit Zaubermacht",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Verfügt über Kommentare",
|
||||
hasscreenshots: "Verfügt über Screenshots",
|
||||
hasvideos: "Verfügt über Videos"
|
||||
sepattributes: "Eigenschaften",
|
||||
combatcastable: "Kann im Kampf gewirkt werden",
|
||||
chancetocrit: "Chance, kritisch zu treffen",
|
||||
chancetomiss: "Chance to verfehlen",
|
||||
persiststhroughdeath: "Hält über Tod hinaus an",
|
||||
requiresmetamorphosis: "Benötigt Metamorphose",
|
||||
requiresstealth: "Benötigt Verstohlenheit",
|
||||
spellstealable: "Zauber kann geraubt werden",
|
||||
damagetype: "Schadensart",
|
||||
usablewhenstunned: "Benutzbar in Betäubung",
|
||||
usableinbgs: "Benutzbar nur in Schlachtfeldern",
|
||||
usableinarenas: "Benutzbar in Arenen",
|
||||
disregardimmunity: "Ignoriert Unverwundbarkeit",
|
||||
disregardschoolimmunity: "Ignoriert Unverwundbarkeit gegen Magieart",
|
||||
reqrangedweapon: "Benötigt eine Fernkampfwaffe",
|
||||
onnextswingplayers: "Mit dem nächsten Schwung (Spieler)",
|
||||
passivespell: "Passiver Zauber",
|
||||
hiddenaura: "Aura ist versteckt",
|
||||
onnextswingnpcs: "Mit dem nächsten Schwung (NSCs)",
|
||||
daytimeonly: "Kann nur tagsüber benutzt werden",
|
||||
nighttimeonly: "Kann nur nachts verwendet werden",
|
||||
indoorsonly: "Kann nur drinnen verwendet werden",
|
||||
outdoorsonly: "Kann nur draußen verwendet werden",
|
||||
damagedependsonlevel: "Zauberschaden ist abhängig von der Stufe des Zauberers",
|
||||
stopsautoattack: "Stoppt Autoangriff",
|
||||
cannotavoid: "Kann nicht ausgewichen, pariert oder geblockt werden",
|
||||
usabledead: "Kann tot verwendet werden",
|
||||
usablemounted: "Kann verwendet werden, während Ihr auf einem Reittier sitzt",
|
||||
usablesitting: "Kann im Sitzen benutzt werden",
|
||||
delayedrecoverystarttime: "Abklingzeit beginnt, nachdem die Aura schwindet",
|
||||
uncancellableaura: "Aura kann nicht entfernt werden",
|
||||
usesallpower: "Braucht alle Ressourcen auf",
|
||||
channeled: "Kanalisiert",
|
||||
cannotreflect: "Kann nicht reflektiert werden",
|
||||
usablestealthed: "Beendet Verstohlenheitsmodus nicht",
|
||||
harmful: "Alle Zaubereffekte sind schädlich",
|
||||
targetnotincombat: "Das Ziel darf sich nicht im Kampf befinden",
|
||||
nothreat: "Generiert keine Bedrohung",
|
||||
pickpocket: "Taschendiebstahl-Zauber",
|
||||
dispelauraonimmunity: "Entfernt Auren auf Immunität",
|
||||
reqfishingpole: "Erfordert Angelrute",
|
||||
requntappedtarget: "Setzt ein unmarkiertes Ziel voraus",
|
||||
targetownitem: "Das Ziel muss ein eigener Gegenstand sein",
|
||||
doesntreqshapeshift: "Erfordert keine Gestaltwandlung",
|
||||
foodbuff: "Essens-/Getränk-Buff",
|
||||
targetonlyplayer: "Kann nur einen Spieler zum Ziel haben",
|
||||
reqmainhand: "Benötigt eine Haupthandwaffe",
|
||||
doesntengagetarget: "Verwickelt das Ziel nicht in einen Kampf",
|
||||
reqwand: "Benötigt einen Zauberstab",
|
||||
reqoffhand: "Benötigt eine Schildhandwaffe",
|
||||
nolog: "Erscheint nicht im Log",
|
||||
auratickswhileloggedout: "Dauert an, während Ihr ausgeloggt seid",
|
||||
startstickingatapplication: "Beginnt zu ticken, sobald die Aura angewendet wird",
|
||||
usableconfused: "Verwendbar, während Ihr verwirrt seid",
|
||||
usablefeared: "Verwendbar, während Ihr verängstigt seid",
|
||||
onlyarena: "Nur in der Arena benutzbar",
|
||||
notinraid: "Kann nicht im Schlachtzug verwendet werden",
|
||||
paladinaura: "Paladin Aura",
|
||||
totemspell: "Totem",
|
||||
bandagespell: "Verbandszauber",
|
||||
onGlobalCooldown: "Auf globaler Abklingzeit",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Verfügt über Kommentare",
|
||||
hasscreenshots: "Verfügt über Screenshots",
|
||||
hasvideos: "Verfügt über Videos",
|
||||
|
||||
sepstaffonly: "Nur für Personal",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
|
|
@ -3729,6 +3729,116 @@ var LANG = {
|
|||
[22448, "Small Prismatic Shard"], [11177, "Small Radiant Shard"], [11083, "Soul Dust"], [10940, "Strange Dust"], [11137, "Vision Dust"],
|
||||
[22450, "Void Crystal"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "Armor"], [3, "Armor Proficiencies"], [4, "Armor Specializations"], [5, "Languages"], [1, "Weapons"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "None"], [2, "Magic"], [3, "Melee"], [4, "Ranged"]
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "Energy"], [5, "Focus"], [6, "Health"], [8, "Mana"],
|
||||
[9, "Rage"], [10, "Runes"], [11, "Runic Power"], [14, "Happiness"],
|
||||
[15, "Ammo"], [16, "Pyrite"], [17, "Steam Pressure"], [18, "Heat"],
|
||||
[19, "Ooze"], [20, "Blood Power"], [21, "Wrath"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3737,7 +3847,7 @@ var LANG = {
|
|||
[21,'0x00100000'], [22,'0x00200000'], [23,'0x00400000'], [24,'0x00800000'], [25,'0x01000000'],
|
||||
[26,'0x02000000'], [27,'0x04000000'], [28,'0x08000000'], [29,'0x10000000'], [30,'0x20000000'],
|
||||
[31,'0x40000000'], [32,'0x80000000']
|
||||
]
|
||||
]
|
||||
},
|
||||
|
||||
fiitems: {
|
||||
|
|
@ -3969,26 +4079,113 @@ var LANG = {
|
|||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "General",
|
||||
prcntbasemanarequired: "% of base mana required",
|
||||
firstrank: "First rank",
|
||||
lastrank: "Last rank",
|
||||
rankno: "Rank #...",
|
||||
rewardsskillups: "Rewards skill points",
|
||||
manaenergyragecost: "Mana/energy/rage cost",
|
||||
requiresnearbyobject: "Requires a nearby object",
|
||||
hasreagents: "Has reagents",
|
||||
scaling: "Scales with level",
|
||||
requiresprofspec: "Requires a profession specialization",
|
||||
source: "Source",
|
||||
trainingcost: "Training cost",
|
||||
id: "ID",
|
||||
icon: "Icon",
|
||||
sepgeneral: "General",
|
||||
prcntbasemanarequired: "% of base mana required",
|
||||
casttime: "Cast time",
|
||||
channeled: "Channeled",
|
||||
firstrank: "First rank",
|
||||
lastrank: "Last rank",
|
||||
rankno: "Rank #...",
|
||||
proficiencytype: "Proficiency type",
|
||||
rewardsskillups: "Rewards skill points",
|
||||
manaenergyragecost: "Mana/energy/rage cost",
|
||||
requiresnearbyobject: "Requires a nearby object",
|
||||
hasreagents: "Has reagents",
|
||||
scaling: "Scales with level",
|
||||
requiresprofspec: "Requires a profession specialization",
|
||||
requiresfaction: "Requires faction",
|
||||
resourcetype: "Resource type",
|
||||
source: "Source",
|
||||
trainingcost: "Training cost",
|
||||
usablewhenshapeshifted: "Usable when shapeshifted",
|
||||
id: "ID",
|
||||
icon: "Icon",
|
||||
appliesaura: "Effect Aura type",
|
||||
effecttype: "Effect type",
|
||||
scalingap: "Scales with attack power",
|
||||
scalingsp: "Scales with spell power",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Has comments",
|
||||
hasscreenshots: "Has screenshots",
|
||||
hasvideos: "Has videos"
|
||||
sepattributes: "Attributes",
|
||||
combatcastable: "Castable in combat",
|
||||
chancetocrit: "Chance to critically hit",
|
||||
chancetomiss: "Chance to miss",
|
||||
persiststhroughdeath: "Persists through death",
|
||||
requiresmetamorphosis: "Requires Metamorphosis",
|
||||
requiresstealth: "Requires Stealth",
|
||||
spellstealable: "Spellstealable",
|
||||
damagetype: "Damage type",
|
||||
usablewhenstunned: "Usable when stunned",
|
||||
usableinbgs: "Usable only in battlegrounds",
|
||||
usableinarenas: "Usable in arenas",
|
||||
disregardimmunity: "Disregards immunity",
|
||||
disregardschoolimmunity: "Disregards school immunity",
|
||||
reqrangedweapon: "Requires a ranged weapon",
|
||||
onnextswingplayers: "On next swing (players)",
|
||||
passivespell: "Passive spell",
|
||||
hiddenaura: "Aura is hidden",
|
||||
onnextswingnpcs: "On next swing (npcs)",
|
||||
daytimeonly: "Can only be used during daytime",
|
||||
nighttimeonly: "Can only be used during nighttime",
|
||||
indoorsonly: "Can only be used indoors",
|
||||
outdoorsonly: "Can only be used outdoors",
|
||||
damagedependsonlevel: "Spell damage depends on caster level",
|
||||
stopsautoattack: "Stops auto-attack",
|
||||
cannotavoid: "Cannot be dodged, parried or blocked",
|
||||
usabledead: "Can be used while dead",
|
||||
usablemounted: "Can be used while mounted",
|
||||
usablesitting: "Can be used while sitting",
|
||||
delayedrecoverystarttime: "Starts cooldown after aura fades",
|
||||
uncancellableaura: "Aura cannot be cancelled",
|
||||
usesallpower: "Uses all power",
|
||||
channeled: "Channeled",
|
||||
cannotreflect: "Cannot be reflected",
|
||||
usablestealthed: "Does not break stealth",
|
||||
harmful: "All spell effects are harmful",
|
||||
targetnotincombat: "The target cannot be in combat",
|
||||
nothreat: "Generates no threat",
|
||||
pickpocket: "Pickpocket spell",
|
||||
dispelauraonimmunity: "Remove auras on immunity",
|
||||
reqfishingpole: "Requires fishing pole",
|
||||
requntappedtarget: "Requires untapped target",
|
||||
targetownitem: "Target must be own item",
|
||||
doesntreqshapeshift: "Does not require shapeshift",
|
||||
foodbuff: "Food/Drink buff",
|
||||
targetonlyplayer: "Can only target the player",
|
||||
reqmainhand: "Requires main hand weapon",
|
||||
doesntengagetarget: "Does not engage target",
|
||||
reqwand: "Requires a wand",
|
||||
reqoffhand: "Requires an off-hand weapon",
|
||||
nolog: "Does not appear in log",
|
||||
auratickswhileloggedout: "Continues while logged out",
|
||||
startstickingatapplication: "Starts ticking at aura application",
|
||||
usableconfused: "Usable while confused",
|
||||
usablefeared: "Usable while feared",
|
||||
onlyarena: "Only usable in arena",
|
||||
notinraid: "Cannot be used in a raid",
|
||||
paladinaura: "Paladin aura",
|
||||
totemspell: "Totem",
|
||||
bandagespell: "Bandage spell",
|
||||
onGlobalCooldown: "On global cooldown",
|
||||
|
||||
sepcommunity: "Community",
|
||||
hascomments: "Has comments",
|
||||
hasscreenshots: "Has screenshots",
|
||||
hasvideos: "Has videos",
|
||||
|
||||
sepstaffonly: "Staff only",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
|
|
@ -3683,6 +3683,116 @@ var LANG = {
|
|||
[11083, "Polvo de alma"], [16204, "Polvo de ilusión"], [11137, "Polvo de visión"], [10940, "Polvo extraño"], [34054, "Polvo infinito"],
|
||||
[11176, "Polvo onírico"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "Armadura"], [3, "Armaduras disponibles"], [4, "Especializaciones de armadura"], [5, "Lenguas"], [1, "Armas"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "Ninguno"], [2, "Magia"], [3, "Cuerpo a cuerpo"], [4, "A distancia"]
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "Energía"], [5, "Enfoque"], [6, "Salud"], [8, "Maná"],
|
||||
[9, "Ira"], [10, "Runas"], [11, "Poder rúnico"], [14, "Felicidad"],
|
||||
[15, "Munición"], [16, "Pirita"], [17, "Presión de vapor"], [18, "Calor"],
|
||||
[19, "Moco"], [20, "Poder de sangre"], [21, "Cólera"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3918,31 +4028,118 @@ var LANG = {
|
|||
hasvideos: "Tiene vídeos",
|
||||
lacksstartend: "Le falta principio o final",
|
||||
|
||||
sepstaffonly: "Sólo para empleados",
|
||||
flags: "Banderas"
|
||||
sepstaffonly: "Sólo para empleados",
|
||||
flags: "Banderas"
|
||||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "General",
|
||||
prcntbasemanarequired: "% de maná base requerida",
|
||||
firstrank: "Primer rango",
|
||||
lastrank: "Último rango",
|
||||
rankno: "Rango #...",
|
||||
rewardsskillups: "Recompensa con puntos de habilidad",
|
||||
manaenergyragecost: "Coste de maná/energia/ira",
|
||||
requiresnearbyobject: "Requiere entidad cercana",
|
||||
hasreagents: "Tiene componentes",
|
||||
scaling: "Escala con el nivel",
|
||||
requiresprofspec: "Requiere especialización en profesión",
|
||||
source: "Fuente",
|
||||
trainingcost: "Coste de entrenamiento",
|
||||
id: "ID",
|
||||
icon: "Icono",
|
||||
sepgeneral: "General",
|
||||
prcntbasemanarequired: "% de maná base requerida",
|
||||
casttime: "Tiempo de lanzamiento",
|
||||
channeled: "Canalizado",
|
||||
firstrank: "Primer rango",
|
||||
lastrank: "Último rango",
|
||||
rankno: "Rango #...",
|
||||
proficiencytype: "Tipo de habilidad",
|
||||
rewardsskillups: "Recompensa con puntos de habilidad",
|
||||
manaenergyragecost: "Coste de maná/energia/ira",
|
||||
requiresnearbyobject: "Requiere entidad cercana",
|
||||
hasreagents: "Tiene componentes",
|
||||
scaling: "Escala con el nivel",
|
||||
requiresprofspec: "Requiere especialización en profesión",
|
||||
requiresfaction: "[Requires faction]",
|
||||
resourcetype: "Tipo de recurso",
|
||||
source: "Fuente",
|
||||
trainingcost: "Coste de entrenamiento",
|
||||
usablewhenshapeshifted: "Se puede usar con cambio de forma",
|
||||
id: "ID",
|
||||
icon: "Icono",
|
||||
appliesaura: "Tipo de aura de efecto",
|
||||
effecttype: "Tipo de efecto",
|
||||
scalingap: "Escala con Poder de Ataque",
|
||||
scalingsp: "Escala con Poder con Hechizos",
|
||||
|
||||
sepcommunity: "Comunidad",
|
||||
hascomments: "Tiene comentarios",
|
||||
hasscreenshots: "Tiene capturas de pantalla",
|
||||
hasvideos: "Tiene vídeos"
|
||||
sepattributes: "Atributos",
|
||||
combatcastable: "Utilizable en combate",
|
||||
chancetocrit: "Oportunidad de golpe crítico",
|
||||
chancetomiss: "Oportunidad de fallar",
|
||||
persiststhroughdeath: "Persiste después de la muerte ",
|
||||
requiresmetamorphosis: "Requiere Metamorfosis",
|
||||
requiresstealth: "Requiere Sigilo",
|
||||
spellstealable: "Hechizo puede ser robado",
|
||||
damagetype: "Tipo de daño",
|
||||
usablewhenstunned: "Utilizable durante aturdimiento",
|
||||
usableinbgs: "Utilizable solamente en los campos de batalla",
|
||||
usableinarenas: "Se puede usar en arenas",
|
||||
disregardimmunity: "Ignora la inmunidad ",
|
||||
disregardschoolimmunity: "Ignora la imunidad a una escuela de magia",
|
||||
reqrangedweapon: "Requiere un arma a distancia",
|
||||
onnextswingplayers: "Con el próximo golpe (jugadores)",
|
||||
passivespell: "Hechizo Pasivo",
|
||||
hiddenaura: "El Aura esta oculta",
|
||||
onnextswingnpcs: "Con el próximo golpe (PNJs)",
|
||||
daytimeonly: "Solo puede ser utilizado de día",
|
||||
nighttimeonly: "Sólo se puede utilizar durante la noche",
|
||||
indoorsonly: "Solo puede ser utilizado en interiores",
|
||||
outdoorsonly: "Solo puede ser utilizado en exteriores",
|
||||
damagedependsonlevel: "Daño con Hechizos depende del nivel del lanzador",
|
||||
stopsautoattack: "Detiene el auto-ataque",
|
||||
cannotavoid: "No puede ser esquivado, parado o bloqueado",
|
||||
usabledead: "Se puede utilizar estando muerto",
|
||||
usablemounted: "Se puede utilizar estando montado",
|
||||
usablesitting: "Se puede utilizar sentado",
|
||||
delayedrecoverystarttime: "Comienza el tiempo de reutilización luego de que el aura se desvanece",
|
||||
uncancellableaura: "El aura no se puede cancelar",
|
||||
usesallpower: "Utiliza todo el poder",
|
||||
channeled: "Canalizado",
|
||||
cannotreflect: "No puede ser reflejado",
|
||||
usablestealthed: "No rompe el sigilo",
|
||||
harmful: "Todos los efectos de Hechizos son perjudiciales",
|
||||
targetnotincombat: "El objetivo no debe estar en combate",
|
||||
nothreat: "No genera amenza",
|
||||
pickpocket: "Hechizo de Robar",
|
||||
dispelauraonimmunity: "Remueve las auras siendo inmune",
|
||||
reqfishingpole: "Requiere una Caña de Pescar",
|
||||
requntappedtarget: "Requiere un objetivo no seleccionado",
|
||||
targetownitem: "El objetivo debe ser dueño del objeto",
|
||||
doesntreqshapeshift: "No requiere cambio de forma",
|
||||
foodbuff: "Beneficio de la Bebida/Comida ",
|
||||
targetonlyplayer: "Solo puede hacerle objetivo al jugador",
|
||||
reqmainhand: "Requiere Arma en la Mano Principal",
|
||||
doesntengagetarget: "No ataca al objetivo",
|
||||
reqwand: "Requiere una varita",
|
||||
reqoffhand: "Requiere un arma en la mano izquierda",
|
||||
nolog: "No aparece en el registro",
|
||||
auratickswhileloggedout: "Continúa mientras esta desconectado",
|
||||
startstickingatapplication: 'Comienzan los "ticks" con la aplicación del aura',
|
||||
usableconfused: "Utilizable mientras se esta confuso",
|
||||
usablefeared: "Utilizable mientras se esta aterrorizado",
|
||||
onlyarena: "Solo utilizable en Arena",
|
||||
notinraid: "No puede ser utilizado en una banda",
|
||||
paladinaura: "Aura de Paladín",
|
||||
totemspell: "Totem",
|
||||
bandagespell: "Hechizo de Venda",
|
||||
onGlobalCooldown: "Sujeto al tiempo de relanzamiento global",
|
||||
|
||||
sepcommunity: "Comunidad",
|
||||
hascomments: "Tiene comentarios",
|
||||
hasscreenshots: "Tiene capturas de pantalla",
|
||||
hasvideos: "Tiene vídeos",
|
||||
|
||||
sepstaffonly: "Sólo para empleados",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
|
|
@ -3684,6 +3684,116 @@ var LANG = {
|
|||
[34054, "Poussière d'infini"], [11083, "Poussière d'âme"], [11176, "Poussière de rêve"], [11137, "Poussière de vision"], [22445, "Poussière des arcanes"],
|
||||
[10940, "Poussière étrange"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "Armure"], [3, "Armures utilisables"], [4, "Spécialisations d'armure"], [5, "Langues"], [1, "Armes"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "Aucun"], [2, "Magie"], [3, "En mêlée"], [4, "À distance"]
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "Énergie"], [5, "Focus"], [6, "Vie"], [8, "Mana"],
|
||||
[9, "Rage"], [10, "Runes"], [11, "Puissance runique"], [14, "Satisfaction"],
|
||||
[15, "Munitions"], [16, "Pyrite"], [17, "Pression vapeur"], [18, "Chaleur"],
|
||||
[19, "Limon"], [20, "Puissance de sang"], [21, "Courroux"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3924,26 +4034,113 @@ var LANG = {
|
|||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "Général",
|
||||
prcntbasemanarequired: "% du mana de base requis",
|
||||
firstrank: "Premier rang",
|
||||
lastrank: "Dernier rang",
|
||||
rankno: "Rang #...",
|
||||
rewardsskillups: "Récompense des points de compétence",
|
||||
manaenergyragecost: "Coût en mana/énergie/rage",
|
||||
requiresnearbyobject: "Requiert une entité à proximité",
|
||||
hasreagents: "A des ingrédients",
|
||||
scaling: "Augmente avec le niveau",
|
||||
requiresprofspec: "Requiert une spécialisation de métier",
|
||||
source: "Source",
|
||||
trainingcost: "Coût d'entraînement",
|
||||
id: "ID",
|
||||
icon: "Icône",
|
||||
sepgeneral: "Général",
|
||||
prcntbasemanarequired: "% du mana de base requis",
|
||||
casttime: "Incantation",
|
||||
channeled: "Canalisée",
|
||||
firstrank: "Premier rang",
|
||||
lastrank: "Dernier rang",
|
||||
rankno: "Rang #...",
|
||||
proficiencytype: "Type de compétence",
|
||||
rewardsskillups: "Récompense des points de compétence",
|
||||
manaenergyragecost: "Coût en mana/énergie/rage",
|
||||
requiresnearbyobject: "Requiert une entité à proximité",
|
||||
hasreagents: "A des ingrédients",
|
||||
scaling: "Augmente avec le niveau",
|
||||
requiresprofspec: "Requiert une spécialisation de métier",
|
||||
requiresfaction: "Requiert la faction",
|
||||
resourcetype: "Type de ressource",
|
||||
source: "Source",
|
||||
trainingcost: "Coût d'entraînement",
|
||||
usablewhenshapeshifted: "Utilisable lorsque transformé",
|
||||
id: "ID",
|
||||
icon: "Icône",
|
||||
appliesaura: "Type d'aura d'effet",
|
||||
effecttype: "Type d'effet",
|
||||
scalingap: "S'équilibre avec la puissance d'attaque",
|
||||
scalingsp: "S'équilibre avec la puissance des sorts",
|
||||
|
||||
sepcommunity: "Communauté",
|
||||
hascomments: "A des commentaires",
|
||||
hasscreenshots: "A des captures d'écrans",
|
||||
hasvideos: "A des vidéos"
|
||||
sepattributes: "Attributs",
|
||||
combatcastable: "Utilisable en combat",
|
||||
chancetocrit: "Chance d'infliger un coup critique",
|
||||
chancetomiss: "Chance de rater",
|
||||
persiststhroughdeath: "Persiste après la mort",
|
||||
requiresmetamorphosis: "Requiert Métamorphose",
|
||||
requiresstealth: "Requiert Camouflage",
|
||||
spellstealable: "Peut faire l'objet d'un vol de sort",
|
||||
damagetype: "Type de dégâts",
|
||||
usablewhenstunned: "Utilisable quand assommé",
|
||||
usableinbgs: "Utilisable uniquement dans les champs de bataille",
|
||||
usableinarenas: "Utilisable en Aréna",
|
||||
disregardimmunity: "Ignore les immunités",
|
||||
disregardschoolimmunity: "Ignore les immunités à une école de magie",
|
||||
reqrangedweapon: "Requiert une arme à distance",
|
||||
onnextswingplayers: "Au coup suivant (joueurs)",
|
||||
passivespell: "Sort passif",
|
||||
hiddenaura: "Aura cachée",
|
||||
onnextswingnpcs: "Au coup suivant (PNJ)",
|
||||
daytimeonly: "Ne peut être utilisé que pendant la journée",
|
||||
nighttimeonly: "Ne peut être utilisé que pendant la nuit",
|
||||
indoorsonly: "Peut être utilisé uniquement à l'intérieur",
|
||||
outdoorsonly: "Ne peut être utilisé qu'à l'extérieur",
|
||||
damagedependsonlevel: "Les dégats du sort dépendent du niveau du lanceur",
|
||||
stopsautoattack: "Arrête l'auto-attaque",
|
||||
cannotavoid: "Ne peut être esquivé, paré ou bloqué",
|
||||
usabledead: "Utilisable même mort",
|
||||
usablemounted: "Utilisable en monture",
|
||||
usablesitting: "Utilisable assis",
|
||||
delayedrecoverystarttime: "Le temps de recharge démarre après que l'aura disparaît",
|
||||
uncancellableaura: "L'aura ne peut être annulée",
|
||||
usesallpower: "Utilise toute la puissance",
|
||||
channeled: "Canalisé",
|
||||
cannotreflect: "Ne peut être renvoyé",
|
||||
usablestealthed: "N'enlève pas le camouflage",
|
||||
harmful: "Tous les effets de sort sont nuisibles",
|
||||
targetnotincombat: "La cible ne peut être en combat",
|
||||
nothreat: "Ne génère pas de menace",
|
||||
pickpocket: "Sort de pickpocket",
|
||||
dispelauraonimmunity: "Retire les auras sur immunité",
|
||||
reqfishingpole: "Requiert une canne à pêche",
|
||||
requntappedtarget: "Requiert une cible non engagée",
|
||||
targetownitem: "La cible doit être un objet possédé",
|
||||
doesntreqshapeshift: "Ne requiert pas de changeforme",
|
||||
foodbuff: "Buff Nourriture/Boisson",
|
||||
targetonlyplayer: "Ne peut cibler que le joueur",
|
||||
reqmainhand: "Requiert une arme en main droite",
|
||||
doesntengagetarget: "N'engage pas la cible",
|
||||
reqwand: "Requiert une baguette",
|
||||
reqoffhand: "Requiert une arme en main gauche",
|
||||
nolog: "N'apparait pas dans le journal",
|
||||
auratickswhileloggedout: "Continue après la déconnexion",
|
||||
startstickingatapplication: "Commence les tics à l'application de l'aura",
|
||||
usableconfused: "Utilisable quand confus",
|
||||
usablefeared: "Utilisable sous l'effet de peur",
|
||||
onlyarena: "Utilisable uniquement en arène",
|
||||
notinraid: "Ne peut être utilisé en raid",
|
||||
paladinaura: "Aura de paladin",
|
||||
totemspell: "Totem",
|
||||
bandagespell: "Sort de bandage",
|
||||
onGlobalCooldown: "Sur le temps de recharge global"
|
||||
|
||||
sepcommunity: "Communauté",
|
||||
hascomments: "A des commentaires",
|
||||
hasscreenshots: "A des captures d'écrans",
|
||||
hasvideos: "A des vidéos",
|
||||
|
||||
sepstaffonly: "Employés seulement",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
|
|
@ -3684,6 +3684,117 @@ var LANG = {
|
|||
[11083, "Пыль духа"], [16204, "Пыль иллюзий"], [11137, "Пыль провидения"], [11176, "Сонная пыль"], [10940, "Странная пыль"],
|
||||
[22445, "Чародейная пыль"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "Броня"], [3, "Доспехи"], [4, "Специализации доспехов"], [5, "Языки"], [1, "Оружие"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "Нет"], [2, "Магический"], [3, "Ближний бой"], [4, "Дальний бой"]
|
||||
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "Энергия"], [5, "Тонус"], [6, "Здоровье"], [8, "Мана"],
|
||||
[9, "Ярость"], [10, "Руны"], [11, "Руническая сила"], [14, "Настроение"],
|
||||
[15, "Боеприпасы"], [16, "Колчедан"], [17, "Давление пара"], [18, "Жар"],
|
||||
[19, "Слизнюк"], [20, "Сила крови"], [21, "Гнев"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3925,26 +4036,115 @@ var LANG = {
|
|||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "Общее",
|
||||
prcntbasemanarequired: "Требуется % маны",
|
||||
firstrank: "Первый ранг",
|
||||
lastrank: "Последнего ранг",
|
||||
rankno: "Ранг #...",
|
||||
rewardsskillups: "Дает очки навыка",
|
||||
manaenergyragecost: "Стоимость Маны/Энергии/Ярости",
|
||||
requiresnearbyobject: "Тебуется соседний объект",
|
||||
hasreagents: "Есть реагенты",
|
||||
scaling: "Изменяется с уровнем",
|
||||
requiresprofspec: "Требуется профессия",
|
||||
source: "Источник",
|
||||
trainingcost: "Стоимость обучения",
|
||||
id: "Номер",
|
||||
icon: "Иконка",
|
||||
sepgeneral: "Общее",
|
||||
prcntbasemanarequired: "Требуется % маны",
|
||||
casttime: "Применение",
|
||||
channeled: "Направляемое",
|
||||
firstrank: "Первый ранг",
|
||||
lastrank: "Последнего ранг",
|
||||
rankno: "Ранг #...",
|
||||
proficiencytype: "Тип умения",
|
||||
specializationtype: "Тип специализации",
|
||||
rewardsskillups: "Дает очки навыка",
|
||||
manaenergyragecost: "Стоимость Маны/Энергии/Ярости",
|
||||
requiresnearbyobject: "Тебуется соседний объект",
|
||||
hasreagents: "Есть реагенты",
|
||||
scaling: "Изменяется с уровнем",
|
||||
requiresprofspec: "Требуется профессия",
|
||||
requiresfaction: "Требуется фракция",
|
||||
resourcetype: "Тип ресурса",
|
||||
source: "Источник",
|
||||
trainingcost: "Стоимость обучения",
|
||||
usablewhenshapeshifted: "Используется в формах",
|
||||
id: "Номер",
|
||||
icon: "Иконка",
|
||||
appliesaura: "Тип эффекта ауры",
|
||||
effecttype: "Тип эффекта",
|
||||
scalingap: "Зависит от силы атаки",
|
||||
scalingsp: "Зависит от силы заклинаний",
|
||||
sepcombat: "В бою",
|
||||
sepattributes: "Атрибуты",
|
||||
combatcastable: "Может использоваться в бою",
|
||||
chancetocrit: "Шанс ударить критически",
|
||||
chancetomiss: "Шанс промахнуться",
|
||||
persiststhroughdeath: "Сохраняется после смерти",
|
||||
requiresmetamorphosis: "Требует Метаморфозу",
|
||||
requiressymbiosis: "Требует Симбиоз",
|
||||
requiresstealth: "Требует Незаметность",
|
||||
spellstealable: "Можно применить Чарокрад",
|
||||
damagetype: "Вид наносимого урона",
|
||||
usablewhenstunned: "Может быть использовано во время оглушения",
|
||||
usableinbgs: "Может быть использовано только на полях боя",
|
||||
usableinarenas: "Используется на аренах",
|
||||
disregardimmunity: "Игнорирует иммунитет",
|
||||
disregardschoolimmunity: "Игнорирует иммунитет к школе заклинаний",
|
||||
reqrangedweapon: "Необходимо оружие дальнего боя",
|
||||
onnextswingplayers: "Следующая атака (игрок)",
|
||||
passivespell: "Пассивная способность",
|
||||
hiddenaura: "Эффект скрыт",
|
||||
onnextswingnpcs: "Следующая атака (НИП)",
|
||||
daytimeonly: "Может быть использовано только в дневное время",
|
||||
nighttimeonly: "Может быть использовано только ночью",
|
||||
indoorsonly: "Можно использовать только в помещении",
|
||||
outdoorsonly: "Может быть использовано только снаружи",
|
||||
damagedependsonlevel: "Урон заклинания зависит от уровня произносящего",
|
||||
stopsautoattack: "Прекращает автоатаку",
|
||||
cannotavoid: "Невозможно уклониться, парировать или блокировать",
|
||||
usabledead: "Может быть использовано, пока вы мертвы",
|
||||
usablemounted: "Может быть использовано при езде верхом",
|
||||
usablesitting: "Может быть использовано сидя",
|
||||
delayedrecoverystarttime: "Начинает восстановление после спадения эффекта",
|
||||
uncancellableaura: "Эффект не может быть отменен",
|
||||
usesallpower: "Использует ресурс полностью",
|
||||
channeled: "Потоковое",
|
||||
cannotreflect: "Не может быть отражено",
|
||||
usablestealthed: "Не прерывает режим скрытности",
|
||||
harmful: "Все пагубные эффекты заклинаний",
|
||||
targetnotincombat: "Цель не может находиться в бою",
|
||||
nothreat: "Не создает угрозы",
|
||||
pickpocket: "Заклинание кражи",
|
||||
dispelauraonimmunity: "Снять эффект при иммунитете",
|
||||
reqfishingpole: "Требуется удочка",
|
||||
requntappedtarget: "Требует цель вне боя",
|
||||
targetownitem: "Цель должна быть вашей вещью",
|
||||
doesntreqshapeshift: "Не приводит к смене формы",
|
||||
foodbuff: "Бонус от еды/питья",
|
||||
targetonlyplayer: "Целью может быть только игрок",
|
||||
reqmainhand: "Необходимо оружие для правой руки",
|
||||
doesntengagetarget: "Цель не вступает в бой",
|
||||
reqwand: "Требует жезл",
|
||||
reqoffhand: "Необходимо оружие для левой руки",
|
||||
nolog: "Не появляется в логе",
|
||||
auratickswhileloggedout: "Продолжается после выхода из игрового мира",
|
||||
startstickingatapplication: "Эффект начинается вместе с применением",
|
||||
usableconfused: "Используемо в замешательстве",
|
||||
usablefeared: "Может быть использовано, пока наложен Страх",
|
||||
onlyarena: "Используется только на арене",
|
||||
notinraid: "Не может быть использовано в рейде",
|
||||
paladinaura: "Аура Паладина",
|
||||
totemspell: "Тотем",
|
||||
bandagespell: "Исцеление бинтами",
|
||||
onGlobalCooldown: "Подвержен действию GCD",
|
||||
|
||||
sepcommunity: "Сообщество",
|
||||
hascomments: "Есть комментарии",
|
||||
hasscreenshots: "Есть изображения",
|
||||
hasvideos: "Есть видео"
|
||||
sepcommunity: "Сообщество",
|
||||
hascomments: "Есть комментарии",
|
||||
hasscreenshots: "Есть изображения",
|
||||
hasvideos: "Есть видео",
|
||||
|
||||
sepstaffonly: "Только персонал",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
|
|
@ -3710,6 +3710,116 @@ var LANG = {
|
|||
[34052, "梦境碎片"], [34053, "小块梦境碎片"], [34054, "无限之尘"], [34055, "强效宇宙精华"], [34056, "次级宇宙精华"],
|
||||
[34057, "深渊水晶"]
|
||||
],
|
||||
proficiencytype:[
|
||||
[2, "护甲"], [3, "护甲精通"], [4, "护甲天赋"], [5, "语言"], [1, "武器"]
|
||||
],
|
||||
effectauranames:[
|
||||
[1, "Bind Sight"], [2, "Possess"], [3, "Periodic Damage - Flat"], [4, "Dummy"], [5, "Confuse"],
|
||||
[6, "Charm"], [7, "Fear"], [8, "Periodic Heal"], [9, "Mod Attack Speed"], [10, "Mod Threat"],
|
||||
[11, "Taunt"], [12, "Stun"], [13, "Mod Damage Done - Flat"], [14, "Mod Damage Taken - Flat"], [15, "Damage Shield"],
|
||||
[16, "Stealth"], [17, "Stealth Detection"], [18, "Invisibility"], [19, "Invisibility Detection"], [20, "Regenerate Health - %"],
|
||||
[21, "Regenerate Power - %"], [22, "Mod Resistance - Flat"], [23, "Periodically Trigger Spell"], [24, "Periodically Give Power"], [25, "Pacify"],
|
||||
[26, "Root"], [27, "Silence"], [28, "Reflect Spells"], [29, "Mod Stat - Flat"], [30, "Mod Skill - Temporary"],
|
||||
[31, "Increase Run Speed %"], [32, "Mod Mounted Speed %"], [33, "Decrease Run Speed %"], [34, "Mod Maximum Health - Flat"], [35, "Mod Maximum Power - Flat"],
|
||||
[36, "Shapeshift"], [37, "Spell Effect Immunity"], [38, "Spell Aura Immunity"], [39, "Spell School Immunity"], [40, "Damage Immunity"],
|
||||
[41, "Dispel Type Immunity"], [42, "Proc Trigger Spell"], [43, "Proc Trigger Damage"], [44, "Track Creatures"], [45, "Track Resources"],
|
||||
[46, "Ignore All Gear"], [47, "Mod Parry %"], /* [48, null] */ [49, "Mod Dodge %"], [50, "Mod Critical Healing Amount %"],
|
||||
[51, "Mod Block %"], [52, "Mod Physical Crit Chance"], [53, "Periodically Drain Health"], [54, "Mod Physical Hit Chance"], [55, "Mod Spell Hit Chance"],
|
||||
[56, "Transform"], [57, "Mod Spell Crit Chance"], [58, "Increase Swim Speed %"], [59, "Mod Damage Done Versus Creature"],[60, "Pacify & Silence"],
|
||||
[61, "Mod Size %"], [62, "Periodically Transfer Health"], [63, "Periodically Transfer Power"], [64, "Periodically Drain Power"], [65, "Mod Spell Haste % (not stacking)"],
|
||||
[66, "Feign Death"], [67, "Disarm"], [68, "Stalked"], [69, "Mod Absorb School Damage"], [70, "Extra Attacks"],
|
||||
[71, "Mod Spell School Crit Chance"], [72, "Mod Spell School Power Cost - %"],[73,"Mod Spell School Power Cost - Flat"],[74, "Reflect Spells From School"], [75, "Force Language"],
|
||||
[76, "Far Sight"], [77, "Mechanic Immunity"], [78, "Mounted"], [79, "Mod Damage Done - %"], [80, "Mod Stat - %"],
|
||||
[81, "Split Damage %"], [82, "Underwater Breathing"], [83, "Mod Base Resistance - Flat"], [84, "Mod Health Regeneration - Flat"],[85, "Mod Power Regeneration - Flat"],
|
||||
[86, "Create Item on Death"], [87, "Mod Damage Taken - %"], [88, "Mod Health Regeneration - %"], [89, "Periodic Damage - %"], [90, "Mod Resist Chance"],
|
||||
[91, "Mod Aggro Range"], [92, "Prevent Fleeing"], [93, "Unattackable"], [94, "Interrupt Power Decay"], [95, "Ghost"],
|
||||
[96, "Spell Magnet"], [97, "Absorb Damage - Mana Shield"], [98, "Mod Skill Value"], [99, "Mod Attack Power"], [100, "Always Show Debuffs"],
|
||||
[101, "Mod Resistance - %"], [102, "Mod Melee Attack Power vs Creature"],[103, "Mod Total Threat - Temporary"],[104, "Water Walking"], [105, "Feather Fall"],
|
||||
[106, "Levitate / Hover"], [107, "Add Modifier - Flat"], [108, "Add Modifier - %"], [109, "Proc Spell on Target"], [110, "Mod Power Regeneration - %"],
|
||||
[111, "Intercept % of Attacks Against Target"],[112, "Override Class Script"], [113, "Mod Ranged Damage Taken - Flat"],[114, "Mod Ranged Damage Taken - %"], [115, "Mod Healing Taken - Flat"],
|
||||
[116, "Allow % of Health Regen During Combat"],[117, "Mod Mechanic Resistance"],[118, "Mod Healing Taken - %"], [119, "Share Pet Tracking"], [120, "Untrackable"],
|
||||
[121, "Beast Lore"], [122, "Mod Off-Hand Damage Done %"], [123, "Mod Target Resistances - Flat"], [124, "Mod Ranged Attack Power - Flat"],[125, "Mod Melee Damage Taken - Flat"],
|
||||
[126, "Mod Melee Damage Taken - %"], [127, "Mod Attacker Ranged Attack Power"],[128, "Possess Pet"], [129, "Increase Run Speed % (stacking)"],[130, "Incerase Mounted Speed % (stacking)"],
|
||||
[131, "Mod Ranged Attack Power vs Creature"],[132, "Mod Maximum Power - %"], [133, "Mod Maximum Health - %"], [134, "Allow % of Mana Regen During Combat"],[135, "Mod Healing Done - Flat"],
|
||||
[136, "Mod Healing Done - %"], [137, "Mod Stat - %"], [138, "Mod Melee Haste %"], [139, "Force Reputation"], [140, "Mod Ranged Haste %"],
|
||||
[141, "Mod Ranged Ammo Haste %"], [142, "Mod Base Resistance - %"], [143, "Mod Resistace - Flat (not stacking)"],[144, "Safe Fall"], [145, "Increase Pet Talent Points"],
|
||||
[146, "Allow Exotic Pets Taming"], [147, "Mechanic Immunity Mask"], [148, "Retain Combo Points"], [149, "Reduce Pushback Time %"], [150, "Mod Shield Block Value - %"],
|
||||
[151, "Track Stealthed"], [152, "Mod Player Aggro Range"], [153, "Split Damage - Flat"], [154, "Mod Stealth Level"], [155, "Mod Underwater Breathing %"],
|
||||
[156, "Mod All Reputation Gained by %"],[157, "Done Pet Damage Multiplier"], [158, "Mod Shield Block Value - Flat"], [159, "No PvP Credit"], [160, "Mod AoE Avoidance"],
|
||||
[161, "Mod Health Regen During Combat"],[162, "Mana Burn"], [163, "Mod Melee Critical Damage %"], [165, "Mod Attacker Melee Attack Power"],[166, "Mod Melee Attack Power - %"],
|
||||
[167, "Mod Ranged Attack Power - %"], [168, "Mod Damage Done vs Creature - %"],[169, "Mod Crit Chance vs Creature"], [170, "Change Object Visibility for Player"],[171, "Mod Run Speed % (not stacking)"],
|
||||
[172, "Mod Mounted Speed % (not stacking)"],[174, "Mod Spell Power by % of Stat"],[175, "Mod Healing Power by % of Stat"],[176, "Spirit of Redemption"], [177, "AoE Charm"],
|
||||
[178, "Mod Debuff Resistance - %"], [179, "Mod Attacker Spell Crit Chance"],[180, "Mod Spell Power vs Creature"], [182, "Mod Resistance by % of Stat"], [183, "Mod Threat % of Critical Hits"],
|
||||
[184, "Mod Attacker Melee Hit Chance"], [185, "Mod Attacker Ranged Hit Chance"],[186, "Mod Attacker Spell Hit Chance"], [187, "Mod Attacker Melee Crit Chance"],[188, "Mod Attacker Ranged Crit Chance"],
|
||||
[189, "Mod Rating"], [190, "Mod Reputation Gained %"], [191, "Limit Movement Speed"], [192, "Mod Attack Speed %"], [193, "Mod Haste % (gain)"],
|
||||
[194, "Mod Target School Absorb"], [195, "Mod Target School Absorb for Ability"],[196, "Mod Cooldowns"], [197, "Mod Attacker Crit Chance"], [199, "Mod Spell Hit Chance"],
|
||||
[200, "Mod Kill Experience Gained %"], [201, "Can Fly"], [202, "Ignore Combat Result"], [203, "Mod Attacker Melee Crit Damage by %"],[204, "Mod Attacker Ranged Crit Damage by %"],
|
||||
[205, "Mod Attacker Spell Crit Damage by %"],[206, "Mod Vehicle Flight Speed %"],[207, "Mod Mounted Flight Speed %"], [208, "Mod Flight Speed %"], [209, "Mod Mounted Flight Speed % (always)"],
|
||||
[210, "Mod Vehicle Flight Speed % (always)"],[211, "Mod Flight Speed % (not stacking)"],[212, "Mod Ranged Attack Power by % of Stat"],[213, "Mod Rage Generated From Damage Dealt"],[214, "Tamed Pet Passive"],
|
||||
[215, "Arena Preparation"], [216, "Mod Spell Haste %"], [217, "Killing Spree"], [218, "Mod Ranged Haste %"], [219, "Mod Mana Regeneration by % of Stat"],
|
||||
[220, "Mod Combat Rating by % of Stat"],[221, "Ignore Threat"], [223, "Raid Proc from Charge"], [225, "Raid Proc from Charge with Value"],[226, "Periodic Dummy"],
|
||||
[227, "Periodically Trigger Spell with Value"],[228, "Detect Stealth"], [229, "Mod AoE Damage Taken %"], [230, "Mod Maximum Health - Flat (not stacking)"],[231, "Proc Trigger Spell with Value"],
|
||||
[232, "Mod Mechanic Duration %"], [233, "Change other Humanoid Display"], [234, "Mod Mechanic Duration % (not stacking)"],[235, "Mod Dispel Resistance %"],[236, "Control Vehicle"],
|
||||
[237, "Mod Spell Power by % of Attack Power"],[238, "Mod Healing Power by % of Attack Power"],[239, "Mod Size % (not stacking)"],[240, "Mod Expertise"], [241, "Force Move Forward"],
|
||||
[242, "Mod Spell & Healing Power by % of Int"],[243, "Faction Override"], [244, "Comprehend Language"], [245, "Mod Aura Duration by Dispel Type"],[246, "Mod Aura Duration by Dispel Type (not stacking)"],
|
||||
[247, "Clone Caster"], [248, "Mod Combat Result Chance"], [249, "Convert Rune"], [250, "Mod Maximum Health - Flat (stacking)"],[251, "Mod Enemy Dodge Chance"],
|
||||
[252, "Mod Haste % (loss)"], [253, "Mod Critical Block Chance"], [254, "Disarm Offhand"], [255, "Mod Mechanic Damage Taken %"], [256, "No Reagent Cost"],
|
||||
[257, "Mod Target Resistance by Spell Class"],[258, "Mod Spell Visual"], [259, "Mod Periodic Healing Taken %"], [260, "Screen Effect"], [261, "Phase"],
|
||||
[262, "Ability Ignore Aurastate"], [263, "Allow Only Ability"], [267, "Cancel Aura Buffer at % of Caster Health"],[268, "Mod Attack Power by % of Stat"],[269, "Ignore Target Resistance"],
|
||||
[270, "Ignore Target Resistance for Ability"],[271, "Mod Damage Taken % from Caster"],[272, "Ignore Swing Timer Reset"],[273, "X-Ray"], [274, "Ability Consume No Ammo"],
|
||||
[275, "Mod Ability Ignore Shapeshift"], [276, "Mod Mechanic Damage Done %"], [277, "Mod Max Affected Targets"], [278, "Disarm Ranged Weapon"], [279, "Spawn Effect"],
|
||||
[280, "Mod Armor Penetration %"], [281, "Mod Honor Gain %"], [282, "Mod Base Health %"], [283, "Mod Healing Taken % from Caster"],[284, "Linked Aura"],
|
||||
[285, "Mod Attack Power by School Resistance"],[286, "Allow Periodic Ability to Crit"],[287, "Mod Spell Deflect Chance"],[288, "Ignore Hit Direction"], [290, "Mod Crit Chance"],
|
||||
[291, "Mod Quest Experience Gained %"], [292, "Open Stable"], [293, "Override Spells"], [294, "Prevent Power Regeneration"], [296, "Set Vehicle Id"],
|
||||
[297, "Spirit Burst"], [298, "Strangulate"], [300, "Share Damage %"], [301, "Mod Absorb School Healing"], [303, "Mod Damage Done vs Aurastate - %"],
|
||||
[304, "Fake Inebriate"], [305, "Mod Minimum Speed %"], [307, "Heal Absorb Test"], [308, "Mod Critical Strike Chance for Caster"],[310, "Mod Pet AOE Damage Avoidance"],
|
||||
[314, "Prevent Ressurection"], [315, "Underwater Walking"], [316, "Periodic Haste"]
|
||||
],
|
||||
effecttype: [
|
||||
[1, "Instakill"], [2, "School Damage"], [3, "Dummy"], [4, "Portal Teleport"], [5, "Teleport Units"],
|
||||
[6, "Apply Aura"], [7, "Environment Damage"], [8, "Drain Power"], [9, "Drain Health"], [10, "Heal"],
|
||||
[11, "Bind"], [12, "Portal"], [13, "Ritual Base"], [14, "Ritual Specialize"], [15, "Ritual Activate Portal"],
|
||||
[16, "Complete Quest"], [17, "Weapon Damage - No School"], [18, "Resurrect with % Health"], [19, "Add Extra Attacks"], [20, "Can Dodge"],
|
||||
[21, "Can Evade"], [22, "Can Parry"], [23, "Can Block"], [24, "Create Item"], [25, "Can Use Weapon"],
|
||||
[26, "Know Defense Skill"], [27, "Persistent Area Aura"], [28, "Summon"], [29, "Leap"], [30, "Give Power"],
|
||||
[31, "Weapon Damage - %"], [32, "Trigger Missile"], [33, "Open Lock"], [34, "Transform Item"], [35, "Apply Area Aura - Party"],
|
||||
[36, "Learn Spell"], [37, "Know Spell Defense"], [38, "Dispel"], [39, "Learn Language"], [40, "Dual Wield"],
|
||||
[41, "Jump to Target"], [42, "Jump Behind Target"], [43, "Teleport Target to Caster"], [44, "Learn Skill Step"], [45, "Give Honor"],
|
||||
[46, "Spawn"], [47, "Trade Skill"], [48, "Base Stealth"], [49, "Base Detect Stealthed"], [50, "Summon Object"],
|
||||
[51, "Force Critical Hit"], [52, "Guarantee Hit"], [53, "Enchant Item - Permanent"], [54, "Enchant Item - Temporary"], [55, "Tame Creature"],
|
||||
[56, "Summon Pet"], [57, "Learn Spell - Pet"], [58, "Weapon Damage - Flat"], [59, "Open Item & Fast Loot"], [60, "Proficiency"],
|
||||
[61, "Send Script Event"], [62, "Burn Power"], [63, "Modify Threat - Flat"], [64, "Trigger Spell"], [65, "Apply Area Aura - Raid"],
|
||||
[66, "Create Mana Gem"], [67, "Heal to Full"], [68, "Interrupt Cast"], [69, "Distract"], [70, "Distract Move"],
|
||||
[71, "Pickpocket"], [72, "Far Sight"], [73, "Forget Talents"], [74, "Apply Glyph"], [75, "Heal Mechanical"],
|
||||
[76, "Summon Object - Temporary"], [77, "Script Effect"], [78, "Attack"], [79, "Abort All Pending Attacks"], [80, "Add Combo Points"],
|
||||
[81, "Create House"], [82, "Bind Sight"], [83, "Duel"], [84, "Stuck"], [85, "Summon Player"],
|
||||
[86, "Activate Object"], [87, "Siege Damage"], [88, "Repair Building"], [89, "Building Action"], [90, "Kill Credit"],
|
||||
[91, "Threat All"], [92, "Enchant Held Item"], [93, "Force Deselect"], [94, "Self Resurrect"], [95, "Skinning"],
|
||||
[96, "Charge"], [97, "Cast Button"], [98, "Knock Back"], [99, "Disenchant"], [100, "Inebriate"],
|
||||
[101, "Feed Pet"], [102, "Dismiss Pet"], [103, "Give Reputation"], [104, "Summon Object(Trap)"], [105, "Summon Object(Battle S.)"],
|
||||
[106, "Summon Object(#3)"], [107, "Summon Object(#4)"], [108, "Dispel Mechanic"], [109, "Resurrect Dead Pet"], [110, "Destroy All Totems"],
|
||||
[111, "Durability Damage - Flat"], [112, "Summon Demon"], [113, "Resurrect with Flat Health"], [114, "Taunt"], [115, "Durability Damage - %"],
|
||||
[116, "Skin Player Corpse (PvP)"], [117, "AoE Resurrect with % Health"], [118, "Learn Skill"], [119, "Apply Area Aura - Pet"], [120, "Teleport to Graveyard"],
|
||||
[121, "Normalized Weapon Damage"], [123, "Take Flight Path"], [124, "Pull Towards"], [125, "Modify Threat - %"],
|
||||
[126, "Spell Steal"], [127, "Prospect"], [128, "Apply Area Aura - Friend"], [129, "Apply Area Aura - Enemy"], [130, "Redirect Done Threat %"],
|
||||
[131, "Play Sound"], [132, "Play Music"], [133, "Unlearn Specialization"], [134, "Kill Credit2"], [135, "Call Pet"],
|
||||
[136, "Heal for % of Total Health"], [137, "Give % of Total Power"], [138, "Leap Back"], [139, "Abandon Quest"], [140, "Force Spell Cast"],
|
||||
[141, "Force Spell Cast with Value"], [142, "Trigger Spell with Value"], [143, "Apply Area Aura - Pet Owner"], [144, "Knockback to Dest."], [145, "Pull Towards Dest."],
|
||||
[146, "Activate Rune"], [147, "Fail Quest"], [149, "Charge to Dest."], [150, "Start Quest"],
|
||||
[151, "Trigger Spell 2"], [152, "Summon - Refer-A-Friend"], [153, "Create Tamed Pet"], [154, "Discover Flight Path"], [155, "Dual Wield 2H Weapons"],
|
||||
[156, "Add Socket to Item"], [157, "Create Tradeskill Item"], [158, "Milling"], [159, "Rename Pet"],
|
||||
[161, "Change Talent Spec. Count"], [162, "Activate Talent Spec."], [164, "Remove Aura"],
|
||||
[167, "Update Player Phase"]
|
||||
],
|
||||
damagetype: [
|
||||
[1, "无"], [2, "魔法"], [3, "近战"], [4, "远程"]
|
||||
],
|
||||
resourcetype: [
|
||||
[4, "能量"], [5, "集中"], [6, "生命"], [8, "法力"],
|
||||
[9, "愤怒"], [10, "符文"], [11, "符文能量"], [14, "Happiness"],
|
||||
[15, "Ammo"], [16, "蓝铁"], [17, "蒸汽动力"], [18, "Heat"],
|
||||
[19, "Ooze"], [20, "Blood Power"], [21, "Wrath"]
|
||||
],
|
||||
flags: [
|
||||
[1, '0x00000001'], [2, '0x00000002'], [3, '0x00000004'], [4, '0x00000008'], [5, '0x00000010'],
|
||||
[6, '0x00000020'], [7, '0x00000040'], [8, '0x00000080'], [9, '0x00000100'], [10,'0x00000200'],
|
||||
|
|
@ -3950,26 +4060,113 @@ var LANG = {
|
|||
},
|
||||
|
||||
fispells: {
|
||||
sepgeneral: "一般",
|
||||
prcntbasemanarequired: "需 % 法力值",
|
||||
firstrank: "首排名",
|
||||
lastrank: "末排名",
|
||||
rankno: "排位 #...",
|
||||
rewardsskillups: "奖励技能点",
|
||||
manaenergyragecost: "资源花费",
|
||||
requiresnearbyobject: "需要附近物品",
|
||||
hasreagents: "具备施法材料",
|
||||
scaling: "按等级缩放",
|
||||
requiresprofspec: "需要专业专精",
|
||||
source: "来源",
|
||||
trainingcost: "训练成本",
|
||||
id: "ID",
|
||||
icon: "图标",
|
||||
sepgeneral: "一般",
|
||||
prcntbasemanarequired: "需 % 法力值",
|
||||
casttime: "施法时间",
|
||||
channeled: "瞄准",
|
||||
firstrank: "首排名",
|
||||
lastrank: "末排名",
|
||||
rankno: "排位 #...",
|
||||
proficiencytype: "精通类型",
|
||||
rewardsskillups: "奖励技能点",
|
||||
manaenergyragecost: "资源花费",
|
||||
requiresnearbyobject: "需要附近物品",
|
||||
hasreagents: "具备施法材料",
|
||||
scaling: "按等级缩放",
|
||||
requiresprofspec: "需要专业专精",
|
||||
requiresfaction: "需要阵营",
|
||||
resourcetype: "资源类型",
|
||||
source: "来源",
|
||||
trainingcost: "训练成本",
|
||||
usablewhenshapeshifted: "可在变形时使用",
|
||||
id: "ID",
|
||||
icon: "图标",
|
||||
appliesaura: "光环效果类型",
|
||||
effecttype: "效果类型",
|
||||
scalingap: "与攻击伤害成比例",
|
||||
scalingsp: "与法术伤害成比例",
|
||||
|
||||
sepcommunity: "社区",
|
||||
hascomments: "有评论",
|
||||
hasscreenshots: "有截屏",
|
||||
hasvideos: "有视频"
|
||||
sepattributes: "属性",
|
||||
combatcastable: "可在战斗中施法",
|
||||
chancetocrit: "致命一击几率",
|
||||
chancetomiss: "未命中几率",
|
||||
persiststhroughdeath: "死亡后继续存在",
|
||||
requiresmetamorphosis: "需要变形",
|
||||
requiresstealth: "需要潜行",
|
||||
spellstealable: "可盗法",
|
||||
damagetype: "伤害类型",
|
||||
usablewhenstunned: "昏迷中可用",
|
||||
usableinbgs: "只在战斗场地可用",
|
||||
usableinarenas: "可在竞技场使用",
|
||||
disregardimmunity: "忽略免疫",
|
||||
disregardschoolimmunity: "忽略类型免疫",
|
||||
reqrangedweapon: "需要远距离武器",
|
||||
onnextswingplayers: "再次攻击时生效(玩家)",
|
||||
passivespell: "被动技能",
|
||||
hiddenaura: "隐藏光环",
|
||||
onnextswingnpcs: "再次攻击时生效(npc)",
|
||||
daytimeonly: "只可在白天使用",
|
||||
nighttimeonly: "只可在夜间使用",
|
||||
indoorsonly: "只可在室内使用",
|
||||
outdoorsonly: "只可在室外使用",
|
||||
damagedependsonlevel: "法术伤害取决于施法者等级",
|
||||
stopsautoattack: "停止自动攻击",
|
||||
cannotavoid: "无法躲避、招架或格挡",
|
||||
usabledead: "死亡后可用",
|
||||
usablemounted: "骑乘时可用",
|
||||
usablesitting: "坐下时可用",
|
||||
delayedrecoverystarttime: "光效褪去后开始冷却",
|
||||
uncancellableaura: "无法取消光环",
|
||||
usesallpower: "消耗所有力量",
|
||||
channeled: "引导",
|
||||
cannotreflect: "无法反射",
|
||||
usablestealthed: "不打破潜行",
|
||||
harmful: "所有法术效果都是有害的",
|
||||
targetnotincombat: "目标不能处于战斗中",
|
||||
nothreat: "不产生威胁",
|
||||
pickpocket: "偷窃法术",
|
||||
dispelauraonimmunity: "免疫时移除光效",
|
||||
reqfishingpole: "需要钓鱼竿",
|
||||
requntappedtarget: "需要未作用过的目标",
|
||||
targetownitem: "目标必须为自有物品",
|
||||
doesntreqshapeshift: "不需要形变",
|
||||
foodbuff: "食物/饮料增强",
|
||||
targetonlyplayer: "只能瞄准玩家",
|
||||
reqmainhand: "需要主手武器",
|
||||
doesntengagetarget: "无目标接触",
|
||||
reqwand: "需要魔杖",
|
||||
reqoffhand: "需要副手武器",
|
||||
nolog: "不在日志中显示",
|
||||
auratickswhileloggedout: "退出登录后仍继续",
|
||||
startstickingatapplication: "光环出现时开始计时",
|
||||
usableconfused: "混乱时可用",
|
||||
usablefeared: "恐惧时可用",
|
||||
onlyarena: "只可在竞技场中使用",
|
||||
notinraid: "团队副本中无法使用",
|
||||
paladinaura: "圣骑士光环",
|
||||
totemspell: "图腾",
|
||||
bandagespell: "绷带法术",
|
||||
onGlobalCooldown: "On global cooldown",
|
||||
|
||||
sepcommunity: "社区",
|
||||
hascomments: "有评论",
|
||||
hasscreenshots: "有截屏",
|
||||
hasvideos: "有视频",
|
||||
|
||||
sepstaffonly: "Staff only",
|
||||
flags1: "Flags (1)",
|
||||
flags2: "Flags (2)",
|
||||
flags3: "Flags (3)",
|
||||
flags4: "Flags (4)",
|
||||
flags5: "Flags (5)",
|
||||
flags6: "Flags (6)",
|
||||
flags7: "Flags (7)",
|
||||
flags8: "Flags (8)",
|
||||
flags9: "Flags (9)",
|
||||
flags10: "Flags (10)",
|
||||
flags11: "Flags (11)",
|
||||
flags12: "Flags (12)",
|
||||
flags13: "Flags (13)"
|
||||
},
|
||||
|
||||
fiachievements: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue