Removed level parameters from trigger skill effects.
This commit is contained in:
@@ -58,7 +58,7 @@ public class TriggerSkillByAttack extends AbstractEffect
|
||||
public TriggerSkillByAttack(StatSet params)
|
||||
{
|
||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", 127);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
||||
_minDamage = params.getInt("minDamage", 1);
|
||||
_chance = params.getInt("chance", 100);
|
||||
_skill = new SkillHolder(params.getInt("skillId"), params.getInt("skillLevel", 1));
|
||||
|
||||
@@ -52,7 +52,7 @@ public class TriggerSkillByDamage extends AbstractEffect
|
||||
public TriggerSkillByDamage(StatSet params)
|
||||
{
|
||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", 127);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
||||
_minDamage = params.getInt("minDamage", 1);
|
||||
_chance = params.getInt("chance", 100);
|
||||
_hpPercent = params.getInt("hpPercent", 100);
|
||||
|
||||
@@ -50,9 +50,9 @@ public class TriggerSkillByDeathBlow extends AbstractEffect
|
||||
public TriggerSkillByDeathBlow(StatSet params)
|
||||
{
|
||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", 127);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
||||
_chance = params.getInt("chance", 100);
|
||||
_skill = new SkillHolder(params.getInt("skillId"), params.getInt("skillLevel"));
|
||||
_skill = new SkillHolder(params.getInt("skillId"), params.getInt("skillLevel", 1));
|
||||
_targetType = params.getEnum("targetType", TargetType.class, TargetType.SELF);
|
||||
_attackerType = params.getEnum("attackerType", InstanceType.class, InstanceType.Creature);
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ public class TriggerSkillBySkillAttack extends AbstractEffect
|
||||
public TriggerSkillBySkillAttack(StatSet params)
|
||||
{
|
||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", 127);
|
||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
||||
_minDamage = params.getInt("minDamage", 1);
|
||||
_chance = params.getInt("chance", 100);
|
||||
_skill = new SkillHolder(params.getInt("skillId"), params.getInt("skillLevel", 1));
|
||||
|
||||
@@ -72,8 +72,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="9" toLevel="53">
|
||||
<!-- Blunt Mastery -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>50</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -656,8 +654,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="11" toLevel="53">
|
||||
<!-- Slow -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -669,8 +665,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="11" toLevel="53">
|
||||
<!-- Slow -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
|
||||
@@ -2900,8 +2900,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Cancel Shadow Move -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>107</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>100</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
@@ -2913,8 +2911,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Cancel Shadow Move -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>107</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>100</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
|
||||
@@ -2553,8 +2553,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Mirage -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>80</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -3491,8 +3489,6 @@
|
||||
<skillLevel>1</skillLevel>
|
||||
<allowWeapons>ALL</allowWeapons>
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>
|
||||
|
||||
@@ -1615,8 +1615,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Iron Shield -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -1797,8 +1795,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Counter Chance -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -1817,8 +1813,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Counter Rapid Shot -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -1837,8 +1831,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Counter Dash -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -1857,8 +1849,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Counter Mind -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -3157,8 +3147,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Cancel Shadow Move -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>107</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>100</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
@@ -3170,8 +3158,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Cancel Shadow Move -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>107</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>100</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
|
||||
@@ -1213,8 +1213,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Warrior Ability - Haste -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1236,8 +1234,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Knight Ability - Defense -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1257,8 +1253,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Log Ability - Critical Chance -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1280,8 +1274,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Wizard Ability - Mana Steal -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1303,8 +1295,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Enchanter Ability - Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -2140,8 +2140,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Protection Power -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>300</minDamage>
|
||||
@@ -2164,8 +2162,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Protection Power -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -2200,8 +2196,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Protection Power -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -2228,8 +2222,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Physical Pose -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>3</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -2280,8 +2272,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Physical Pose -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>3</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -2354,8 +2344,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Seed of Revenge -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>8</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -2559,8 +2547,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Expose Weak Point -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -3126,8 +3112,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Spirit of Phoenix -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -3236,8 +3220,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Eva's Will -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -3323,8 +3305,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Pain of Shillien -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -3559,8 +3539,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Betrayal Mark -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -4346,8 +4346,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Patience -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4879,8 +4877,6 @@
|
||||
</skillLevel>
|
||||
<allowWeapons>DUAL,SWORD,BLUNT</allowWeapons>
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>15</chance>
|
||||
@@ -4904,8 +4900,6 @@
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
</effect>
|
||||
</effects>
|
||||
</skill>
|
||||
@@ -4953,8 +4947,6 @@
|
||||
</skillLevel>
|
||||
<allowWeapons>DUALFIST</allowWeapons>
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>15</chance>
|
||||
@@ -4978,8 +4970,6 @@
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
</effect>
|
||||
</effects>
|
||||
</skill>
|
||||
|
||||
@@ -3982,8 +3982,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Oblivion -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4041,8 +4039,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Weak Constitution -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4112,8 +4108,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Thin Skin -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4171,8 +4165,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Enervation -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4225,8 +4217,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Spite -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4278,8 +4268,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Mental Impoverish -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4450,8 +4438,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Healer Ability - Heal -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4471,8 +4457,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Summoner Ability - Spirit -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4503,8 +4487,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Flame Armor -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4539,8 +4521,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Frost Armor -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4575,8 +4555,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Hurricane Armor -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -4681,8 +4659,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Excessive Royalty -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>SUMMON</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -4701,8 +4677,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Mutual Response -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>5</chance>
|
||||
<targetType>SUMMON</targetType>
|
||||
|
||||
@@ -497,8 +497,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Light Flow -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>30</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -714,8 +712,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Lightning Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>100</minDamage>
|
||||
@@ -1656,8 +1652,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Steal Mana -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<minDamage>
|
||||
<value level="1">41</value>
|
||||
<value level="2">51</value>
|
||||
@@ -2239,8 +2233,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Bless the Blood -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>60</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>60</minDamage>
|
||||
@@ -2757,8 +2749,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Counter Critical -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>80</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>300</minDamage>
|
||||
@@ -2783,8 +2773,6 @@
|
||||
<effects>
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>5</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
@@ -2795,8 +2783,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>MY_PARTY</targetType>
|
||||
@@ -2807,8 +2793,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -3819,8 +3803,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Penetration Attack -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>107</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -836,8 +836,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="1" toLevel="1">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -848,8 +846,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="1" toLevel="1">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -860,8 +856,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="2" toLevel="2">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -872,8 +866,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="2" toLevel="2">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -952,8 +944,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByDamage" fromLevel="1" toLevel="1">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -962,8 +952,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByDamage" fromLevel="2" toLevel="2">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -972,8 +960,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByDamage" fromLevel="3" toLevel="3">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>15</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -982,8 +968,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByDamage" fromLevel="4" toLevel="4">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -281,8 +281,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Heal -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -323,8 +321,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Blessed Body -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -365,8 +361,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Prayer -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -407,8 +401,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Recharge -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -449,8 +441,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Blessed Soul -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -496,8 +486,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Mana Gain -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -543,8 +531,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Ritual -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -585,8 +571,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Cheer -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -632,8 +616,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Might -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -684,8 +666,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Empower -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -731,8 +711,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Duel Might -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -778,8 +756,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Shield -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -830,8 +806,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Magic Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -877,8 +851,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Duel Weakness -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -924,8 +896,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Agility -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -976,8 +946,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Guidance -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1023,8 +991,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Focus -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1065,8 +1031,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Wild Magic -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1112,8 +1076,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Charm -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>1</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1164,8 +1126,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Slow -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1216,8 +1176,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Winter -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1263,8 +1221,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Stun -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1305,8 +1261,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Hold -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1347,8 +1301,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Sleep -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1389,8 +1341,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Paralyze -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1431,8 +1381,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Medusa -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1473,8 +1421,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Fear -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1520,8 +1466,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Poison -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1572,8 +1516,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Bleed -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1619,8 +1561,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Silence -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1661,8 +1601,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Doom -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -542,8 +542,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Power of Apella -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>50</minDamage>
|
||||
@@ -614,8 +612,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Power of Apella -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>50</minDamage>
|
||||
@@ -686,8 +682,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Power of Apella -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>10</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>50</minDamage>
|
||||
|
||||
@@ -3890,8 +3890,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Decrease Speed -->
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>50</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -1271,8 +1271,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Stun -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>15</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -1636,8 +1634,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Seed of Revenge -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>
|
||||
<value level="1">10</value>
|
||||
<value level="2">10</value>
|
||||
@@ -1702,8 +1698,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Spirit of Phoenix -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>
|
||||
<value level="1">10</value>
|
||||
<value level="2">10</value>
|
||||
@@ -1776,8 +1770,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Eva's Will -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>
|
||||
<value level="1">10</value>
|
||||
<value level="2">10</value>
|
||||
@@ -1842,8 +1834,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Pain of Shillien -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<chance>
|
||||
<value level="1">10</value>
|
||||
<value level="2">10</value>
|
||||
|
||||
@@ -3214,8 +3214,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Oblivion Trap -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>60</chance>
|
||||
<targetType>SELF</targetType>
|
||||
|
||||
@@ -1014,8 +1014,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Bleed -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
|
||||
@@ -30,8 +30,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- NPC Trigger Target Cancel -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>90</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -76,8 +74,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- NPC Trigger Target Cancel -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>90</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -347,8 +343,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Putrefaction Cleanse -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>100</chance>
|
||||
<targetType>TARGET</targetType>
|
||||
@@ -2090,8 +2084,6 @@
|
||||
<skillId>5902</skillId> <!-- Cancel NPC Trigger Target -->
|
||||
<skillLevel>1</skillLevel>
|
||||
<attackerType>Attackable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<targetType>SELF</targetType>
|
||||
<chance>90</chance>
|
||||
</effect>
|
||||
|
||||
@@ -495,8 +495,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Bless the Blood -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>60</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>60</minDamage>
|
||||
|
||||
@@ -889,8 +889,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<attackerType>Playable</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>111</maxAttackerLevel>
|
||||
<skillId>35027</skillId> <!-- Border Power - Lv. 1 -->
|
||||
<skillLevel>
|
||||
<value level="1">0</value>
|
||||
|
||||
@@ -587,8 +587,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>1</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -671,8 +669,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="1" toLevel="1">
|
||||
<!-- Recover MP -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>2</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -685,8 +681,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="2" toLevel="2">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -699,8 +693,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="3" toLevel="3">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>6</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -713,8 +705,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="4" toLevel="4">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>8</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -727,8 +717,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="5" toLevel="5">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -741,8 +729,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="6" toLevel="6">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>12</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -755,8 +741,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="7" toLevel="7">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>14</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -769,8 +753,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="8" toLevel="8">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>16</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -783,8 +765,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="9" toLevel="9">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -797,8 +777,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="10" toLevel="10">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>24</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -968,8 +946,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="1" toLevel="1">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>2</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -982,8 +958,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="2" toLevel="2">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>4</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -996,8 +970,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="3" toLevel="3">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>6</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1010,8 +982,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="4" toLevel="4">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>8</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1024,8 +994,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="5" toLevel="5">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1038,8 +1006,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="6" toLevel="6">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>12</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1052,8 +1018,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="7" toLevel="7">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>14</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1066,8 +1030,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="8" toLevel="8">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>16</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1080,8 +1042,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="9" toLevel="9">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1094,8 +1054,6 @@
|
||||
</effect>
|
||||
<effect name="TriggerSkillByAttack" fromLevel="10" toLevel="10">
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>24</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
|
||||
@@ -529,8 +529,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="7" toLevel="10">
|
||||
<!-- Elmoreden Spirit Shot -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -544,8 +542,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="11" toLevel="14">
|
||||
<!-- Elmoreden Spirit Shot -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -559,8 +555,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="15" toLevel="18">
|
||||
<!-- Elmoreden Spirit Shot -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -574,8 +568,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="19" toLevel="20">
|
||||
<!-- Elmoreden Spirit Shot -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -589,8 +581,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="12" toLevel="12">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -604,8 +594,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="13" toLevel="13">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -619,8 +607,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="14" toLevel="14">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -634,8 +620,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="15" toLevel="15">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -649,8 +633,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="16" toLevel="16">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -664,8 +646,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="17" toLevel="17">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -679,8 +659,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="18" toLevel="18">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -694,8 +672,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="19" toLevel="19">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -709,8 +685,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="20" toLevel="20">
|
||||
<!-- Wrath of Elmoreden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -813,8 +787,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="7" toLevel="7">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -828,8 +800,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="8" toLevel="8">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -843,8 +813,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="9" toLevel="9">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -858,8 +826,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="10" toLevel="10">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -873,8 +839,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="11" toLevel="11">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -888,8 +852,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="12" toLevel="12">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -903,8 +865,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="13" toLevel="13">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -918,8 +878,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="14" toLevel="14">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -933,8 +891,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="15" toLevel="15">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -948,8 +904,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="16" toLevel="16">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -963,8 +917,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="17" toLevel="17">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -978,8 +930,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="18" toLevel="18">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -993,8 +943,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="19" toLevel="19">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1008,8 +956,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="20" toLevel="20">
|
||||
<!-- Wrath of Aden -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1137,8 +1083,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="7" toLevel="7">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1152,8 +1096,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="8" toLevel="8">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1167,8 +1109,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="9" toLevel="9">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1182,8 +1122,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="10" toLevel="10">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1197,8 +1135,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="11" toLevel="11">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1212,8 +1148,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="12" toLevel="12">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1227,8 +1161,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="13" toLevel="13">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1242,8 +1174,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="14" toLevel="14">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1257,8 +1187,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="15" toLevel="15">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1272,8 +1200,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="16" toLevel="16">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1287,8 +1213,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="17" toLevel="17">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1302,8 +1226,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="18" toLevel="18">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1317,8 +1239,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="19" toLevel="19">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1332,8 +1252,6 @@
|
||||
<effect name="TriggerSkillByAttack" fromLevel="20" toLevel="20">
|
||||
<!-- Wrath of Elmore -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>20</chance>
|
||||
<targetType>SELF</targetType>
|
||||
@@ -1636,8 +1554,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="12" toLevel="12">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1647,8 +1563,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="13" toLevel="13">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1658,8 +1572,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="14" toLevel="14">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1669,8 +1581,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="15" toLevel="15">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1680,8 +1590,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="16" toLevel="16">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1691,8 +1599,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="17" toLevel="17">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1702,8 +1608,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="18" toLevel="18">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1713,8 +1617,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="19" toLevel="19">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1724,8 +1626,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="20" toLevel="20">
|
||||
<!-- Recovery of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1735,8 +1635,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="18" toLevel="18">
|
||||
<!-- Defense of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1746,8 +1644,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="19" toLevel="19">
|
||||
<!-- Defense of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1757,8 +1653,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="20" toLevel="20">
|
||||
<!-- Defense of Ferios -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>2</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
|
||||
@@ -1164,8 +1164,6 @@
|
||||
<effect name="TriggerSkillByAttack">
|
||||
<!-- Legendary Cloak - Silence -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>100</maxAttackerLevel>
|
||||
<minDamage>1</minDamage>
|
||||
<chance>10</chance>
|
||||
<targetType>ENEMY</targetType>
|
||||
@@ -1214,8 +1212,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="1" toLevel="1">
|
||||
<!-- Legendary Cloak - Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1225,8 +1221,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="2" toLevel="2">
|
||||
<!-- Legendary Cloak - Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1236,8 +1230,6 @@
|
||||
<effect name="TriggerSkillByDamage" fromLevel="3" toLevel="3">
|
||||
<!-- Legendary Cloak - Barrier -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>5</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<minDamage>1</minDamage>
|
||||
@@ -1345,8 +1337,6 @@
|
||||
<effect name="TriggerSkillByDamage">
|
||||
<!-- Legendary Cloak - Invincibility -->
|
||||
<attackerType>Creature</attackerType>
|
||||
<minAttackerLevel>1</minAttackerLevel>
|
||||
<maxAttackerLevel>99</maxAttackerLevel>
|
||||
<chance>100</chance>
|
||||
<targetType>SELF</targetType>
|
||||
<hpPercent>30</hpPercent>
|
||||
|
||||
Reference in New Issue
Block a user