2013-04-19 14:39:44 +02:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2014-09-17 13:17:33 +02:00
|
|
|
import com.massivecraft.factions.entity.MPlayer;
|
2013-04-19 14:39:44 +02:00
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public class EventFactionsPowerChange extends EventFactionsAbstractSender
|
2013-04-19 14:39:44 +02:00
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
|
|
public static HandlerList getHandlerList() { return handlers; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-09-17 13:29:58 +02:00
|
|
|
private final MPlayer mplayer;
|
|
|
|
public MPlayer getMPlayer() { return this.mplayer; }
|
2013-04-19 14:39:44 +02:00
|
|
|
|
|
|
|
private final PowerChangeReason reason;
|
|
|
|
public PowerChangeReason getReason() { return this.reason; }
|
|
|
|
|
|
|
|
private double newPower;
|
|
|
|
public double getNewPower() { return this.newPower; }
|
|
|
|
public void setNewPower(double newPower) { this.newPower = newPower; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-09-17 13:29:58 +02:00
|
|
|
public EventFactionsPowerChange(CommandSender sender, MPlayer mplayer, PowerChangeReason reason, double newPower)
|
2013-04-19 14:39:44 +02:00
|
|
|
{
|
|
|
|
super(sender);
|
2014-09-17 13:29:58 +02:00
|
|
|
this.mplayer = mplayer;
|
2013-04-19 14:39:44 +02:00
|
|
|
this.reason = reason;
|
2014-09-17 13:29:58 +02:00
|
|
|
this.newPower = mplayer.getLimitedPower(newPower);
|
2013-04-19 14:39:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// REASON ENUM
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public enum PowerChangeReason
|
|
|
|
{
|
|
|
|
TIME,
|
|
|
|
DEATH,
|
2015-01-23 08:16:31 +01:00
|
|
|
COMMAND,
|
2013-04-19 14:39:44 +02:00
|
|
|
UNDEFINED,
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|