aa45f031ac
SSM Balance patch Champs balance tons of bug fixes
135 lines
3.1 KiB
Java
135 lines
3.1 KiB
Java
package nautilus.game.arcade.kit.perks;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import org.bukkit.GameMode;
|
|
import org.bukkit.Sound;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.block.BlockFace;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.EventHandler;
|
|
import org.bukkit.event.player.PlayerToggleFlightEvent;
|
|
import org.bukkit.util.Vector;
|
|
|
|
import mineplex.core.common.util.C;
|
|
import mineplex.core.common.util.UtilAction;
|
|
import mineplex.core.common.util.UtilBlock;
|
|
import mineplex.core.common.util.UtilEnt;
|
|
import mineplex.core.common.util.UtilServer;
|
|
import mineplex.core.recharge.Recharge;
|
|
import mineplex.core.updater.UpdateType;
|
|
import mineplex.core.updater.event.UpdateEvent;
|
|
import nautilus.game.arcade.kit.Perk;
|
|
|
|
public class PerkSpiderLeap extends Perk
|
|
{
|
|
private HashSet<Player> _secondJump = new HashSet<Player>();
|
|
|
|
public PerkSpiderLeap()
|
|
{
|
|
super("Spider Leap", new String[]
|
|
{
|
|
C.cYellow + "Tap Jump Twice" + C.cGray + " to " + C.cGreen + "Spider Leap",
|
|
C.cYellow + "Hold Crouch" + C.cGray + " to " + C.cGreen + "Wall Climb",
|
|
C.cWhite + "Wall Climb requires Energy (Experience Bar)."
|
|
|
|
});
|
|
}
|
|
|
|
@EventHandler
|
|
public void WallClimb(UpdateEvent event)
|
|
{
|
|
if (event.getType() != UpdateType.TICK)
|
|
return;
|
|
|
|
for (Player player : UtilServer.getPlayers())
|
|
{
|
|
if (player.getGameMode() == GameMode.CREATIVE)
|
|
continue;
|
|
|
|
if (!Kit.HasKit(player))
|
|
continue;
|
|
|
|
if (!player.isSneaking())
|
|
{
|
|
if (UtilEnt.isGrounded(player) || UtilBlock.solid(player.getLocation().getBlock().getRelative(BlockFace.DOWN)))
|
|
{
|
|
player.setExp(0.999f);
|
|
_secondJump.remove(player);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
player.setExp((float) Math.max(0, player.getExp()-(1f/80f)));
|
|
|
|
if (player.getExp() <= 0)
|
|
continue;
|
|
|
|
if (!Recharge.Instance.usable(player, GetName()))
|
|
continue;
|
|
|
|
for (Block block : UtilBlock.getSurrounding(player.getLocation().getBlock(), true))
|
|
{
|
|
if (!UtilBlock.airFoliage(block))
|
|
{
|
|
player.setVelocity(new Vector(0,0.2,0));
|
|
|
|
if (!_secondJump.contains(player))
|
|
{
|
|
player.setAllowFlight(true);
|
|
_secondJump.add(player);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@EventHandler
|
|
public void FlightHop(PlayerToggleFlightEvent event)
|
|
{
|
|
Player player = event.getPlayer();
|
|
|
|
if (!Kit.HasKit(player))
|
|
return;
|
|
|
|
if (player.getGameMode() == GameMode.CREATIVE)
|
|
return;
|
|
|
|
event.setCancelled(true);
|
|
player.setFlying(false);
|
|
|
|
//Disable Flight
|
|
player.setAllowFlight(false);
|
|
|
|
//Velocity
|
|
UtilAction.velocity(player, 1.0, 0.2, 1.0, true);
|
|
|
|
//Sound
|
|
player.getWorld().playSound(player.getLocation(), Sound.SPIDER_IDLE, 1f, 1.5f);
|
|
|
|
Recharge.Instance.use(player, GetName(), 500, false, false);
|
|
}
|
|
|
|
@EventHandler
|
|
public void FlightUpdate(UpdateEvent event)
|
|
{
|
|
if (event.getType() != UpdateType.TICK)
|
|
return;
|
|
|
|
for (Player player : UtilServer.getPlayers())
|
|
{
|
|
if (player.getGameMode() == GameMode.CREATIVE)
|
|
continue;
|
|
|
|
if (!Kit.HasKit(player))
|
|
continue;
|
|
|
|
if (UtilEnt.isGrounded(player) || UtilBlock.solid(player.getLocation().getBlock().getRelative(BlockFace.DOWN)))
|
|
player.setAllowFlight(true);
|
|
}
|
|
}
|
|
}
|