Balance changes and QOL changes
This commit is contained in:
parent
2912968295
commit
b1c3b2c937
@ -1,6 +1,7 @@
|
||||
package nautilus.game.arcade.game.games.moba.kit.anath;
|
||||
|
||||
import mineplex.core.common.util.UtilEvent.ActionType;
|
||||
import mineplex.core.recharge.Recharge;
|
||||
import nautilus.game.arcade.game.games.moba.Moba;
|
||||
import nautilus.game.arcade.game.games.moba.kit.HeroSkill;
|
||||
import nautilus.game.arcade.game.games.moba.util.MobaConstants;
|
||||
@ -37,7 +38,7 @@ public class SkillFireProjectile extends HeroSkill
|
||||
|
||||
Player player = event.getPlayer();
|
||||
|
||||
if (!_kit.useAmmo(player, 1))
|
||||
if (!Recharge.Instance.use(player, GetName(), 500, false, true) || !_kit.useAmmo(player, 1))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -89,6 +89,12 @@ public class SkillFullMoon extends HeroSkill
|
||||
kit.disguise(player);
|
||||
player.setWalkSpeed(player.getWalkSpeed() - data.getLastSpeedIncrease());
|
||||
|
||||
ItemStack itemStack = player.getInventory().getItem(1);
|
||||
if (itemStack != null)
|
||||
{
|
||||
itemStack.setAmount(1);
|
||||
}
|
||||
|
||||
for (Wolf wolf : data.getWolves())
|
||||
{
|
||||
wolf.setHealth(0);
|
||||
|
@ -33,7 +33,7 @@ public class SkillSnowball extends HeroSkill implements IThrown
|
||||
{
|
||||
super("Shuriken", DESCRIPTION, SKILL_ITEM, slot, ActionType.ANY);
|
||||
|
||||
setCooldown(1000);
|
||||
setCooldown(1500);
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
|
@ -7,6 +7,7 @@ import mineplex.core.common.util.UtilParticle.ParticleType;
|
||||
import mineplex.core.common.util.UtilParticle.ViewDist;
|
||||
import mineplex.core.common.util.UtilServer;
|
||||
import mineplex.core.common.util.particles.effects.LineParticle;
|
||||
import mineplex.core.recharge.Recharge;
|
||||
import nautilus.game.arcade.game.games.moba.Moba;
|
||||
import nautilus.game.arcade.game.games.moba.kit.HeroSkill;
|
||||
import nautilus.game.arcade.game.games.moba.structure.tower.TowerManager;
|
||||
@ -46,7 +47,7 @@ public class SkillAquaCannon extends HeroSkill
|
||||
|
||||
Player player = event.getPlayer();
|
||||
|
||||
if (!_kit.useAmmo(player, 1))
|
||||
if (!Recharge.Instance.use(player, GetName(), 500, false, true) || !_kit.useAmmo(player, 1))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -148,10 +148,6 @@ public class SkillBombardment extends HeroSkill
|
||||
data.Block.setType(Material.AIR);
|
||||
iterator.remove();
|
||||
}
|
||||
else if (data.Block != null)
|
||||
{
|
||||
UtilParticle.PlayParticleToAll(ParticleType.CLOUD, data.Block.getLocation().add(0.5, 0.5, 0.5), 0.5F, 0.5F, 0.5F, 0.001F, 3, ViewDist.LONG);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,7 @@ public class SkillLightArrows extends HeroSkill
|
||||
{
|
||||
LineParticle lineParticle = iterator.next();
|
||||
|
||||
for (int i = 0; i < 4; i++)
|
||||
for (int i = 0; i < 6; i++)
|
||||
{
|
||||
if (!lineParticle.update())
|
||||
{
|
||||
|
@ -30,7 +30,7 @@ public class MobaAssassinShop extends MobaShopMenu
|
||||
.build(), 1000),
|
||||
new MobaItem(new ItemBuilder(Material.DIAMOND_SWORD)
|
||||
.setTitle(C.cDRedB + "Pumpkin King's Blade")
|
||||
.addEnchantment(Enchantment.DAMAGE_ALL, 3)
|
||||
.addEnchantment(Enchantment.DAMAGE_ALL, 2)
|
||||
.build(), 1750)
|
||||
), new ItemStack(Material.WOOD_SWORD));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user