Package forestry.apiculture.items

Examples of forestry.apiculture.items.ItemArmorApiarist


    // / BEE COMBS
    ForestryItem.beeComb.registerItem(new ItemHoneycomb(), "beeCombs");
    OreDictionary.registerOre("beeComb", ForestryItem.beeComb.getItemStack(1, Defaults.WILDCARD));

    // / APIARIST'S CLOTHES
    ForestryItem.apiaristHat.registerItem(new ItemArmorApiarist(0), "apiaristHelmet");
    ForestryItem.apiaristChest.registerItem(new ItemArmorApiarist(1), "apiaristChest");
    ForestryItem.apiaristLegs.registerItem(new ItemArmorApiarist(2), "apiaristLegs");
    ForestryItem.apiaristBoots.registerItem(new ItemArmorApiarist(3), "apiaristBoots");

    // TOOLS
    ForestryItem.scoop.registerItem(new ItemScoop(), "scoop");
    ForestryItem.scoop.item().setHarvestLevel("scoop", 3);
  }
View Full Code Here

TOP

Related Classes of forestry.apiculture.items.ItemArmorApiarist

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.