ModItems.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. package me.km.items;
  2. import me.km.KajetansMod;
  3. import net.minecraft.creativetab.CreativeTabs;
  4. import net.minecraft.init.SoundEvents;
  5. import net.minecraft.inventory.EntityEquipmentSlot;
  6. import net.minecraft.item.Item;
  7. import net.minecraft.item.ItemArmor.ArmorMaterial;
  8. import net.minecraft.item.ItemStack;
  9. import net.minecraftforge.common.util.EnumHelper;
  10. import net.minecraftforge.fml.common.registry.GameRegistry;
  11. public class ModItems
  12. {
  13. /*
  14. harvestLevel, maxUses, efficiency, damageVsEntity, enchantability
  15. WOOD(0, 59, 2.0F, 0.0F, 15),
  16. STONE(1, 131, 4.0F, 1.0F, 5),
  17. IRON(2, 250, 6.0F, 2.0F, 14),
  18. DIAMOND(3, 1561, 8.0F, 3.0F, 10),
  19. GOLD(0, 32, 12.0F, 0.0F, 22);
  20. for axes
  21. ATTACK_DAMAGES {6.0F, 8.0F, 8.0F, 8.0F, 6.0F}
  22. ATTACK_SPEEDS { -3.2F, -3.2F, -3.1F, -3.0F, -3.0F}
  23. */
  24. public static final Item.ToolMaterial TOOL_COPPER =
  25. EnumHelper.addToolMaterial("COPPER", 1, 161, 6, 1, 18);
  26. public static final Item.ToolMaterial TOOL_BRONZE =
  27. EnumHelper.addToolMaterial("BRONZE", 2, 208, 7, 1.5f, 15);
  28. /*
  29. String nameIn, int maxDamageFactorIn, int[] damageReductionAmountArrayIn,
  30. int enchantabilityIn, SoundEvent soundEventIn, float toughnessIn
  31. LEATHER("leather", 5, new int[]{1, 2, 3, 1}, 15, SoundEvents.ITEM_ARMOR_EQUIP_LEATHER, 0.0F),
  32. CHAIN("chainmail", 15, new int[]{1, 4, 5, 2}, 12, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0.0F),
  33. IRON("iron", 15, new int[]{2, 5, 6, 2}, 9, SoundEvents.ITEM_ARMOR_EQUIP_IRON, 0.0F),
  34. GOLD("gold", 7, new int[]{1, 3, 5, 2}, 25, SoundEvents.ITEM_ARMOR_EQUIP_GOLD, 0.0F),
  35. DIAMOND("diamond", 33, new int[]{3, 6, 8, 3}, 10, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 2.0F);
  36. */
  37. public static final ArmorMaterial ARMOR_COPPER =
  38. EnumHelper.addArmorMaterial("COPPER", KajetansMod.MODID + ":copper", 9,
  39. new int[]{1, 4, 5, 1}, 20, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0);
  40. public static final ArmorMaterial ARMOR_BRONZE =
  41. EnumHelper.addArmorMaterial("BRONZE", KajetansMod.MODID + ":bronze", 13,
  42. new int[]{2, 5, 6, 2}, 20, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0);
  43. // nuggets and ingots
  44. public static ItemBase copperIngot;
  45. public static ItemBase copperNugget;
  46. public static ItemBase tinIngot;
  47. public static ItemBase tinNugget;
  48. public static ItemBase bronzeIngot;
  49. public static ItemBase bronzeNugget;
  50. // tools and swords
  51. public static ItemSword copperSword;
  52. public static ItemSpade copperShovel;
  53. public static ItemPickaxe copperPickaxe;
  54. public static ItemAxe copperAxe;
  55. public static ItemHoe copperHoe;
  56. public static ItemSword bronzeSword;
  57. public static ItemSpade bronzeShovel;
  58. public static ItemPickaxe bronzePickaxe;
  59. public static ItemAxe bronzeAxe;
  60. public static ItemHoe bronzeHoe;
  61. // armor
  62. public static ItemArmor copperHelmet;
  63. public static ItemArmor copperChestplate;
  64. public static ItemArmor copperLeggings;
  65. public static ItemArmor copperBoots;
  66. public static ItemArmor bronzeHelmet;
  67. public static ItemArmor bronzeChestplate;
  68. public static ItemArmor bronzeLeggings;
  69. public static ItemArmor bronzeBoots;
  70. // wands
  71. public static ItemWand woodenWand;
  72. // coins
  73. public static ItemBase copperCoin;
  74. public static ItemBase silverCoin;
  75. public static ItemBase goldCoin;
  76. // misc
  77. public static ItemScroll scroll;
  78. public static ItemBed realHayBed;
  79. public static void init()
  80. {
  81. // nuggets and ingots
  82. copperIngot = register(new ItemBase("copper_ingot", "ingotCopper").setCreativeTab(CreativeTabs.MATERIALS));
  83. copperNugget = register(new ItemBase("copper_nugget", "copperNugget").setCreativeTab(CreativeTabs.MATERIALS));
  84. tinIngot = register(new ItemBase("tin_ingot", "ingotTin").setCreativeTab(CreativeTabs.MATERIALS));
  85. tinNugget = register(new ItemBase("tin_nugget", "tinNugget").setCreativeTab(CreativeTabs.MATERIALS));
  86. bronzeIngot = register(new ItemBase("bronze_ingot", "ingotBronze").setCreativeTab(CreativeTabs.MATERIALS));
  87. bronzeNugget = register(new ItemBase("bronze_nugget", "bronzeNugget").setCreativeTab(CreativeTabs.MATERIALS));
  88. // repair items
  89. TOOL_COPPER.setRepairItem(new ItemStack(copperIngot));
  90. ARMOR_COPPER.setRepairItem(new ItemStack(copperIngot));
  91. TOOL_BRONZE.setRepairItem(new ItemStack(bronzeIngot));
  92. ARMOR_BRONZE.setRepairItem(new ItemStack(bronzeIngot));
  93. // tools and swords
  94. copperSword = register(new ItemSword(TOOL_COPPER, "copper_sword", "swordCopper"));
  95. copperShovel = register(new ItemSpade(TOOL_COPPER, "copper_shovel", "shovelCopper"));
  96. copperPickaxe = register(new ItemPickaxe(TOOL_COPPER, "copper_pickaxe", "pickaxeCopper"));
  97. copperAxe = register(new ItemAxe(TOOL_COPPER, 7, -3.1f, "copper_axe", "hatchetCopper"));
  98. copperHoe = register(new ItemHoe(TOOL_COPPER, "copper_hoe", "hoeCopper"));
  99. bronzeSword = register(new ItemSword(TOOL_BRONZE, "bronze_sword", "swordBronze"));
  100. bronzeShovel = register(new ItemSpade(TOOL_BRONZE, "bronze_shovel", "shovelBronze"));
  101. bronzePickaxe = register(new ItemPickaxe(TOOL_BRONZE, "bronze_pickaxe", "pickaxeBronze"));
  102. bronzeAxe = register(new ItemAxe(TOOL_BRONZE, 8, -3.0f, "bronze_axe", "hatchetBronze"));
  103. bronzeHoe = register(new ItemHoe(TOOL_BRONZE, "bronze_hoe", "hoeBronze"));
  104. // armor
  105. copperHelmet = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.HEAD, "copper_helmet", "helmetCopper"));
  106. copperChestplate = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.CHEST, "copper_chestplate", "chestplateCopper"));
  107. copperLeggings = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.LEGS, "copper_leggings", "leggingsCopper"));
  108. copperBoots = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.FEET, "copper_boots", "bootsCopper"));
  109. bronzeHelmet = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.HEAD, "bronze_helmet", "helmetBronze"));
  110. bronzeChestplate = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.CHEST, "bronze_chestplate", "chestplateBronze"));
  111. bronzeLeggings = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.LEGS, "bronze_leggings", "leggingsBronze"));
  112. bronzeBoots = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.FEET, "bronze_boots", "bootsBronze"));
  113. // wands
  114. woodenWand = register(new ItemWand("wood_wand", "wandWood", Item.ToolMaterial.WOOD, 1));
  115. // coins
  116. copperCoin = register(new ItemBase("coin_copper", "coinCopper").setCreativeTab(CreativeTabs.MISC));
  117. silverCoin = register(new ItemBase("coin_silver", "coinSilver").setCreativeTab(CreativeTabs.MISC));
  118. goldCoin = register(new ItemBase("coin_gold", "coinGold").setCreativeTab(CreativeTabs.MISC));
  119. // misc
  120. scroll = register((ItemScroll) new ItemScroll("scroll", "scroll").setCreativeTab(CreativeTabs.MISC));
  121. realHayBed = register(new ItemBed("real_hay_bed", "realHayBed"));
  122. }
  123. private static <T extends Item> T register(T item)
  124. {
  125. GameRegistry.register(item);
  126. if(item instanceof ItemModelProvider)
  127. {
  128. ((ItemModelProvider) item).registerItemModel(item);
  129. }
  130. return item;
  131. }
  132. }