Addition of area of effect damage effects.
Thanks to quangnguyen.
This commit is contained in:
@@ -47,6 +47,8 @@ public class EffectMasterHandler
|
||||
EffectHandler.getInstance().registerHandler("AgathionSlot", AgathionSlot::new);
|
||||
EffectHandler.getInstance().registerHandler("AirBind", AirBind::new);
|
||||
EffectHandler.getInstance().registerHandler("AreaDamage", AreaDamage::new);
|
||||
EffectHandler.getInstance().registerHandler("AreaOfEffectDamageDefence", AreaOfEffectDamageDefence::new);
|
||||
EffectHandler.getInstance().registerHandler("AreaOfEffectDamageModifier", AreaOfEffectDamageModifier::new);
|
||||
EffectHandler.getInstance().registerHandler("ArtifactSlot", ArtifactSlot::new);
|
||||
EffectHandler.getInstance().registerHandler("AttackAttribute", AttackAttribute::new);
|
||||
EffectHandler.getInstance().registerHandler("AttackAttributeAdd", AttackAttributeAdd::new);
|
||||
|
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* 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;
|
||||
|
||||
/**
|
||||
* @author quangnguyen
|
||||
*/
|
||||
public class AreaOfEffectDamageDefence extends AbstractStatEffect
|
||||
{
|
||||
public AreaOfEffectDamageDefence(StatSet params)
|
||||
{
|
||||
super(params, Stat.AREA_OF_EFFECT_DAMAGE_DEFENCE);
|
||||
}
|
||||
}
|
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* 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;
|
||||
|
||||
/**
|
||||
* @author quangnguyen
|
||||
*/
|
||||
public class AreaOfEffectDamageModifier extends AbstractStatPercentEffect
|
||||
{
|
||||
public AreaOfEffectDamageModifier(StatSet params)
|
||||
{
|
||||
super(params, Stat.AREA_OF_EFFECT_DAMAGE_MODIFIER);
|
||||
}
|
||||
}
|
@@ -16,6 +16,8 @@ AddTeleportBookmarkSlot: Instant effect that increases the amount of My Teleport
|
||||
AgathionSlot: Agathion slot modifier. (l2jmobius)
|
||||
AirBind: Used by airbind chain skills. (l2jmobius)
|
||||
AreaDamage: Topography (Danger Zone) resistance stat.
|
||||
AreaOfEffectDamageDefence: Area of effect damage defence stat. (l2jmobius)
|
||||
AreaOfEffectDamageModifier: Area of effect damage modifier. (l2jmobius)
|
||||
ArtifactSlot: Artifact slot modifier. (l2jmobius)
|
||||
AttackAttribute: Stat that increases specific attack attribute.
|
||||
AttackAttributeAdd: Stat that increases all attack attribute.
|
||||
|
Reference in New Issue
Block a user