Proper naming for ReuseSkillIdByDamage effect.
This commit is contained in:
parent
f09686c720
commit
38e9f81e9c
@ -314,8 +314,8 @@ public class EffectMasterHandler
|
|||||||
EffectHandler.getInstance().registerHandler("Resurrection", Resurrection::new);
|
EffectHandler.getInstance().registerHandler("Resurrection", Resurrection::new);
|
||||||
EffectHandler.getInstance().registerHandler("ResurrectionSpecial", ResurrectionSpecial::new);
|
EffectHandler.getInstance().registerHandler("ResurrectionSpecial", ResurrectionSpecial::new);
|
||||||
EffectHandler.getInstance().registerHandler("Reuse", Reuse::new);
|
EffectHandler.getInstance().registerHandler("Reuse", Reuse::new);
|
||||||
EffectHandler.getInstance().registerHandler("ReuseSkillByDamageId", ReuseSkillByDamageId::new);
|
|
||||||
EffectHandler.getInstance().registerHandler("ReuseSkillById", ReuseSkillById::new);
|
EffectHandler.getInstance().registerHandler("ReuseSkillById", ReuseSkillById::new);
|
||||||
|
EffectHandler.getInstance().registerHandler("ReuseSkillIdByDamage", ReuseSkillIdByDamage::new);
|
||||||
EffectHandler.getInstance().registerHandler("Root", Root::new);
|
EffectHandler.getInstance().registerHandler("Root", Root::new);
|
||||||
EffectHandler.getInstance().registerHandler("SacrificeSummon", SacrificeSummon::new);
|
EffectHandler.getInstance().registerHandler("SacrificeSummon", SacrificeSummon::new);
|
||||||
EffectHandler.getInstance().registerHandler("SafeFallHeight", SafeFallHeight::new);
|
EffectHandler.getInstance().registerHandler("SafeFallHeight", SafeFallHeight::new);
|
||||||
|
@ -32,7 +32,7 @@ import org.l2jmobius.gameserver.network.serverpackets.SkillCoolTime;
|
|||||||
/**
|
/**
|
||||||
* @author NasSeKa
|
* @author NasSeKa
|
||||||
*/
|
*/
|
||||||
public class ReuseSkillByDamageId extends AbstractEffect
|
public class ReuseSkillIdByDamage extends AbstractEffect
|
||||||
{
|
{
|
||||||
private final int _minAttackerLevel;
|
private final int _minAttackerLevel;
|
||||||
private final int _maxAttackerLevel;
|
private final int _maxAttackerLevel;
|
||||||
@ -43,7 +43,7 @@ public class ReuseSkillByDamageId extends AbstractEffect
|
|||||||
private final int _amount;
|
private final int _amount;
|
||||||
private final InstanceType _attackerType;
|
private final InstanceType _attackerType;
|
||||||
|
|
||||||
public ReuseSkillByDamageId(StatSet params)
|
public ReuseSkillIdByDamage(StatSet params)
|
||||||
{
|
{
|
||||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
@ -1040,15 +1040,15 @@
|
|||||||
<effect name="GetDamageLimit">
|
<effect name="GetDamageLimit">
|
||||||
<amount>500</amount>
|
<amount>500</amount>
|
||||||
</effect>
|
</effect>
|
||||||
<effect name="ReuseSkillByDamageId">
|
<effect name="ReuseSkillIdByDamage">
|
||||||
<skillId>30963</skillId>
|
<skillId>30963</skillId>
|
||||||
<chance>70</chance>
|
<chance>70</chance>
|
||||||
</effect>
|
</effect>
|
||||||
<effect name="ReuseSkillByDamageId">
|
<effect name="ReuseSkillIdByDamage">
|
||||||
<skillId>30964</skillId>
|
<skillId>30964</skillId>
|
||||||
<chance>70</chance>
|
<chance>70</chance>
|
||||||
</effect>
|
</effect>
|
||||||
<effect name="ReuseSkillByDamageId">
|
<effect name="ReuseSkillIdByDamage">
|
||||||
<skillId>30965</skillId>
|
<skillId>30965</skillId>
|
||||||
<chance>70</chance>
|
<chance>70</chance>
|
||||||
</effect>
|
</effect>
|
||||||
|
@ -281,8 +281,8 @@ RestorationRandom: Creates items randomly from a specified list. Its multiplied
|
|||||||
Resurrection: Resurrects target Player or Summon.
|
Resurrection: Resurrects target Player or Summon.
|
||||||
ResurrectionSpecial: Resurrects target Player or Summon only in specified instance IDs.
|
ResurrectionSpecial: Resurrects target Player or Summon only in specified instance IDs.
|
||||||
Reuse: Decreases skill reuse time based on its magic type.
|
Reuse: Decreases skill reuse time based on its magic type.
|
||||||
ReuseSkillByDamageId: Resets reuse time for the skill with the specific damage id. (l2jmobius)
|
|
||||||
ReuseSkillById: Resets reuse time for the skill with the specific id. (l2jmobius)
|
ReuseSkillById: Resets reuse time for the skill with the specific id. (l2jmobius)
|
||||||
|
ReuseSkillIdByDamage: Resets reuse time for the skill with the specific id when damage is taken. (l2jmobius)
|
||||||
Root: Stops movement.
|
Root: Stops movement.
|
||||||
SacrificeSummon: Sacrifices the players summon. (l2jmobius)
|
SacrificeSummon: Sacrifices the players summon. (l2jmobius)
|
||||||
SafeFallHeight: Minimum falling height for taking damage stat.
|
SafeFallHeight: Minimum falling height for taking damage stat.
|
||||||
|
@ -311,8 +311,8 @@ public class EffectMasterHandler
|
|||||||
EffectHandler.getInstance().registerHandler("Resurrection", Resurrection::new);
|
EffectHandler.getInstance().registerHandler("Resurrection", Resurrection::new);
|
||||||
EffectHandler.getInstance().registerHandler("ResurrectionSpecial", ResurrectionSpecial::new);
|
EffectHandler.getInstance().registerHandler("ResurrectionSpecial", ResurrectionSpecial::new);
|
||||||
EffectHandler.getInstance().registerHandler("Reuse", Reuse::new);
|
EffectHandler.getInstance().registerHandler("Reuse", Reuse::new);
|
||||||
EffectHandler.getInstance().registerHandler("ReuseSkillByDamageId", ReuseSkillByDamageId::new);
|
|
||||||
EffectHandler.getInstance().registerHandler("ReuseSkillById", ReuseSkillById::new);
|
EffectHandler.getInstance().registerHandler("ReuseSkillById", ReuseSkillById::new);
|
||||||
|
EffectHandler.getInstance().registerHandler("ReuseSkillIdByDamage", ReuseSkillIdByDamage::new);
|
||||||
EffectHandler.getInstance().registerHandler("Root", Root::new);
|
EffectHandler.getInstance().registerHandler("Root", Root::new);
|
||||||
EffectHandler.getInstance().registerHandler("SacrificeSummon", SacrificeSummon::new);
|
EffectHandler.getInstance().registerHandler("SacrificeSummon", SacrificeSummon::new);
|
||||||
EffectHandler.getInstance().registerHandler("SafeFallHeight", SafeFallHeight::new);
|
EffectHandler.getInstance().registerHandler("SafeFallHeight", SafeFallHeight::new);
|
||||||
|
@ -32,7 +32,7 @@ import org.l2jmobius.gameserver.network.serverpackets.SkillCoolTime;
|
|||||||
/**
|
/**
|
||||||
* @author NasSeKa
|
* @author NasSeKa
|
||||||
*/
|
*/
|
||||||
public class ReuseSkillByDamageId extends AbstractEffect
|
public class ReuseSkillIdByDamage extends AbstractEffect
|
||||||
{
|
{
|
||||||
private final int _minAttackerLevel;
|
private final int _minAttackerLevel;
|
||||||
private final int _maxAttackerLevel;
|
private final int _maxAttackerLevel;
|
||||||
@ -43,7 +43,7 @@ public class ReuseSkillByDamageId extends AbstractEffect
|
|||||||
private final int _amount;
|
private final int _amount;
|
||||||
private final InstanceType _attackerType;
|
private final InstanceType _attackerType;
|
||||||
|
|
||||||
public ReuseSkillByDamageId(StatSet params)
|
public ReuseSkillIdByDamage(StatSet params)
|
||||||
{
|
{
|
||||||
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
_minAttackerLevel = params.getInt("minAttackerLevel", 1);
|
||||||
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
_maxAttackerLevel = params.getInt("maxAttackerLevel", Integer.MAX_VALUE);
|
@ -279,8 +279,8 @@ RestorationRandom: Creates items randomly from a specified list. Its multiplied
|
|||||||
Resurrection: Resurrects target Player or Summon.
|
Resurrection: Resurrects target Player or Summon.
|
||||||
ResurrectionSpecial: Resurrects target Player or Summon only in specified instance IDs.
|
ResurrectionSpecial: Resurrects target Player or Summon only in specified instance IDs.
|
||||||
Reuse: Decreases skill reuse time based on its magic type.
|
Reuse: Decreases skill reuse time based on its magic type.
|
||||||
ReuseSkillByDamageId: Resets reuse time for the skill with the specific damage id. (l2jmobius)
|
|
||||||
ReuseSkillById: Resets reuse time for the skill with the specific id. (l2jmobius)
|
ReuseSkillById: Resets reuse time for the skill with the specific id. (l2jmobius)
|
||||||
|
ReuseSkillIdByDamage: Resets reuse time for the skill with the specific id when damage is taken. (l2jmobius)
|
||||||
Root: Stops movement.
|
Root: Stops movement.
|
||||||
SacrificeSummon: Sacrifices the players summon. (l2jmobius)
|
SacrificeSummon: Sacrifices the players summon. (l2jmobius)
|
||||||
SafeFallHeight: Minimum falling height for taking damage stat.
|
SafeFallHeight: Minimum falling height for taking damage stat.
|
||||||
|
Loading…
Reference in New Issue
Block a user