2014-08-18 22:41:16 +02:00
|
|
|
package nautilus.game.arcade.stats;
|
|
|
|
|
|
|
|
import mineplex.minecraft.game.classcombat.Skill.Brute.*;
|
|
|
|
import nautilus.game.arcade.game.*;
|
|
|
|
import org.bukkit.event.*;
|
|
|
|
|
|
|
|
public class SeismicSlamStatTracker extends StatTracker<Game>
|
|
|
|
{
|
|
|
|
public SeismicSlamStatTracker(Game game)
|
|
|
|
{
|
|
|
|
super(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR)
|
|
|
|
public void onLongshotHit(SeismicSlam.SeismicSlamEvent event)
|
|
|
|
{
|
2014-08-25 22:27:02 +02:00
|
|
|
if (getGame().GetState() != Game.GameState.Live)
|
|
|
|
return;
|
|
|
|
|
2014-08-18 22:41:16 +02:00
|
|
|
if (event.getTargets().size() >= 5)
|
|
|
|
getGame().AddStat(event.getPlayer(), "Earthquake", 1, true, false);
|
|
|
|
}
|
|
|
|
}
|