Addition of FishingExpSpBonus effect.
This commit is contained in:
		@@ -148,6 +148,7 @@ public final class EffectMasterHandler
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("FatalBlowRate", FatalBlowRate::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("Fear", Fear::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("Feed", Feed::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("FishingExpSpBonus", FishingExpSpBonus::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("Flag", Flag::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("FlipBlock", FlipBlock::new);
 | 
			
		||||
		EffectHandler.getInstance().registerHandler("FocusEnergy", FocusEnergy::new);
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										31
									
								
								L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/FishingExpSpBonus.java
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/effecthandlers/FishingExpSpBonus.java
									
									
									
									
										vendored
									
									
										Normal 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.StatsSet;
 | 
			
		||||
import org.l2jmobius.gameserver.model.stats.Stats;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @author Mobius
 | 
			
		||||
 */
 | 
			
		||||
public class FishingExpSpBonus extends AbstractStatPercentEffect
 | 
			
		||||
{
 | 
			
		||||
	public FishingExpSpBonus(StatsSet params)
 | 
			
		||||
	{
 | 
			
		||||
		super(params, Stats.FISHING_EXP_SP_BONUS);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
@@ -119,6 +119,7 @@ FatalBlow: Physical attack based on blow formula. Deadly Blow, Lethal Blow etc.
 | 
			
		||||
FatalBlowRate: Blow land rate stat.
 | 
			
		||||
Fear: Causes the target to run away. Does not block it though.
 | 
			
		||||
Feed: Gives food to pet.
 | 
			
		||||
FishingExpSpBonus: Bonus Exp and SP from fishing. (l2jmobius)
 | 
			
		||||
Flag: Starts pvpflag.
 | 
			
		||||
FlyMove: Moves towards target location.
 | 
			
		||||
FocusEnergy: Max momentum stat.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user