mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-23 19:16:41 +01:00
28 lines
714 B
Java
28 lines
714 B
Java
import org.bukkit.Location;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import com.garbagemule.MobArena.framework.Arena;
|
|
import com.garbagemule.MobArena.waves.MABoss;
|
|
import com.garbagemule.MobArena.waves.ability.*;
|
|
|
|
@AbilityInfo(
|
|
name = "Fetch Nearby",
|
|
aliases = {"fetchnearby"}
|
|
)
|
|
public class FetchNearby implements Ability
|
|
{
|
|
/**
|
|
* How close players must be to be affected by the ability.
|
|
*/
|
|
private final int RADIUS = 5;
|
|
|
|
@Override
|
|
public void execute(Arena arena, MABoss boss) {
|
|
Location bLoc = boss.getEntity().getLocation();
|
|
|
|
for (Player p : AbilityUtils.getNearbyPlayers(arena, boss.getEntity(), RADIUS)) {
|
|
p.teleport(bLoc);
|
|
}
|
|
}
|
|
}
|