2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("InitItems.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-01-05 22:14:01 +01:00
|
|
|
|
2016-05-15 12:00:42 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
2018-05-10 11:38:58 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
|
2017-11-02 22:49:53 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemArmorAA;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemFoodSeed;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemHoeAA;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemSeed;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemSwordAA;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.lens.ItemLens;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheCrystals;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheFoods;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.material.InitArmorMaterials;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.material.InitToolMaterials;
|
2016-08-04 03:14:45 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityGiantChest;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityGiantChestMedium;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.Util;
|
2015-12-31 15:05:27 +01:00
|
|
|
import net.minecraft.init.Blocks;
|
2015-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.init.Items;
|
2016-06-27 19:25:46 +02:00
|
|
|
import net.minecraft.init.MobEffects;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.item.Item;
|
2015-03-19 21:27:56 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2016-06-27 19:25:46 +02:00
|
|
|
import net.minecraft.potion.PotionEffect;
|
2016-08-04 03:14:45 +02:00
|
|
|
import net.minecraft.tileentity.TileEntityChest;
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public final class InitItems {
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public static Item itemBooklet;
|
2015-01-29 20:23:19 +01:00
|
|
|
public static Item itemFertilizer;
|
|
|
|
public static Item itemMisc;
|
2015-01-30 20:16:32 +01:00
|
|
|
public static Item itemFoods;
|
2015-04-06 15:51:59 +02:00
|
|
|
public static Item itemJams;
|
2015-02-09 17:25:05 +01:00
|
|
|
public static Item itemKnife;
|
2015-03-07 02:23:31 +01:00
|
|
|
public static Item itemCrafterOnAStick;
|
|
|
|
public static Item itemDust;
|
2015-12-28 15:05:56 +01:00
|
|
|
public static Item itemSolidifiedExperience;
|
2015-03-29 15:29:05 +02:00
|
|
|
public static Item itemLeafBlower;
|
|
|
|
public static Item itemLeafBlowerAdvanced;
|
2015-03-31 20:37:55 +02:00
|
|
|
public static Item itemPotionRing;
|
|
|
|
public static Item itemPotionRingAdvanced;
|
2015-02-17 16:15:16 +01:00
|
|
|
public static Item itemPickaxeEmerald;
|
|
|
|
public static Item itemAxeEmerald;
|
|
|
|
public static Item itemShovelEmerald;
|
|
|
|
public static Item itemSwordEmerald;
|
|
|
|
public static Item itemHoeEmerald;
|
2015-07-11 06:45:26 +02:00
|
|
|
public static Item itemHelmEmerald;
|
|
|
|
public static Item itemChestEmerald;
|
|
|
|
public static Item itemPantsEmerald;
|
|
|
|
public static Item itemBootsEmerald;
|
2015-02-17 16:15:16 +01:00
|
|
|
public static Item itemPickaxeObsidian;
|
|
|
|
public static Item itemAxeObsidian;
|
|
|
|
public static Item itemShovelObsidian;
|
|
|
|
public static Item itemSwordObsidian;
|
|
|
|
public static Item itemHoeObsidian;
|
2015-07-25 08:34:02 +02:00
|
|
|
public static Item itemPickaxeQuartz;
|
|
|
|
public static Item itemAxeQuartz;
|
|
|
|
public static Item itemShovelQuartz;
|
|
|
|
public static Item itemSwordQuartz;
|
|
|
|
public static Item itemHoeQuartz;
|
2015-07-11 06:45:26 +02:00
|
|
|
public static Item itemHelmObsidian;
|
|
|
|
public static Item itemChestObsidian;
|
|
|
|
public static Item itemPantsObsidian;
|
|
|
|
public static Item itemBootsObsidian;
|
2015-07-25 08:34:02 +02:00
|
|
|
public static Item itemHelmQuartz;
|
|
|
|
public static Item itemChestQuartz;
|
|
|
|
public static Item itemPantsQuartz;
|
|
|
|
public static Item itemBootsQuartz;
|
2015-05-07 16:36:29 +02:00
|
|
|
public static Item itemHairyBall;
|
2015-05-20 22:39:43 +02:00
|
|
|
public static Item itemRiceSeed;
|
|
|
|
public static Item itemCanolaSeed;
|
2015-06-06 01:25:53 +02:00
|
|
|
public static Item itemFlaxSeed;
|
2015-06-12 19:12:06 +02:00
|
|
|
public static Item itemCoffeeSeed;
|
2015-05-20 22:39:43 +02:00
|
|
|
public static Item itemResonantRice;
|
|
|
|
public static Item itemPhantomConnector;
|
2015-06-12 19:12:06 +02:00
|
|
|
public static Item itemCoffeeBean;
|
|
|
|
public static Item itemCoffee;
|
|
|
|
public static Item woodenPaxel;
|
|
|
|
public static Item stonePaxel;
|
|
|
|
public static Item ironPaxel;
|
|
|
|
public static Item diamondPaxel;
|
|
|
|
public static Item goldPaxel;
|
|
|
|
public static Item emeraldPaxel;
|
|
|
|
public static Item obsidianPaxel;
|
2015-07-29 18:58:23 +02:00
|
|
|
public static Item quartzPaxel;
|
2015-06-21 02:28:49 +02:00
|
|
|
public static Item itemDrill;
|
|
|
|
public static Item itemDrillUpgradeSpeed;
|
|
|
|
public static Item itemDrillUpgradeSpeedII;
|
|
|
|
public static Item itemDrillUpgradeSpeedIII;
|
|
|
|
public static Item itemDrillUpgradeSilkTouch;
|
|
|
|
public static Item itemDrillUpgradeFortune;
|
|
|
|
public static Item itemDrillUpgradeFortuneII;
|
|
|
|
public static Item itemDrillUpgradeThreeByThree;
|
|
|
|
public static Item itemDrillUpgradeFiveByFive;
|
|
|
|
public static Item itemDrillUpgradeBlockPlacing;
|
|
|
|
public static Item itemBattery;
|
2015-07-16 16:52:28 +02:00
|
|
|
public static Item itemBatteryDouble;
|
|
|
|
public static Item itemBatteryTriple;
|
|
|
|
public static Item itemBatteryQuadruple;
|
|
|
|
public static Item itemBatteryQuintuple;
|
2015-07-07 20:20:24 +02:00
|
|
|
public static Item itemTeleStaff;
|
2015-07-17 06:51:19 +02:00
|
|
|
public static Item itemWingsOfTheBats;
|
2015-07-25 11:06:10 +02:00
|
|
|
public static Item itemGrowthRing;
|
2015-07-25 12:11:31 +02:00
|
|
|
public static Item itemMagnetRing;
|
2015-07-26 02:36:42 +02:00
|
|
|
public static Item itemWaterRemovalRing;
|
2015-10-13 18:48:44 +02:00
|
|
|
public static Item itemChestToCrateUpgrade;
|
2016-08-04 03:14:45 +02:00
|
|
|
public static Item itemSmallToMediumCrateUpgrade;
|
|
|
|
public static Item itemMediumToLargeCrateUpgrade;
|
2015-12-16 15:22:19 +01:00
|
|
|
public static Item itemCrateKeeper;
|
2016-05-08 02:55:59 +02:00
|
|
|
public static Item itemSpawnerChanger;
|
2015-10-20 00:22:36 +02:00
|
|
|
public static Item itemLaserWrench;
|
2015-11-14 14:30:35 +01:00
|
|
|
public static Item itemCrystal;
|
2016-08-03 04:01:47 +02:00
|
|
|
public static Item itemCrystalEmpowered;
|
2015-11-22 18:52:11 +01:00
|
|
|
public static Item itemColorLens;
|
2015-11-27 15:57:38 +01:00
|
|
|
public static Item itemExplosionLens;
|
2015-11-28 19:30:24 +01:00
|
|
|
public static Item itemDamageLens;
|
2016-11-02 18:49:57 +01:00
|
|
|
public static Item itemMoreDamageLens;
|
2016-07-20 10:42:41 +02:00
|
|
|
public static Item itemDisenchantingLens;
|
2016-10-31 16:36:22 +01:00
|
|
|
public static Item itemMiningLens;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalRed;
|
|
|
|
public static Item itemAxeCrystalRed;
|
|
|
|
public static Item itemShovelCrystalRed;
|
|
|
|
public static Item itemSwordCrystalRed;
|
|
|
|
public static Item itemHoeCrystalRed;
|
|
|
|
public static Item itemHelmCrystalRed;
|
|
|
|
public static Item itemChestCrystalRed;
|
|
|
|
public static Item itemPantsCrystalRed;
|
|
|
|
public static Item itemBootsCrystalRed;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalRed;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalBlue;
|
|
|
|
public static Item itemAxeCrystalBlue;
|
|
|
|
public static Item itemShovelCrystalBlue;
|
|
|
|
public static Item itemSwordCrystalBlue;
|
|
|
|
public static Item itemHoeCrystalBlue;
|
|
|
|
public static Item itemHelmCrystalBlue;
|
|
|
|
public static Item itemChestCrystalBlue;
|
|
|
|
public static Item itemPantsCrystalBlue;
|
|
|
|
public static Item itemBootsCrystalBlue;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalBlue;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalLightBlue;
|
|
|
|
public static Item itemAxeCrystalLightBlue;
|
|
|
|
public static Item itemShovelCrystalLightBlue;
|
|
|
|
public static Item itemSwordCrystalLightBlue;
|
|
|
|
public static Item itemHoeCrystalLightBlue;
|
|
|
|
public static Item itemHelmCrystalLightBlue;
|
|
|
|
public static Item itemChestCrystalLightBlue;
|
|
|
|
public static Item itemPantsCrystalLightBlue;
|
|
|
|
public static Item itemBootsCrystalLightBlue;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalLightBlue;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalBlack;
|
|
|
|
public static Item itemAxeCrystalBlack;
|
|
|
|
public static Item itemShovelCrystalBlack;
|
|
|
|
public static Item itemSwordCrystalBlack;
|
|
|
|
public static Item itemHoeCrystalBlack;
|
|
|
|
public static Item itemHelmCrystalBlack;
|
|
|
|
public static Item itemChestCrystalBlack;
|
|
|
|
public static Item itemPantsCrystalBlack;
|
|
|
|
public static Item itemBootsCrystalBlack;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalBlack;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalGreen;
|
|
|
|
public static Item itemAxeCrystalGreen;
|
|
|
|
public static Item itemShovelCrystalGreen;
|
|
|
|
public static Item itemSwordCrystalGreen;
|
|
|
|
public static Item itemHoeCrystalGreen;
|
|
|
|
public static Item itemHelmCrystalGreen;
|
|
|
|
public static Item itemChestCrystalGreen;
|
|
|
|
public static Item itemPantsCrystalGreen;
|
|
|
|
public static Item itemBootsCrystalGreen;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalGreen;
|
2015-12-31 15:05:27 +01:00
|
|
|
public static Item itemPickaxeCrystalWhite;
|
|
|
|
public static Item itemAxeCrystalWhite;
|
|
|
|
public static Item itemShovelCrystalWhite;
|
|
|
|
public static Item itemSwordCrystalWhite;
|
|
|
|
public static Item itemHoeCrystalWhite;
|
|
|
|
public static Item itemHelmCrystalWhite;
|
|
|
|
public static Item itemChestCrystalWhite;
|
|
|
|
public static Item itemPantsCrystalWhite;
|
|
|
|
public static Item itemBootsCrystalWhite;
|
2016-01-01 23:44:22 +01:00
|
|
|
public static Item itemPaxelCrystalWhite;
|
2016-06-02 19:28:51 +02:00
|
|
|
public static Item itemWaterBowl;
|
2016-06-07 23:17:06 +02:00
|
|
|
public static Item itemFilter;
|
2016-07-14 02:11:41 +02:00
|
|
|
public static Item itemPlayerProbe;
|
2016-07-22 20:23:51 +02:00
|
|
|
public static Item itemWorm;
|
2016-08-02 16:32:13 +02:00
|
|
|
public static Item itemBag;
|
|
|
|
public static Item itemVoidBag;
|
2016-11-05 15:36:16 +01:00
|
|
|
public static Item itemFillingWand;
|
2017-02-13 17:36:55 +01:00
|
|
|
public static Item itemLaserUpgradeInvisibility;
|
2017-02-13 19:07:53 +01:00
|
|
|
public static Item itemLaserUpgradeRange;
|
2017-02-14 18:18:38 +01:00
|
|
|
public static Item itemEngineerGoggles;
|
|
|
|
public static Item itemEngineerGogglesAdvanced;
|
2017-02-13 23:17:08 +01:00
|
|
|
public static Item itemCrystalShard;
|
2016-08-02 16:32:13 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public static void init() {
|
2018-05-10 11:38:58 +02:00
|
|
|
ActuallyAdditions.LOGGER.info("Initializing Items...");
|
2015-01-05 22:14:01 +01:00
|
|
|
|
2017-02-13 23:17:08 +01:00
|
|
|
itemCrystalShard = new ItemCrystalShard("item_crystal_shard");
|
2017-02-14 18:18:38 +01:00
|
|
|
itemEngineerGogglesAdvanced = new ItemEngineerGoggles("item_engineer_goggles_advanced", true);
|
|
|
|
itemEngineerGoggles = new ItemEngineerGoggles("item_engineer_goggles", false);
|
2017-02-13 19:07:53 +01:00
|
|
|
itemLaserUpgradeRange = new ItemLaserRelayUpgrade("item_laser_upgrade_range");
|
2017-02-13 17:36:55 +01:00
|
|
|
itemLaserUpgradeInvisibility = new ItemLaserRelayUpgrade("item_laser_upgrade_invisibility");
|
2016-11-19 21:54:43 +01:00
|
|
|
itemFillingWand = new ItemFillingWand("item_filling_wand");
|
|
|
|
itemBag = new ItemBag("item_bag", false);
|
|
|
|
itemVoidBag = new ItemBag("item_void_bag", true);
|
|
|
|
itemWorm = new ItemWorm("item_worm");
|
|
|
|
itemPlayerProbe = new ItemPlayerProbe("item_player_probe");
|
2016-11-19 23:12:22 +01:00
|
|
|
itemFilter = new ItemFilter("item_filter");
|
|
|
|
itemWaterBowl = new ItemWaterBowl("item_water_bowl");
|
|
|
|
itemSpawnerChanger = new ItemSpawnerChanger("item_spawner_changer");
|
|
|
|
itemMisc = new ItemMisc("item_misc");
|
|
|
|
itemCrateKeeper = new ItemGeneric("item_crate_keeper").setMaxStackSize(1);
|
|
|
|
itemColorLens = new ItemLens("item_color_lens", ActuallyAdditionsAPI.lensColor);
|
|
|
|
itemExplosionLens = new ItemLens("item_explosion_lens", ActuallyAdditionsAPI.lensDetonation);
|
|
|
|
itemDamageLens = new ItemLens("item_damage_lens", ActuallyAdditionsAPI.lensDeath);
|
|
|
|
itemMoreDamageLens = new ItemLens("item_more_damage_lens", ActuallyAdditionsAPI.lensEvenMoarDeath);
|
|
|
|
itemDisenchantingLens = new ItemLens("item_disenchanting_lens", ActuallyAdditionsAPI.lensDisenchanting);
|
|
|
|
itemMiningLens = new ItemLens("item_mining_lens", ActuallyAdditionsAPI.lensMining);
|
|
|
|
itemCrystal = new ItemCrystal("item_crystal", false);
|
|
|
|
itemCrystalEmpowered = new ItemCrystal("item_crystal_empowered", true);
|
|
|
|
itemLaserWrench = new ItemLaserWrench("item_laser_wrench");
|
|
|
|
itemChestToCrateUpgrade = new ItemChestToCrateUpgrade("item_chest_to_crate_upgrade", TileEntityChest.class, InitBlocks.blockGiantChest.getDefaultState());
|
|
|
|
itemSmallToMediumCrateUpgrade = new ItemChestToCrateUpgrade("item_small_to_medium_crate_upgrade", TileEntityGiantChest.class, InitBlocks.blockGiantChestMedium.getDefaultState());
|
|
|
|
itemMediumToLargeCrateUpgrade = new ItemChestToCrateUpgrade("item_medium_to_large_crate_upgrade", TileEntityGiantChestMedium.class, InitBlocks.blockGiantChestLarge.getDefaultState());
|
|
|
|
itemBooklet = new ItemBooklet("item_booklet");
|
|
|
|
itemGrowthRing = new ItemGrowthRing("item_growth_ring");
|
|
|
|
itemMagnetRing = new ItemMagnetRing("item_suction_ring");
|
|
|
|
itemWaterRemovalRing = new ItemWaterRemovalRing("item_water_removal_ring");
|
|
|
|
itemHelmEmerald = new ItemArmorAA("item_helm_emerald", InitArmorMaterials.armorMaterialEmerald, 0, new ItemStack(Items.EMERALD));
|
|
|
|
itemChestEmerald = new ItemArmorAA("item_chest_emerald", InitArmorMaterials.armorMaterialEmerald, 1, new ItemStack(Items.EMERALD));
|
|
|
|
itemPantsEmerald = new ItemArmorAA("item_pants_emerald", InitArmorMaterials.armorMaterialEmerald, 2, new ItemStack(Items.EMERALD));
|
|
|
|
itemBootsEmerald = new ItemArmorAA("item_boots_emerald", InitArmorMaterials.armorMaterialEmerald, 3, new ItemStack(Items.EMERALD));
|
|
|
|
itemHelmObsidian = new ItemArmorAA("item_helm_obsidian", InitArmorMaterials.armorMaterialObsidian, 0, new ItemStack(Blocks.OBSIDIAN));
|
|
|
|
itemChestObsidian = new ItemArmorAA("item_chest_obsidian", InitArmorMaterials.armorMaterialObsidian, 1, new ItemStack(Blocks.OBSIDIAN));
|
|
|
|
itemPantsObsidian = new ItemArmorAA("item_pants_obsidian", InitArmorMaterials.armorMaterialObsidian, 2, new ItemStack(Blocks.OBSIDIAN));
|
|
|
|
itemBootsObsidian = new ItemArmorAA("item_boots_obsidian", InitArmorMaterials.armorMaterialObsidian, 3, new ItemStack(Blocks.OBSIDIAN));
|
|
|
|
itemHelmQuartz = new ItemArmorAA("item_helm_quartz", InitArmorMaterials.armorMaterialQuartz, 0, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
|
|
|
itemChestQuartz = new ItemArmorAA("item_chest_quartz", InitArmorMaterials.armorMaterialQuartz, 1, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
|
|
|
itemPantsQuartz = new ItemArmorAA("item_pants_quartz", InitArmorMaterials.armorMaterialQuartz, 2, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
|
|
|
itemBootsQuartz = new ItemArmorAA("item_boots_quartz", InitArmorMaterials.armorMaterialQuartz, 3, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()));
|
|
|
|
itemTeleStaff = new ItemTeleStaff("item_tele_staff");
|
|
|
|
itemWingsOfTheBats = new ItemWingsOfTheBats("item_wings_of_the_bats");
|
|
|
|
itemDrill = new ItemDrill("item_drill");
|
2016-12-18 17:28:29 +01:00
|
|
|
itemBattery = new ItemBattery("item_battery", 200000, 1000);
|
|
|
|
itemBatteryDouble = new ItemBattery("item_battery_double", 350000, 5000);
|
|
|
|
itemBatteryTriple = new ItemBattery("item_battery_triple", 600000, 10000);
|
|
|
|
itemBatteryQuadruple = new ItemBattery("item_battery_quadruple", 1000000, 30000);
|
|
|
|
itemBatteryQuintuple = new ItemBattery("item_battery_quintuple", 2000000, 100000);
|
2016-11-19 23:12:22 +01:00
|
|
|
itemDrillUpgradeSpeed = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.SPEED, "item_drill_upgrade_speed");
|
|
|
|
itemDrillUpgradeSpeedII = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.SPEED_II, "item_drill_upgrade_speed_ii");
|
|
|
|
itemDrillUpgradeSpeedIII = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.SPEED_III, "item_drill_upgrade_speed_iii");
|
|
|
|
itemDrillUpgradeSilkTouch = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.SILK_TOUCH, "item_drill_upgrade_silk_touch");
|
|
|
|
itemDrillUpgradeFortune = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.FORTUNE, "item_drill_upgrade_fortune");
|
|
|
|
itemDrillUpgradeFortuneII = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.FORTUNE_II, "item_drill_upgrade_fortune_ii");
|
|
|
|
itemDrillUpgradeThreeByThree = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.THREE_BY_THREE, "item_drill_upgrade_three_by_three");
|
|
|
|
itemDrillUpgradeFiveByFive = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.FIVE_BY_FIVE, "item_drill_upgrade_five_by_five");
|
|
|
|
itemDrillUpgradeBlockPlacing = new ItemDrillUpgrade(ItemDrillUpgrade.UpgradeType.PLACER, "item_drill_upgrade_block_placing");
|
|
|
|
itemFertilizer = new ItemFertilizer("item_fertilizer");
|
|
|
|
itemCoffee = new ItemCoffee("item_coffee");
|
|
|
|
itemPhantomConnector = new ItemPhantomConnector("item_phantom_connector");
|
|
|
|
itemResonantRice = new ItemResonantRice("item_resonant_rice");
|
|
|
|
itemFoods = new ItemFoods("item_food");
|
|
|
|
itemJams = new ItemJams("item_jam");
|
|
|
|
itemKnife = new ItemKnife("item_knife");
|
|
|
|
itemCrafterOnAStick = new ItemCrafterOnAStick("item_crafter_on_a_stick");
|
|
|
|
itemDust = new ItemDust("item_dust");
|
|
|
|
itemSolidifiedExperience = new ItemSolidifiedExperience("item_solidified_experience");
|
|
|
|
itemLeafBlower = new ItemLeafBlower(false, "item_leaf_blower");
|
|
|
|
itemLeafBlowerAdvanced = new ItemLeafBlower(true, "item_leaf_blower_advanced");
|
|
|
|
itemPotionRing = new ItemPotionRing(false, "item_potion_ring");
|
|
|
|
itemPotionRingAdvanced = new ItemPotionRing(true, "item_potion_ring_advanced");
|
|
|
|
itemHairyBall = new ItemHairyBall("item_hairy_ball");
|
|
|
|
itemCoffeeBean = new ItemCoffeeBean("item_coffee_beans");
|
|
|
|
itemRiceSeed = new ItemSeed("item_rice_seed", "seedRice", InitBlocks.blockRice, itemFoods, TheFoods.RICE.ordinal());
|
|
|
|
itemCanolaSeed = new ItemFoodSeed("item_canola_seed", "seedCanola", InitBlocks.blockCanola, itemMisc, TheMiscItems.CANOLA.ordinal(), 1, 0.01F, 10).setPotionEffect(new PotionEffect(MobEffects.NAUSEA, 1000, 0), 0.2F);
|
|
|
|
itemFlaxSeed = new ItemSeed("item_flax_seed", "seedFlax", InitBlocks.blockFlax, Items.STRING, 0);
|
|
|
|
itemCoffeeSeed = new ItemSeed("item_coffee_seed", "seedCoffeeBeans", InitBlocks.blockCoffee, itemCoffeeBean, 0);
|
|
|
|
itemPickaxeEmerald = new ItemPickaxeAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "item_pickaxe_emerald", EnumRarity.EPIC);
|
|
|
|
itemAxeEmerald = new ItemAxeAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "item_axe_emerald", EnumRarity.EPIC);
|
|
|
|
itemShovelEmerald = new ItemShovelAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "item_shovel_emerald", EnumRarity.EPIC);
|
|
|
|
itemSwordEmerald = new ItemSwordAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "item_sword_emerald", EnumRarity.EPIC);
|
|
|
|
itemHoeEmerald = new ItemHoeAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "item_hoe_emerald", EnumRarity.EPIC);
|
|
|
|
itemPickaxeObsidian = new ItemPickaxeAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "item_pickaxe_obsidian", EnumRarity.UNCOMMON);
|
|
|
|
itemAxeObsidian = new ItemAxeAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "item_axe_obsidian", EnumRarity.UNCOMMON);
|
|
|
|
itemShovelObsidian = new ItemShovelAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "item_shovel_obsidian", EnumRarity.UNCOMMON);
|
|
|
|
itemSwordObsidian = new ItemSwordAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "item_sword_obsidian", EnumRarity.UNCOMMON);
|
|
|
|
itemHoeObsidian = new ItemHoeAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "item_hoe_obsidian", EnumRarity.UNCOMMON);
|
|
|
|
itemPickaxeQuartz = new ItemPickaxeAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "item_pickaxe_quartz", EnumRarity.RARE);
|
|
|
|
itemAxeQuartz = new ItemAxeAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "item_axe_quartz", EnumRarity.RARE);
|
|
|
|
itemShovelQuartz = new ItemShovelAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "item_shovel_quartz", EnumRarity.RARE);
|
|
|
|
itemSwordQuartz = new ItemSwordAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "item_sword_quartz", EnumRarity.RARE);
|
|
|
|
itemHoeQuartz = new ItemHoeAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "item_hoe_quartz", EnumRarity.RARE);
|
|
|
|
woodenPaxel = new ItemAllToolAA(Item.ToolMaterial.WOOD, "plank_wood", "wooden_paxel", EnumRarity.UNCOMMON, 5192733);
|
|
|
|
stonePaxel = new ItemAllToolAA(Item.ToolMaterial.STONE, new ItemStack(Blocks.COBBLESTONE), "stone_paxel", EnumRarity.UNCOMMON, 7040621);
|
|
|
|
ironPaxel = new ItemAllToolAA(Item.ToolMaterial.IRON, new ItemStack(Items.IRON_INGOT), "iron_paxel", EnumRarity.RARE, 10920613);
|
|
|
|
goldPaxel = new ItemAllToolAA(Item.ToolMaterial.GOLD, new ItemStack(Items.GOLD_INGOT), "gold_paxel", EnumRarity.RARE, 16770048);
|
|
|
|
diamondPaxel = new ItemAllToolAA(Item.ToolMaterial.DIAMOND, new ItemStack(Items.DIAMOND), "diamond_paxel", EnumRarity.EPIC, 3250376);
|
|
|
|
emeraldPaxel = new ItemAllToolAA(InitToolMaterials.toolMaterialEmerald, new ItemStack(Items.EMERALD), "emerald_paxel", EnumRarity.EPIC, 7723338);
|
|
|
|
obsidianPaxel = new ItemAllToolAA(InitToolMaterials.toolMaterialObsidian, new ItemStack(Blocks.OBSIDIAN), "obsidian_paxel", EnumRarity.EPIC, 4166);
|
|
|
|
quartzPaxel = new ItemAllToolAA(InitToolMaterials.toolMaterialQuartz, new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()), "quartz_paxel", EnumRarity.RARE, 1710103);
|
2015-12-31 15:05:27 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalRed = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_pickaxe_crystal_red", Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemAxeCrystalRed = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_axe_crystal_red", Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemShovelCrystalRed = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_shovel_crystal_red", Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemSwordCrystalRed = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_sword_crystal_red", Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemHoeCrystalRed = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_hoe_crystal_red", Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemHelmCrystalRed = new ItemArmorAA("item_helm_crystal_red", InitArmorMaterials.armorMaterialCrystalRed, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemChestCrystalRed = new ItemArmorAA("item_chest_crystal_red", InitArmorMaterials.armorMaterialCrystalRed, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemPantsCrystalRed = new ItemArmorAA("item_pants_crystal_red", InitArmorMaterials.armorMaterialCrystalRed, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemBootsCrystalRed = new ItemArmorAA("item_boots_crystal_red", InitArmorMaterials.armorMaterialCrystalRed, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), Util.CRYSTAL_RED_RARITY);
|
|
|
|
itemPaxelCrystalRed = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalRed, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()), "item_paxel_crystal_red", Util.CRYSTAL_RED_RARITY, 16711689);
|
2016-01-01 23:54:36 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalBlue = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_pickaxe_crystal_blue", Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemAxeCrystalBlue = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_axe_crystal_blue", Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemShovelCrystalBlue = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_shovel_crystal_blue", Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemSwordCrystalBlue = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_sword_crystal_blue", Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemHoeCrystalBlue = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_hoe_crystal_blue", Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemHelmCrystalBlue = new ItemArmorAA("item_helm_crystal_blue", InitArmorMaterials.armorMaterialCrystalBlue, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemChestCrystalBlue = new ItemArmorAA("item_chest_crystal_blue", InitArmorMaterials.armorMaterialCrystalBlue, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemPantsCrystalBlue = new ItemArmorAA("item_pants_crystal_blue", InitArmorMaterials.armorMaterialCrystalBlue, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemBootsCrystalBlue = new ItemArmorAA("item_boots_crystal_blue", InitArmorMaterials.armorMaterialCrystalBlue, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), Util.CRYSTAL_BLUE_RARITY);
|
|
|
|
itemPaxelCrystalBlue = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.LAPIS.ordinal()), "item_paxel_crystal_blue", Util.CRYSTAL_BLUE_RARITY, 3014911);
|
2016-01-01 23:54:36 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalLightBlue = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_pickaxe_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemAxeCrystalLightBlue = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_axe_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemShovelCrystalLightBlue = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_shovel_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemSwordCrystalLightBlue = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_sword_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemHoeCrystalLightBlue = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_hoe_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemHelmCrystalLightBlue = new ItemArmorAA("item_helm_crystal_light_blue", InitArmorMaterials.armorMaterialCrystalLightBlue, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemChestCrystalLightBlue = new ItemArmorAA("item_chest_crystal_light_blue", InitArmorMaterials.armorMaterialCrystalLightBlue, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemPantsCrystalLightBlue = new ItemArmorAA("item_pants_crystal_light_blue", InitArmorMaterials.armorMaterialCrystalLightBlue, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemBootsCrystalLightBlue = new ItemArmorAA("item_boots_crystal_light_blue", InitArmorMaterials.armorMaterialCrystalLightBlue, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), Util.CRYSTAL_LIGHT_BLUE_RARITY);
|
|
|
|
itemPaxelCrystalLightBlue = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalLightBlue, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), "item_paxel_crystal_light_blue", Util.CRYSTAL_LIGHT_BLUE_RARITY, 4093108);
|
2016-01-01 23:54:36 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalBlack = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_pickaxe_crystal_black", Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemAxeCrystalBlack = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_axe_crystal_black", Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemShovelCrystalBlack = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_shovel_crystal_black", Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemSwordCrystalBlack = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_sword_crystal_black", Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemHoeCrystalBlack = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_hoe_crystal_black", Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemHelmCrystalBlack = new ItemArmorAA("item_helm_crystal_black", InitArmorMaterials.armorMaterialCrystalBlack, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemChestCrystalBlack = new ItemArmorAA("item_chest_crystal_black", InitArmorMaterials.armorMaterialCrystalBlack, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemPantsCrystalBlack = new ItemArmorAA("item_pants_crystal_black", InitArmorMaterials.armorMaterialCrystalBlack, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemBootsCrystalBlack = new ItemArmorAA("item_boots_crystal_black", InitArmorMaterials.armorMaterialCrystalBlack, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), Util.CRYSTAL_BLACK_RARITY);
|
|
|
|
itemPaxelCrystalBlack = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalBlack, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.COAL.ordinal()), "item_paxel_crystal_black", Util.CRYSTAL_BLACK_RARITY, 2631982);
|
2016-01-01 23:54:36 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalGreen = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_pickaxe_crystal_green", Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemAxeCrystalGreen = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_axe_crystal_green", Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemShovelCrystalGreen = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_shovel_crystal_green", Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemSwordCrystalGreen = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_sword_crystal_green", Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemHoeCrystalGreen = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_hoe_crystal_green", Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemHelmCrystalGreen = new ItemArmorAA("item_helm_crystal_green", InitArmorMaterials.armorMaterialCrystalGreen, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemChestCrystalGreen = new ItemArmorAA("item_chest_crystal_green", InitArmorMaterials.armorMaterialCrystalGreen, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemPantsCrystalGreen = new ItemArmorAA("item_pants_crystal_green", InitArmorMaterials.armorMaterialCrystalGreen, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemBootsCrystalGreen = new ItemArmorAA("item_boots_crystal_green", InitArmorMaterials.armorMaterialCrystalGreen, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), Util.CRYSTAL_GREEN_RARITY);
|
|
|
|
itemPaxelCrystalGreen = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalGreen, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.EMERALD.ordinal()), "item_paxel_crystal_green", Util.CRYSTAL_GREEN_RARITY, 46848);
|
2016-01-01 23:54:36 +01:00
|
|
|
|
2016-11-19 23:12:22 +01:00
|
|
|
itemPickaxeCrystalWhite = new ItemPickaxeAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_pickaxe_crystal_white", Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemAxeCrystalWhite = new ItemAxeAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_axe_crystal_white", Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemShovelCrystalWhite = new ItemShovelAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_shovel_crystal_white", Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemSwordCrystalWhite = new ItemSwordAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_sword_crystal_white", Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemHoeCrystalWhite = new ItemHoeAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_hoe_crystal_white", Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemHelmCrystalWhite = new ItemArmorAA("item_helm_crystal_white", InitArmorMaterials.armorMaterialCrystalWhite, 0, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemChestCrystalWhite = new ItemArmorAA("item_chest_crystal_white", InitArmorMaterials.armorMaterialCrystalWhite, 1, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemPantsCrystalWhite = new ItemArmorAA("item_pants_crystal_white", InitArmorMaterials.armorMaterialCrystalWhite, 2, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemBootsCrystalWhite = new ItemArmorAA("item_boots_crystal_white", InitArmorMaterials.armorMaterialCrystalWhite, 3, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), Util.CRYSTAL_WHITE_RARITY);
|
|
|
|
itemPaxelCrystalWhite = new ItemAllToolAA(InitToolMaterials.toolMaterialCrystalWhite, new ItemStack(InitItems.itemCrystal, 1, TheCrystals.IRON.ordinal()), "item_paxel_crystal_white", Util.CRYSTAL_WHITE_RARITY, 14606302);
|
2015-01-05 22:14:01 +01:00
|
|
|
}
|
|
|
|
}
|