From a9d4e3e62c344e157b655c6014984a1a6f9a706e Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 11 Jan 2018 10:42:34 +0000 Subject: [PATCH] Reduce the cooldown/price of ender pearls --- .../nautilus/game/arcade/game/games/cakewars/CakeWars.java | 2 +- .../arcade/game/games/cakewars/shop/CakeShopModule.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/CakeWars.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/CakeWars.java index 29a4591ea..57e48d5a0 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/CakeWars.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/CakeWars.java @@ -210,7 +210,7 @@ public class CakeWars extends TeamGame _capturePointModule.register(this); new EnderPearlModule() - .setCooldown(TimeUnit.SECONDS.toMillis(10)) + .setCooldown(TimeUnit.SECONDS.toMillis(7)) .register(this); _chestLootModule = new ChestLootModule(); diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/shop/CakeShopModule.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/shop/CakeShopModule.java index 819fb5209..ecce33e85 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/shop/CakeShopModule.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/cakewars/shop/CakeShopModule.java @@ -52,7 +52,7 @@ public class CakeShopModule extends CakeModule private static final int MIN_BLOCK_PLACE_DIST_SQUARED = 9; public static final ItemStack ENDER_PEARL = new ItemBuilder(Material.ENDER_PEARL) .setTitle(C.cPurpleB + "Ender Pearl") - .addLore("", "Warning! Ender Pearls have a", C.cRed + "10 second" + C.cGray + " cooldown between uses.") + .addLore("", "Warning! Ender Pearls have a", C.cRed + "7 second" + C.cGray + " cooldown between uses.") .build(); private final NewNPCManager _manager; @@ -85,7 +85,7 @@ public class CakeShopModule extends CakeModule new CakeShopItem(CakeShopItemType.SWORD, new ItemStack(Material.IRON_SWORD), 5), // Bow - new CakeShopItem(CakeShopItemType.BOW, new ItemStack(Material.BOW), 15), + new CakeShopItem(CakeShopItemType.BOW, new ItemStack(Material.BOW), 12), // Pickaxe new CakeShopItem(CakeShopItemType.PICKAXE, new ItemStack(Material.IRON_PICKAXE), 8), @@ -144,7 +144,7 @@ public class CakeShopModule extends CakeModule new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.GOLDEN_APPLE), 8), // Ender pearl - new CakeShopItem(CakeShopItemType.OTHER, ENDER_PEARL, 8), + new CakeShopItem(CakeShopItemType.OTHER, ENDER_PEARL, 7), // Rune of Holding new CakeShopItem(CakeShopItemType.OTHER, CakePlayerModule.RUNE_OF_HOLDING, 20),