swords.add(dragonSword);
k++;
for (int x = 1; x < itemTypes.length; x++) {
swords.add(new Weapon(k - 256, (int) ((7 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
swordCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
greatSwords
.add(new Weapon(k - 256, (int) ((15 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
greatswordCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
maces.add(new Weapon(k - 256, (int) ((9 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
maceCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
warhammers
.add(new Weapon(k - 256, (int) ((18 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
warhammerCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
waraxes.add(new Weapon(k - 256, (int) ((8 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
waraxeCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
battleaxes
.add(new Weapon(k - 256, (int) ((16 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
battleaxeCraft(Ores.ingots.get(x)));
k++;
}
for (int x = 0; x < itemTypes.length; x++) {
daggers.add(new Weapon(k - 256, (int) ((4 + x) * itemTypeMod[x]),
EnumToolMaterial.EMERALD));
ModLoader.addRecipe(new ItemStack(k, 1, 0),
daggerCraft(Ores.ingots.get(x)));
k++;
}
mod_Dragon.LAST_ID = k;
for (int x = 0; x < weaponTypes.length; x++)