mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
496 B
Java
22 lines
496 B
Java
package com.hbm.items.armor;
|
|
|
|
import com.hbm.lib.RefStrings;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.item.ItemArmor;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class MaskOfInfamy extends ItemArmor {
|
|
|
|
public MaskOfInfamy(ArmorMaterial mat, int slot) {
|
|
super(mat, 0, slot);
|
|
}
|
|
|
|
@Override
|
|
public String getArmorTexture(ItemStack stack, Entity entity, int slot, String layer) {
|
|
|
|
return (RefStrings.MODID + ":textures/armor/MaskOfInfamy.png");
|
|
}
|
|
|
|
}
|