Working on Spell Testing

This commit is contained in:
WayofTime 2014-01-18 21:27:08 -05:00
parent e11b3812dd
commit dc775435bf
7 changed files with 84 additions and 7 deletions

View file

@ -0,0 +1,13 @@
package WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public class SelfDefaultFire implements ISelfSpellEffect
{
@Override
public void onSelfUse(World world, EntityPlayer player)
{
player.setFire(500);
}
}