final push for the day

This commit is contained in:
Cheese 2015-11-20 15:22:43 +11:00
parent ed2f3a064c
commit 3067d9f281
5 changed files with 17 additions and 14 deletions

View File

@ -252,7 +252,7 @@ public class Ball
if (_reboundY > 1)
{
if (_ballVel.getY() > 0)
_ballVel.setY(_ballVel.getY() * -1);
_ballVel = _ballVel.multiply(_ballVel.getY() > 0 ? 0.9 : 0.75); //Lose extra when bouncing on ground.

View File

@ -55,7 +55,11 @@ public class MonsterLeague extends TeamGame
});
this.PrepareFreeze = false;
this.Damage = false;
this.DamagePvP = false;
this.HungerSet = 20;
this.HealthSet = 20;
this.DeathOut = false;
this.TeamArmor = true;
this.TeamArmorHotbar = true;

View File

@ -22,16 +22,16 @@ public class KitEnderman extends LeagueKit
new String[]
{
"WARPY",
"Kick Power: 1.4",
},
new Perk[]
{
new PerkDoubleJump("Double Jump", 1, 0.8, true),
new PerkDoubleJump("Double Jump", 1, 1, true),
new PerkBlink("Blink", 32, 16000),
},
EntityType.ENDERMAN,
new ItemStack(Material.AIR), 1.2);
new ItemStack(Material.AIR), 1.4);
}

View File

@ -1,6 +1,5 @@
package nautilus.game.arcade.game.games.monsterleague.kits;
import org.bukkit.ChatColor;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
@ -11,10 +10,10 @@ import mineplex.core.disguise.disguises.DisguiseIronGolem;
import mineplex.core.itemstack.ItemStackFactory;
import nautilus.game.arcade.ArcadeManager;
import nautilus.game.arcade.game.games.monsterleague.perks.PerkStoneWall;
import nautilus.game.arcade.kit.Kit;
import nautilus.game.arcade.kit.KitAvailability;
import nautilus.game.arcade.kit.Perk;
import nautilus.game.arcade.kit.perks.PerkDoubleJump;
import nautilus.game.arcade.kit.perks.PerkSlow;
public class KitGolem extends LeagueKit
{
@ -24,16 +23,17 @@ public class KitGolem extends LeagueKit
new String[]
{
"Strong Kicks",
"Kick Power: 1.8",
},
new Perk[]
{
new PerkDoubleJump("Double Jump", 0.9, 0.7, true),
new PerkDoubleJump("Double Jump", 0.8, 0.8, true),
new PerkStoneWall(),
new PerkSlow(0)
},
EntityType.IRON_GOLEM,
new ItemStack(Material.AIR), 1.6);
new ItemStack(Material.AIR), 1.8);
}

View File

@ -1,6 +1,5 @@
package nautilus.game.arcade.game.games.monsterleague.kits;
import org.bukkit.ChatColor;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
@ -23,16 +22,16 @@ public class KitSkeleton extends LeagueKit
new String[]
{
"Medium Kick Power",
"Kick Power: 1",
},
new Perk[]
{
new PerkDoubleJump("Double Jump", 1.1, 0.9, true),
new PerkDoubleJump("Double Jump", 1.1, 1.1, true),
new PerkFletcher(12, 2, true),
},
EntityType.SKELETON,
new ItemStack(Material.BOW), 0.8);
new ItemStack(Material.BOW), 1);
}