You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
993 B
Java
30 lines
993 B
Java
package com.zivilon.cinder_loe.items;
|
|
|
|
import com.zivilon.cinder_loe.CinderLoE;
|
|
import com.zivilon.cinder_loe.entity.corrupt.CorruptMan;
|
|
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
|
|
import lotr.common.item.LOTRItemArmor;
|
|
import lotr.common.item.LOTRMaterial;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.IEntityLivingData;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.potion.Potion;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.event.entity.living.LivingEvent;
|
|
import net.minecraftforge.event.entity.living.LivingHurtEvent;
|
|
|
|
import java.util.Random;
|
|
|
|
public class BrokenHalo extends LOTRItemArmor {
|
|
|
|
public BrokenHalo(LOTRMaterial material, int slotType, String s) {
|
|
super(material, slotType, s);
|
|
|
|
}
|
|
}
|