2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("InitToolMaterials.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.material;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2021-02-27 21:24:26 +01:00
|
|
|
@Deprecated
|
2019-05-02 09:10:29 +02:00
|
|
|
public final class InitToolMaterials {
|
2021-02-27 21:24:26 +01:00
|
|
|
//
|
|
|
|
// public static ToolMaterial toolMaterialEmerald;
|
|
|
|
// public static ToolMaterial toolMaterialObsidian;
|
|
|
|
// public static ToolMaterial toolMaterialQuartz;
|
|
|
|
//
|
|
|
|
// public static ToolMaterial toolMaterialCrystalRed;
|
|
|
|
// public static ToolMaterial toolMaterialCrystalBlue;
|
|
|
|
// public static ToolMaterial toolMaterialCrystalLightBlue;
|
|
|
|
// public static ToolMaterial toolMaterialCrystalBlack;
|
|
|
|
// public static ToolMaterial toolMaterialCrystalGreen;
|
|
|
|
// public static ToolMaterial toolMaterialCrystalWhite;
|
|
|
|
//
|
|
|
|
// public static void init() {
|
|
|
|
// ActuallyAdditions.LOGGER.info("Initializing Tool Materials...");
|
|
|
|
//
|
|
|
|
// toolMaterialEmerald = addToolMaterial("toolMaterialEmerald", 3, 2000, 9.0F, 5.0F, 15);
|
|
|
|
// toolMaterialObsidian = addToolMaterial("toolMaterialObsidian", 3, 8000, 4.0F, 2.0F, 15);
|
|
|
|
// toolMaterialQuartz = addToolMaterial("toolMaterialQuartz", 2, 280, 6.5F, 2.0F, 10);
|
|
|
|
//
|
|
|
|
// toolMaterialCrystalRed = addToolMaterial("toolMaterialCrystalRed", 2, 300, 7.0F, 2.25F, 12);
|
|
|
|
// toolMaterialCrystalBlue = addToolMaterial("toolMaterialCrystalBlue", 2, 300, 7.0F, 2.25F, 12);
|
|
|
|
// toolMaterialCrystalLightBlue = addToolMaterial("toolMaterialCrystalLightBlue", 3, 1600, 9.0F, 4.0F, 14);
|
|
|
|
// toolMaterialCrystalBlack = addToolMaterial("toolMaterialCrystalBlack", 2, 280, 6.0F, 2.0F, 8);
|
|
|
|
// toolMaterialCrystalGreen = addToolMaterial("toolMaterialCrystalGreen", 4, 2200, 9.5F, 5.5F, 18);
|
|
|
|
// toolMaterialCrystalWhite = addToolMaterial("toolMaterialCrystalWhite", 2, 280, 6.25F, 2.5F, 15);
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// private static ToolMaterial addToolMaterial(String name, int harvestLevel, int maxUses, float efficiency, float damage, int enchantability) {
|
|
|
|
// return EnumHelper.addToolMaterial((ActuallyAdditions.MODID + "_" + name).toUpperCase(Locale.ROOT), harvestLevel, maxUses, efficiency, damage, enchantability);
|
|
|
|
// }
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
}
|