Added the Sigil of Elasticity, the Sigil of the Claw, and the Sigil of Winter's Breath.

This commit is contained in:
WayofTime 2016-10-14 20:51:21 -04:00
parent 0a1d66a1d9
commit ea43fbce7d
22 changed files with 186 additions and 8 deletions

View file

@ -0,0 +1,21 @@
package WayofTime.bloodmagic.item.sigil;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
import WayofTime.bloodmagic.registry.ModPotions;
public class ItemSigilClaw extends ItemSigilToggleableBase
{
public ItemSigilClaw()
{
super("claw", 100);
}
@Override
public void onSigilUpdate(ItemStack stack, World world, EntityPlayer player, int itemSlot, boolean isSelected)
{
player.addPotionEffect(new PotionEffect(ModPotions.cling, 2, 0, true, false));
}
}