2013-04-19 14:39:44 +02:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2013-04-22 17:59:51 +02:00
|
|
|
import com.massivecraft.factions.entity.UPlayer;
|
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
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-22 19:57:11 +02:00
|
|
|
private final UPlayer uplayer;
|
|
|
|
public UPlayer getUPlayer() { return this.uplayer; }
|
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-06-04 16:47:01 +02:00
|
|
|
public EventFactionsPowerChange(CommandSender sender, UPlayer uplayer, PowerChangeReason reason, double newPower)
|
2013-04-19 14:39:44 +02:00
|
|
|
{
|
|
|
|
super(sender);
|
2013-04-22 19:57:11 +02:00
|
|
|
this.uplayer = uplayer;
|
2013-04-19 14:39:44 +02:00
|
|
|
this.reason = reason;
|
2013-04-23 17:01:43 +02:00
|
|
|
this.newPower = uplayer.getLimitedPower(newPower);
|
2013-04-19 14:39:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// REASON ENUM
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public enum PowerChangeReason
|
|
|
|
{
|
|
|
|
TIME,
|
|
|
|
DEATH,
|
|
|
|
UNDEFINED,
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|