halloween prep

This commit is contained in:
Cheese 2015-10-08 12:36:00 +11:00
parent 191392825f
commit 3c437925f1
4 changed files with 5 additions and 4 deletions

View File

@ -29,6 +29,7 @@ public enum Rank
TWITCH("Twitch", ChatColor.DARK_PURPLE),
//Player
IMMORTAL("Immortal", ChatColor.YELLOW, true),
LEGEND("Legend", ChatColor.GREEN, true),
HERO("Hero", ChatColor.LIGHT_PURPLE, true),
ULTRA("Ultra", ChatColor.AQUA, true),

View File

@ -116,7 +116,7 @@ import mineplex.minecraft.game.core.damage.CustomDamageEvent;
public class HubManager extends MiniClientPlugin<HubClient>
{
// Snowman!
public HubType Type = HubType.Normal;
public HubType Type = HubType.Halloween;
private BlockRestore _blockRestore;
private CoreClientManager _clientManager;

View File

@ -401,12 +401,12 @@ public class Halloween extends SoloGame
{
for (Player player : GetPlayers(false))
{
Manager.GetDonation().PurchaseUnknownSalesPackage(null, player.getName(), Manager.GetClients().Get(player).getAccountId(), "Pumpling", false, 0, true);
Manager.GetDonation().PurchaseUnknownSalesPackage(null, player.getName(), Manager.GetClients().Get(player).getAccountId(), "Decrepit Warhorse", false, 0, true);
Manager.GetGame().AddGems(player, 30, "Killing the Pumpkin King", false, false);
Manager.GetGame().AddGems(player, 10, "Participation", false, false);
}
SetCustomWinLine("You earned Pumpling Pet!");
SetCustomWinLine("You earned Decrepit Warhorse Mount!");
AnnounceEnd(this.GetTeamList().get(0));
SetState(GameState.End);

View File

@ -78,7 +78,7 @@ public class HolidayManager implements Listener
}
}
private HolidayType type = HolidayType.Easter;
private HolidayType type = HolidayType.Halloween;
ArcadeManager Manager;