Workaround a forge bug, REVERT WHEN FIXED
This commit is contained in:
parent
74d500a2fd
commit
8f3352238f
1 changed files with 15 additions and 8 deletions
|
@ -12,21 +12,28 @@ import net.minecraft.item.ItemArmor.ArmorMaterial;
|
||||||
*/
|
*/
|
||||||
//TODO move this out of the api, and make it nicer
|
//TODO move this out of the api, and make it nicer
|
||||||
public class Reference {
|
public class Reference {
|
||||||
|
|
||||||
|
//TODO MAJOR!!!
|
||||||
|
public static ArmorMaterial BRONZE_ARMOUR = ArmorMaterial.DIAMOND;
|
||||||
|
public static ArmorMaterial RUBY_ARMOUR = ArmorMaterial.DIAMOND;
|
||||||
|
public static ArmorMaterial SAPPHIRE_ARMOUR = ArmorMaterial.DIAMOND;
|
||||||
|
public static ArmorMaterial PERIDOT_ARMOUR = ArmorMaterial.DIAMOND;
|
||||||
|
|
||||||
public static ToolMaterial BRONZE = EnumHelper.addToolMaterial("BRONZE", 2, 375, 6.0F, 2.25F, 8);
|
public static ToolMaterial BRONZE = EnumHelper.addToolMaterial("BRONZE", 2, 375, 6.0F, 2.25F, 8);
|
||||||
public static ArmorMaterial BRONZE_ARMOUR = EnumHelper.addArmorMaterial("BRONZE", "techreborn:bronze", 17,
|
// public static ArmorMaterial BRONZE_ARMOUR = EnumHelper.addArmorMaterial("BRONZE", "techreborn:bronze", 17,
|
||||||
new int[]{3, 6, 5, 2}, 8, null/* TODO: SoundEvent */);
|
// new int[]{3, 6, 5, 2}, 8, null/* TODO: SoundEvent */);
|
||||||
|
|
||||||
public static ToolMaterial RUBY = EnumHelper.addToolMaterial("RUBY", 2, 320, 6.2F, 2.7F, 10);
|
public static ToolMaterial RUBY = EnumHelper.addToolMaterial("RUBY", 2, 320, 6.2F, 2.7F, 10);
|
||||||
public static ArmorMaterial RUBY_ARMOUR = EnumHelper.addArmorMaterial("RUBY", "techreborn:ruby", 16,
|
// public static ArmorMaterial RUBY_ARMOUR = EnumHelper.addArmorMaterial("RUBY", "techreborn:ruby", 16,
|
||||||
new int[]{2, 7, 5, 2}, 10, null/* TODO: SoundEvent */);
|
// new int[]{2, 7, 5, 2}, 10, null/* TODO: SoundEvent */);
|
||||||
|
|
||||||
public static ToolMaterial SAPPHIRE = EnumHelper.addToolMaterial("SAPPHIRE", 2, 620, 5.0F, 2F, 8);
|
public static ToolMaterial SAPPHIRE = EnumHelper.addToolMaterial("SAPPHIRE", 2, 620, 5.0F, 2F, 8);
|
||||||
public static ArmorMaterial SAPPHIRE_ARMOUR = EnumHelper.addArmorMaterial("SAPPHIRE", "techreborn:sapphire",
|
// public static ArmorMaterial SAPPHIRE_ARMOUR = EnumHelper.addArmorMaterial("SAPPHIRE", "techreborn:sapphire",
|
||||||
19, new int[]{4, 4, 4, 4}, 8, null/* TODO: SoundEvent */);
|
// 19, new int[]{4, 4, 4, 4}, 8, null/* TODO: SoundEvent */);
|
||||||
|
|
||||||
public static ToolMaterial PERIDOT = EnumHelper.addToolMaterial("PERIDOT", 2, 400, 7.0F, 2.4F, 16);
|
public static ToolMaterial PERIDOT = EnumHelper.addToolMaterial("PERIDOT", 2, 400, 7.0F, 2.4F, 16);
|
||||||
public static ArmorMaterial PERIDOT_ARMOUR = EnumHelper.addArmorMaterial("PERIDOT", "techreborn:peridot", 17,
|
// public static ArmorMaterial PERIDOT_ARMOUR = EnumHelper.addArmorMaterial("PERIDOT", "techreborn:peridot", 17,
|
||||||
new int[]{3, 8, 3, 2}, 16, null/* TODO: SoundEvent */);
|
// new int[]{3, 8, 3, 2}, 16, null/* TODO: SoundEvent */);
|
||||||
|
|
||||||
public static String alloySmelteRecipe = I18n.translateToLocal("techreborn.recipe.alloysmelter");
|
public static String alloySmelteRecipe = I18n.translateToLocal("techreborn.recipe.alloysmelter");
|
||||||
public static String assemblingMachineRecipe = I18n.translateToLocal("techreborn.recipe.assemblingmachine");
|
public static String assemblingMachineRecipe = I18n.translateToLocal("techreborn.recipe.assemblingmachine");
|
||||||
|
|
Loading…
Add table
Reference in a new issue