13 lines
458 B
Java
13 lines
458 B
Java
![]() |
package WayofTime.bloodmagic.api.iface;
|
||
|
|
||
|
import net.minecraft.entity.EntityLivingBase;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import WayofTime.bloodmagic.api.soul.EnumDemonWillType;
|
||
|
|
||
|
public interface ISentientSwordEffectProvider
|
||
|
{
|
||
|
public boolean applyOnHitEffect(EnumDemonWillType type, ItemStack swordStack, ItemStack providerStack, EntityLivingBase attacker, EntityLivingBase target);
|
||
|
|
||
|
public boolean providesEffectForWill(EnumDemonWillType type);
|
||
|
}
|