mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
40 lines
1.1 KiB
Java
40 lines
1.1 KiB
Java
package com.hbm.items.armor;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.extprop.HbmLivingProps;
|
|
import com.hbm.handler.ArmorModHandler;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.EnumChatFormatting;
|
|
|
|
public class ItemModMedal extends ItemArmorMod {
|
|
|
|
public ItemModMedal() {
|
|
super(ArmorModHandler.plate_only, true, true, false, false);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean bool) {
|
|
list.add(EnumChatFormatting.GOLD + "-10 RAD/s");
|
|
super.addInformation(stack, player, list, bool);
|
|
}
|
|
|
|
@Override
|
|
public void addDesc(List list, ItemStack stack, ItemStack armor) {
|
|
list.add(EnumChatFormatting.GOLD + " " + stack.getDisplayName() + " (-10 RAD/s)");
|
|
}
|
|
|
|
@Override
|
|
public void modUpdate(EntityLivingBase entity, ItemStack armor) {
|
|
|
|
if(!entity.worldObj.isRemote) {
|
|
float rad = HbmLivingProps.getRadiation(entity);
|
|
rad -= 0.5F;
|
|
HbmLivingProps.setRadiation(entity, Math.max(rad, 0));
|
|
}
|
|
}
|
|
}
|