Reduce the cooldown/price of ender pearls

This commit is contained in:
Sam 2018-01-11 10:42:34 +00:00 committed by Alexander Meech
parent db30e8757b
commit a9d4e3e62c
2 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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),