Package forestry.storage.items

Examples of forestry.storage.items.ItemNaturalistBackpack


    BackpackDefinition definition;

    if (PluginManager.Module.APICULTURE.isEnabled()) {
      definition = new BackpackDefinitionApiarist("apiarist", 0xc4923d);
      BackpackManager.definitions.put(definition.getKey(), definition);
      ForestryItem.apiaristBackpack.registerItem(new ItemNaturalistBackpack(GuiId.ApiaristBackpackGUI.ordinal(), definition).setCreativeTab(Tabs.tabApiculture), "apiaristBag");
    }

    if (PluginManager.Module.LEPIDOPTEROLOGY.isEnabled()) {
      definition = new BackpackDefinitionLepidopterist("lepidopterist", 0x995b31);
      BackpackManager.definitions.put(definition.getKey(), definition);
      ForestryItem.lepidopteristBackpack.registerItem(new ItemNaturalistBackpack(GuiId.LepidopteristBackpackGUI.ordinal(), definition).setCreativeTab(Tabs.tabLepidopterology), "lepidopteristBag");
    }

    definition = new BackpackDefinition("miner", 0x36187d);
    BackpackManager.definitions.put(definition.getKey(), definition);
    ForestryItem.minerBackpack.registerItem(BackpackManager.backpackInterface.addBackpack(definition, EnumBackpackType.T1), "minerBag");
View Full Code Here

TOP

Related Classes of forestry.storage.items.ItemNaturalistBackpack

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.