2013-10-04 23:49:05 +02:00
|
|
|
package nautilus.game.arcade.kit.perks;
|
|
|
|
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.Sound;
|
|
|
|
import org.bukkit.entity.EnderPearl;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.entity.Projectile;
|
|
|
|
import org.bukkit.entity.Snowball;
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.block.Action;
|
|
|
|
import org.bukkit.event.player.PlayerInteractEvent;
|
|
|
|
import org.bukkit.util.Vector;
|
|
|
|
|
|
|
|
import mineplex.core.common.util.C;
|
|
|
|
import mineplex.core.common.util.UtilBlock;
|
|
|
|
import mineplex.core.recharge.Recharge;
|
|
|
|
import mineplex.core.recharge.RechargedEvent;
|
|
|
|
import nautilus.game.arcade.game.GameTeam;
|
|
|
|
import nautilus.game.arcade.kit.Perk;
|
|
|
|
|
|
|
|
public class PerkPaintballShotgun extends Perk
|
|
|
|
{
|
|
|
|
public PerkPaintballShotgun()
|
|
|
|
{
|
|
|
|
super("Shotgun", new String[]
|
|
|
|
{
|
|
|
|
C.cYellow + "Right-Click" + C.cGray + " to use " + C.cGreen + "Shotgun"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler
|
|
|
|
public void Recharge(RechargedEvent event)
|
|
|
|
{
|
|
|
|
if (!event.GetAbility().equals(GetName()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
event.GetPlayer().playSound(event.GetPlayer().getLocation(), Sound.NOTE_STICKS, 2f, 1f);
|
|
|
|
event.GetPlayer().playSound(event.GetPlayer().getLocation(), Sound.NOTE_STICKS, 2f, 1.5f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler
|
|
|
|
public void Shoot(PlayerInteractEvent event)
|
|
|
|
{
|
|
|
|
if (event.getAction() != Action.RIGHT_CLICK_AIR && event.getAction() != Action.RIGHT_CLICK_BLOCK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (UtilBlock.usable(event.getClickedBlock()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (event.getPlayer().getItemInHand() == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (event.getPlayer().getItemInHand().getType() != Material.GOLD_BARDING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Player player = event.getPlayer();
|
|
|
|
|
|
|
|
if (!Kit.HasKit(player))
|
|
|
|
return;
|
|
|
|
|
|
|
|
GameTeam team = Manager.GetGame().GetTeam(player);
|
|
|
|
if (team == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
event.setCancelled(true);
|
|
|
|
|
2013-11-02 00:09:07 +01:00
|
|
|
if (!Recharge.Instance.use(player, GetName(), 1400, true))
|
2013-10-04 23:49:05 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (int i=0 ; i<6 ; i++)
|
|
|
|
{
|
|
|
|
Vector rand = new Vector(Math.random() - 0.5, Math.random() - 0.5, Math.random() - 0.5);
|
2013-11-02 00:09:07 +01:00
|
|
|
rand.multiply(0.4);
|
2013-10-04 23:49:05 +02:00
|
|
|
|
|
|
|
if (team.GetColor() == ChatColor.AQUA)
|
|
|
|
{
|
|
|
|
Projectile proj = player.launchProjectile(Snowball.class);
|
|
|
|
proj.setVelocity(proj.getVelocity().multiply(1).add(rand));
|
|
|
|
|
|
|
|
//Sound
|
|
|
|
player.getWorld().playSound(player.getLocation(), Sound.CHICKEN_EGG_POP, 0.8f, 1f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-02 00:09:07 +01:00
|
|
|
//Projectile proj = player.launchProjectile(EnderPearl.class);
|
|
|
|
Projectile proj = player.launchProjectile(Snowball.class);
|
2013-10-04 23:49:05 +02:00
|
|
|
proj.setVelocity(proj.getVelocity().multiply(1).add(rand));
|
|
|
|
|
|
|
|
//Sound
|
|
|
|
player.getWorld().playSound(player.getLocation(), Sound.CHICKEN_EGG_POP, 0.8f, 0.75f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|