|
@@ -20,11 +20,14 @@ public class ModItems
|
|
DIAMOND(3, 1561, 8.0F, 3.0F, 10),
|
|
DIAMOND(3, 1561, 8.0F, 3.0F, 10),
|
|
GOLD(0, 32, 12.0F, 0.0F, 22);
|
|
GOLD(0, 32, 12.0F, 0.0F, 22);
|
|
|
|
|
|
|
|
+ for axes
|
|
ATTACK_DAMAGES {6.0F, 8.0F, 8.0F, 8.0F, 6.0F}
|
|
ATTACK_DAMAGES {6.0F, 8.0F, 8.0F, 8.0F, 6.0F}
|
|
ATTACK_SPEEDS { -3.2F, -3.2F, -3.1F, -3.0F, -3.0F}
|
|
ATTACK_SPEEDS { -3.2F, -3.2F, -3.1F, -3.0F, -3.0F}
|
|
*/
|
|
*/
|
|
public static final Item.ToolMaterial TOOL_COPPER =
|
|
public static final Item.ToolMaterial TOOL_COPPER =
|
|
- EnumHelper.addToolMaterial("COPPER", 1, 168, 8, 1, 18);
|
|
|
|
|
|
+ EnumHelper.addToolMaterial("COPPER", 1, 161, 6, 1, 18);
|
|
|
|
+ public static final Item.ToolMaterial TOOL_BRONZE =
|
|
|
|
+ EnumHelper.addToolMaterial("BRONZE", 2, 208, 7, 1.5f, 15);
|
|
|
|
|
|
/*
|
|
/*
|
|
String nameIn, int maxDamageFactorIn, int[] damageReductionAmountArrayIn,
|
|
String nameIn, int maxDamageFactorIn, int[] damageReductionAmountArrayIn,
|
|
@@ -36,52 +39,111 @@ public class ModItems
|
|
DIAMOND("diamond", 33, new int[]{3, 6, 8, 3}, 10, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 2.0F);
|
|
DIAMOND("diamond", 33, new int[]{3, 6, 8, 3}, 10, SoundEvents.ITEM_ARMOR_EQUIP_DIAMOND, 2.0F);
|
|
*/
|
|
*/
|
|
public static final ArmorMaterial ARMOR_COPPER =
|
|
public static final ArmorMaterial ARMOR_COPPER =
|
|
- EnumHelper.addArmorMaterial("COPPER", KajetansMod.MODID + ":copper", 10,
|
|
|
|
- new int[]{1, 4, 5, 2}, 20, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0);
|
|
|
|
|
|
+ EnumHelper.addArmorMaterial("COPPER", KajetansMod.MODID + ":copper", 9,
|
|
|
|
+ new int[]{1, 4, 5, 1}, 20, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0);
|
|
|
|
+ public static final ArmorMaterial ARMOR_BRONZE =
|
|
|
|
+ EnumHelper.addArmorMaterial("BRONZE", KajetansMod.MODID + ":bronze", 13,
|
|
|
|
+ new int[]{2, 5, 6, 2}, 20, SoundEvents.ITEM_ARMOR_EQUIP_CHAIN, 0);
|
|
|
|
|
|
|
|
+ // nuggets and ingots
|
|
public static ItemBase copperIngot;
|
|
public static ItemBase copperIngot;
|
|
public static ItemBase copperNugget;
|
|
public static ItemBase copperNugget;
|
|
|
|
|
|
|
|
+ public static ItemBase tinIngot;
|
|
|
|
+ public static ItemBase tinNugget;
|
|
|
|
+
|
|
|
|
+ public static ItemBase bronzeIngot;
|
|
|
|
+ public static ItemBase bronzeNugget;
|
|
|
|
+
|
|
|
|
+ // tools and swords
|
|
public static ItemSword copperSword;
|
|
public static ItemSword copperSword;
|
|
public static ItemSpade copperShovel;
|
|
public static ItemSpade copperShovel;
|
|
public static ItemPickaxe copperPickaxe;
|
|
public static ItemPickaxe copperPickaxe;
|
|
public static ItemAxe copperAxe;
|
|
public static ItemAxe copperAxe;
|
|
public static ItemHoe copperHoe;
|
|
public static ItemHoe copperHoe;
|
|
|
|
|
|
|
|
+ public static ItemSword bronzeSword;
|
|
|
|
+ public static ItemSpade bronzeShovel;
|
|
|
|
+ public static ItemPickaxe bronzePickaxe;
|
|
|
|
+ public static ItemAxe bronzeAxe;
|
|
|
|
+ public static ItemHoe bronzeHoe;
|
|
|
|
+
|
|
|
|
+ // armor
|
|
public static ItemArmor copperHelmet;
|
|
public static ItemArmor copperHelmet;
|
|
public static ItemArmor copperChestplate;
|
|
public static ItemArmor copperChestplate;
|
|
public static ItemArmor copperLeggings;
|
|
public static ItemArmor copperLeggings;
|
|
public static ItemArmor copperBoots;
|
|
public static ItemArmor copperBoots;
|
|
|
|
|
|
|
|
+ public static ItemArmor bronzeHelmet;
|
|
|
|
+ public static ItemArmor bronzeChestplate;
|
|
|
|
+ public static ItemArmor bronzeLeggings;
|
|
|
|
+ public static ItemArmor bronzeBoots;
|
|
|
|
+
|
|
|
|
+ // wands
|
|
public static ItemWand woodenWand;
|
|
public static ItemWand woodenWand;
|
|
|
|
|
|
|
|
+ // coins
|
|
|
|
+ public static ItemBase copperCoin;
|
|
|
|
+ public static ItemBase silverCoin;
|
|
|
|
+ public static ItemBase goldCoin;
|
|
|
|
+
|
|
|
|
+ // misc
|
|
public static ItemScroll scroll;
|
|
public static ItemScroll scroll;
|
|
|
|
+ public static ItemBed realHayBed;
|
|
|
|
|
|
public static void init()
|
|
public static void init()
|
|
{
|
|
{
|
|
|
|
+ // nuggets and ingots
|
|
copperIngot = register(new ItemBase("copper_ingot", "ingotCopper").setCreativeTab(CreativeTabs.MATERIALS));
|
|
copperIngot = register(new ItemBase("copper_ingot", "ingotCopper").setCreativeTab(CreativeTabs.MATERIALS));
|
|
copperNugget = register(new ItemBase("copper_nugget", "copperNugget").setCreativeTab(CreativeTabs.MATERIALS));
|
|
copperNugget = register(new ItemBase("copper_nugget", "copperNugget").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
|
|
|
|
+ tinIngot = register(new ItemBase("tin_ingot", "ingotTin").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
+ tinNugget = register(new ItemBase("tin_nugget", "tinNugget").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
+
|
|
|
|
+ bronzeIngot = register(new ItemBase("bronze_ingot", "ingotBronze").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
+ bronzeNugget = register(new ItemBase("bronze_nugget", "bronzeNugget").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
+
|
|
|
|
+ // repair items
|
|
|
|
+ TOOL_COPPER.setRepairItem(new ItemStack(copperIngot));
|
|
|
|
+ ARMOR_COPPER.setRepairItem(new ItemStack(copperIngot));
|
|
|
|
+ TOOL_BRONZE.setRepairItem(new ItemStack(bronzeIngot));
|
|
|
|
+ ARMOR_BRONZE.setRepairItem(new ItemStack(bronzeIngot));
|
|
|
|
+
|
|
|
|
+ // tools and swords
|
|
copperSword = register(new ItemSword(TOOL_COPPER, "copper_sword", "swordCopper"));
|
|
copperSword = register(new ItemSword(TOOL_COPPER, "copper_sword", "swordCopper"));
|
|
copperShovel = register(new ItemSpade(TOOL_COPPER, "copper_shovel", "shovelCopper"));
|
|
copperShovel = register(new ItemSpade(TOOL_COPPER, "copper_shovel", "shovelCopper"));
|
|
copperPickaxe = register(new ItemPickaxe(TOOL_COPPER, "copper_pickaxe", "pickaxeCopper"));
|
|
copperPickaxe = register(new ItemPickaxe(TOOL_COPPER, "copper_pickaxe", "pickaxeCopper"));
|
|
copperAxe = register(new ItemAxe(TOOL_COPPER, 7, -3.1f, "copper_axe", "hatchetCopper"));
|
|
copperAxe = register(new ItemAxe(TOOL_COPPER, 7, -3.1f, "copper_axe", "hatchetCopper"));
|
|
copperHoe = register(new ItemHoe(TOOL_COPPER, "copper_hoe", "hoeCopper"));
|
|
copperHoe = register(new ItemHoe(TOOL_COPPER, "copper_hoe", "hoeCopper"));
|
|
|
|
|
|
|
|
+ bronzeSword = register(new ItemSword(TOOL_BRONZE, "bronze_sword", "swordBronze"));
|
|
|
|
+ bronzeShovel = register(new ItemSpade(TOOL_BRONZE, "bronze_shovel", "shovelBronze"));
|
|
|
|
+ bronzePickaxe = register(new ItemPickaxe(TOOL_BRONZE, "bronze_pickaxe", "pickaxeBronze"));
|
|
|
|
+ bronzeAxe = register(new ItemAxe(TOOL_BRONZE, 8, -3.0f, "bronze_axe", "hatchetBronze"));
|
|
|
|
+ bronzeHoe = register(new ItemHoe(TOOL_BRONZE, "bronze_hoe", "hoeBronze"));
|
|
|
|
+
|
|
|
|
+ // armor
|
|
copperHelmet = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.HEAD, "copper_helmet", "helmetCopper"));
|
|
copperHelmet = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.HEAD, "copper_helmet", "helmetCopper"));
|
|
copperChestplate = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.CHEST, "copper_chestplate", "chestplateCopper"));
|
|
copperChestplate = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.CHEST, "copper_chestplate", "chestplateCopper"));
|
|
copperLeggings = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.LEGS, "copper_leggings", "leggingsCopper"));
|
|
copperLeggings = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.LEGS, "copper_leggings", "leggingsCopper"));
|
|
copperBoots = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.FEET, "copper_boots", "bootsCopper"));
|
|
copperBoots = register(new ItemArmor(ARMOR_COPPER, EntityEquipmentSlot.FEET, "copper_boots", "bootsCopper"));
|
|
|
|
|
|
|
|
+ bronzeHelmet = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.HEAD, "bronze_helmet", "helmetBronze"));
|
|
|
|
+ bronzeChestplate = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.CHEST, "bronze_chestplate", "chestplateBronze"));
|
|
|
|
+ bronzeLeggings = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.LEGS, "bronze_leggings", "leggingsBronze"));
|
|
|
|
+ bronzeBoots = register(new ItemArmor(ARMOR_BRONZE, EntityEquipmentSlot.FEET, "bronze_boots", "bootsBronze"));
|
|
|
|
+
|
|
|
|
+ // wands
|
|
woodenWand = register(new ItemWand("wood_wand", "wandWood", Item.ToolMaterial.WOOD, 1));
|
|
woodenWand = register(new ItemWand("wood_wand", "wandWood", Item.ToolMaterial.WOOD, 1));
|
|
|
|
|
|
|
|
+ // coins
|
|
|
|
+ copperCoin = register(new ItemBase("coin_copper", "coinCopper").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ silverCoin = register(new ItemBase("coin_silver", "coinSilver").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ goldCoin = register(new ItemBase("coin_gold", "coinGold").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+
|
|
|
|
+ // misc
|
|
scroll = register((ItemScroll) new ItemScroll("scroll", "scroll").setCreativeTab(CreativeTabs.MISC));
|
|
scroll = register((ItemScroll) new ItemScroll("scroll", "scroll").setCreativeTab(CreativeTabs.MISC));
|
|
- }
|
|
|
|
-
|
|
|
|
- public static void lateInit()
|
|
|
|
- {
|
|
|
|
- TOOL_COPPER.setRepairItem(new ItemStack(copperIngot));
|
|
|
|
- ARMOR_COPPER.setRepairItem(new ItemStack(copperIngot));
|
|
|
|
|
|
+ realHayBed = register(new ItemBed("real_hay_bed", "realHayBed"));
|
|
}
|
|
}
|
|
|
|
|
|
private static <T extends Item> T register(T item)
|
|
private static <T extends Item> T register(T item)
|