Addition of AutoAttackDamageBonus effect.

Contributed by nasseka.
This commit is contained in:
MobiusDevelopment
2022-02-11 06:24:38 +00:00
parent c7a6edb614
commit 2a244f6cc4
117 changed files with 771 additions and 96 deletions

View File

@@ -48,6 +48,7 @@ public class EffectMasterHandler
EffectHandler.getInstance().registerHandler("AttackAttributeAdd", AttackAttributeAdd::new);
EffectHandler.getInstance().registerHandler("AttackBehind", AttackBehind::new);
EffectHandler.getInstance().registerHandler("AttackTrait", AttackTrait::new);
EffectHandler.getInstance().registerHandler("AutoAttackDamageBonus", AutoAttackDamageBonus::new);
EffectHandler.getInstance().registerHandler("Backstab", Backstab::new);
EffectHandler.getInstance().registerHandler("Betray", Betray::new);
EffectHandler.getInstance().registerHandler("Blink", Blink::new);

View File

@@ -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 NasSeKa
*/
public class AutoAttackDamageBonus extends AbstractStatPercentEffect
{
public AutoAttackDamageBonus(StatSet params)
{
super(params, Stat.AUTO_ATTACK_DAMAGE_BONUS);
}
}