21 lines
540 B
Java
21 lines
540 B
Java
|
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)
|
||
|
{
|
||
|
if (event.getTargets().size() >= 5)
|
||
|
getGame().AddStat(event.getPlayer(), "Earthquake", 1, true, false);
|
||
|
}
|
||
|
}
|