Some last small changes.

This commit is contained in:
Sarah 2015-07-12 00:45:47 +02:00
parent 55a1c311bf
commit 625f7d3168
3 changed files with 15 additions and 15 deletions

View File

@ -89,18 +89,18 @@ public class SnowFight extends TeamGame
{
super(manager, GameType.SnowFight,
new Kit[]
{
new KitSportsman(manager),
new KitTactician(manager),
new KitMedic(manager)
},
new Kit[]
{
new KitSportsman(manager),
new KitTactician(manager),
new KitMedic(manager)
},
new String[]
{
"Just like... kill your enemies. with snow.",
"Be careful if you are on Ice your body will freeze"
});
new String[]
{
"Just like... kill your enemies. with snow.",
"Be careful if you are on Ice your body will freeze"
});
this.HungerSet = 20;
this.CompassEnabled = true;
@ -143,7 +143,7 @@ public class SnowFight extends TeamGame
{
if(IsOnIce(player))
{
Bukkit.getPluginManager().callEvent(new CustomDamageEvent(player, null, null, DamageCause.CUSTOM, 4.0D, false, true, true, "Ice", "Ice", false));
Bukkit.getPluginManager().callEvent(new CustomDamageEvent(player, null, null, DamageCause.CUSTOM, 2.0D, false, true, true, "Ice", "Ice", false));
}
}

View File

@ -43,7 +43,7 @@ public class KitMedic extends Kit
"Right-Click Snowballs to throw them.",
" ",
"Gets 1 Healing Potion every 32 seconds [max. 1]",
"Causes Regeneration II and Slowness II when hit.",
"Slowness II when hit.",
" ",
"Supports all nearby allies with REGENERATION."
},
@ -104,7 +104,7 @@ public class KitMedic extends Kit
if(!Manager.GetGame().IsLive())
return;
if (event.getType() == UpdateType.SLOWER)
if (event.getType() == UpdateType.SLOWEST)
{
for (Player player : Manager.GetGame().GetPlayers(true))
{

View File

@ -41,7 +41,7 @@ public class KitSportsman extends Kit
new Perk[]
{
new PerkFallDamage(5)
new PerkFallDamage(3)
},
EntityType.SKELETON,
new ItemStack(Material.SNOW_BALL));