Addition of FatalBlowDefence effect.
Contributed by Sahar.
This commit is contained in:
		| @@ -144,6 +144,7 @@ public class EffectMasterHandler | ||||
| 		EffectHandler.getInstance().registerHandler("FakeDeath", FakeDeath::new); | ||||
| 		EffectHandler.getInstance().registerHandler("FatalBlow", FatalBlow::new); | ||||
| 		EffectHandler.getInstance().registerHandler("FatalBlowRate", FatalBlowRate::new); | ||||
| 		EffectHandler.getInstance().registerHandler("FatalBlowRateDefence", FatalBlowRateDefence::new); | ||||
| 		EffectHandler.getInstance().registerHandler("Fear", Fear::new); | ||||
| 		EffectHandler.getInstance().registerHandler("Feed", Feed::new); | ||||
| 		EffectHandler.getInstance().registerHandler("FishingExpSpBonus", FishingExpSpBonus::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 Sahar | ||||
|  */ | ||||
| public class FatalBlowRateDefence extends AbstractStatEffect | ||||
| { | ||||
| 	public FatalBlowRateDefence(StatSet params) | ||||
| 	{ | ||||
| 		super(params, Stat.BLOW_RATE_DEFENCE); | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 MobiusDevelopment
					MobiusDevelopment