mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 13:13:12 +01:00
20 lines
945 B
Java
20 lines
945 B
Java
|
package ellpeck.actuallyadditions.material;
|
||
|
|
||
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
||
|
import ellpeck.actuallyadditions.util.ModUtil;
|
||
|
import net.minecraft.item.ItemArmor;
|
||
|
import net.minecraftforge.common.util.EnumHelper;
|
||
|
|
||
|
public class InitArmorMaterials{
|
||
|
|
||
|
public static ItemArmor.ArmorMaterial armorMaterialScuba;
|
||
|
public static ItemArmor.ArmorMaterial armorMaterialEmerald;
|
||
|
public static ItemArmor.ArmorMaterial armorMaterialObsidian;
|
||
|
|
||
|
public static void init(){
|
||
|
ModUtil.LOGGER.info("Initializing Armor Materials...");
|
||
|
|
||
|
armorMaterialScuba = EnumHelper.addArmorMaterial("armorMaterialScuba", ConfigIntValues.SCUBA_DURABILITY.getValue(), new int[]{ConfigIntValues.SCUBA_HEAD_DAMAGE.getValue(), ConfigIntValues.SCUBA_CHEST_DAMAGE.getValue(), ConfigIntValues.SCUBA_LEGS_DAMAGE.getValue(), ConfigIntValues.SCUBA_BOOTS_DAMAGE.getValue()}, ConfigIntValues.SCUBA_ENCHANTABILITY.getValue());
|
||
|
}
|
||
|
}
|