Addition of DefenceSkillCriticalDamage effect.
This commit is contained in:
@@ -114,6 +114,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -84,6 +84,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -114,6 +114,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -84,6 +84,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -114,6 +114,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -84,6 +84,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -118,6 +118,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -88,6 +88,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -119,6 +119,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -89,6 +89,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -120,6 +120,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -90,6 +90,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -120,6 +120,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -90,6 +90,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -120,6 +120,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -90,6 +90,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -113,6 +113,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -83,6 +83,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -113,6 +113,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -83,6 +83,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -114,6 +114,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -84,6 +84,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -115,6 +115,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -85,6 +85,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -115,6 +115,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -85,6 +85,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -115,6 +115,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -85,6 +85,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
@@ -114,6 +114,7 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("DefenceCriticalRate", DefenceCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalDamage", DefenceMagicCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceMagicCriticalRate", DefenceMagicCriticalRate::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceSkillCriticalDamage", DefenceSkillCriticalDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("DefenceTrait", DefenceTrait::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHate", DeleteHate::new);
|
||||
EffectHandler.getInstance().registerHandler("DeleteHateOfMe", DeleteHateOfMe::new);
|
||||
|
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package handlers.effecthandlers;
|
||||
|
||||
import org.l2jmobius.gameserver.model.StatSet;
|
||||
import org.l2jmobius.gameserver.model.stats.Stat;
|
||||
|
||||
/**
|
||||
* Equivalent of DefenceMagicCriticalDamage for physical skills.
|
||||
* @author Mobius
|
||||
*/
|
||||
public class DefenceSkillCriticalDamage extends AbstractStatEffect
|
||||
{
|
||||
public DefenceSkillCriticalDamage(StatSet params)
|
||||
{
|
||||
super(params, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL, Stat.DEFENCE_CRITICAL_DAMAGE_SKILL_ADD);
|
||||
}
|
||||
}
|
@@ -84,6 +84,7 @@ DefenceCriticalDamage: Critical Damage resist stat.
|
||||
DefenceCriticalRate: Critical Rate resist stat.
|
||||
DefenceMagicCriticalDamage: Magic Critical Damage resist stat.
|
||||
DefenceMagicCriticalRate: Magic Critical Rate resist stat.
|
||||
DefenceSkillCriticalDamage: Physical skill Critical Damage resist stat. (l2jmobius)
|
||||
DefenceTrait: Stat that manages all defence traits.
|
||||
DeleteHate: Has a chance to delete target's hate towards everyone.
|
||||
DeleteHateOfMe: Has a chance to delete target's hate towards you.
|
||||
|
Reference in New Issue
Block a user