Shop balances

This commit is contained in:
Sam 2017-11-14 23:16:39 +00:00 committed by Alexander Meech
parent d87c132818
commit d15e76d5a6
2 changed files with 15 additions and 15 deletions

View File

@ -79,26 +79,26 @@ public class CakeShopModule extends CakeModule
new CakeShopItem(CakeShopItemType.SWORD, new ItemStack(Material.IRON_SWORD), 5), new CakeShopItem(CakeShopItemType.SWORD, new ItemStack(Material.IRON_SWORD), 5),
// Pickaxe // Pickaxe
new CakeShopItem(CakeShopItemType.PICKAXE, new ItemStack(Material.IRON_PICKAXE), 3), new CakeShopItem(CakeShopItemType.PICKAXE, new ItemStack(Material.IRON_PICKAXE), 8),
// Axe // Axe
new CakeShopItem(CakeShopItemType.AXE, new ItemStack(Material.IRON_AXE), 3), new CakeShopItem(CakeShopItemType.AXE, new ItemStack(Material.IRON_AXE), 3),
// Arrow // Arrow
new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.ARROW, 3), 18), new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.ARROW, 3), 15),
// Blocks // Blocks
// Wool // Wool
new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.WOOL, 16), 3), new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.WOOL, 16), 3),
// Coloured Clay // Coloured Clay
new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.STAINED_CLAY, 8), 12), new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.STAINED_CLAY, 8), 8),
// Wood // Wood
new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.WOOD, 8), 12), new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.WOOD, 8), 8),
// End Stone // End Stone
new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.ENDER_STONE, 8), 16), new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.ENDER_STONE, 8), 12),
// Deploy Platform // Deploy Platform
new CakeShopItem(CakeShopItemType.OTHER, CakePlayerModule.DEPLOY_PLATFORM, 5), new CakeShopItem(CakeShopItemType.OTHER, CakePlayerModule.DEPLOY_PLATFORM, 5),
@ -126,23 +126,23 @@ public class CakeShopModule extends CakeModule
new CakeShopItem(CakeShopItemType.AXE, new ItemStack(Material.DIAMOND_AXE), 10), new CakeShopItem(CakeShopItemType.AXE, new ItemStack(Material.DIAMOND_AXE), 10),
// Obsidian // Obsidian
new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.OBSIDIAN), 5), new CakeShopItem(CakeShopItemType.BLOCK, new ItemStack(Material.OBSIDIAN), 8),
// Shears // Shears
new CakeShopItem(CakeShopItemType.SHEARS, new ItemStack(Material.SHEARS), 5), new CakeShopItem(CakeShopItemType.SHEARS, new ItemStack(Material.SHEARS), 5),
// Golden Apple // Golden Apple
new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.GOLDEN_APPLE), 5), new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.GOLDEN_APPLE), 8),
// Ender pearl // Ender pearl
new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.ENDER_PEARL), 5), new CakeShopItem(CakeShopItemType.OTHER, new ItemStack(Material.ENDER_PEARL), 8),
// Rune of Holding // Rune of Holding
new CakeShopItem(CakeShopItemType.OTHER, CakePlayerModule.RUNE_OF_HOLDING, 20), new CakeShopItem(CakeShopItemType.OTHER, CakePlayerModule.RUNE_OF_HOLDING, 20),
// Traps // Traps
new CakeTNTTrap(12), new CakeTNTTrap(8),
new CakeBearTrap(12) new CakeBearTrap(8)
)); ));
} }

View File

@ -52,8 +52,8 @@ public enum CakeTeamItem implements CakeItem
SHARPNESS( SHARPNESS(
"Sharpness", "Sharpness",
new ItemStack(Material.DIAMOND_SWORD), new ItemStack(Material.DIAMOND_SWORD),
4, 8,
10 12
) )
{ {
@Override @Override
@ -71,13 +71,13 @@ public enum CakeTeamItem implements CakeItem
RESOURCE( RESOURCE(
"Resource Generator", "Resource Generator",
new ItemStack(Material.NETHER_STAR), new ItemStack(Material.NETHER_STAR),
4, 10,
10 18
), ),
REGENERATION( REGENERATION(
"Healing Station", "Healing Station",
new ItemStack(Material.GOLDEN_APPLE), new ItemStack(Material.GOLDEN_APPLE),
4 8
) )
{ {
@Override @Override