
The new Throwing Daggers deal 8 damage and have a chance to drop a Slate Ampoule based on the mob killed's max health. Crafted using the Hellfire Forge. Using a Slate Ampoule next to a Blood Altar fills its main tank with 500LP .
27 lines
807 B
Java
27 lines
807 B
Java
package wayoftime.bloodmagic.entity.projectile;
|
|
|
|
import net.minecraft.entity.EntityType;
|
|
import net.minecraft.entity.LivingEntity;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.world.World;
|
|
import wayoftime.bloodmagic.common.registries.BloodMagicEntityTypes;
|
|
|
|
public class EntityThrowingDagger extends AbstractEntityThrowingDagger
|
|
{
|
|
public EntityThrowingDagger(EntityType<EntityThrowingDagger> type, World world)
|
|
{
|
|
super(type, world);
|
|
}
|
|
|
|
public EntityThrowingDagger(ItemStack stack, World worldIn, LivingEntity throwerIn)
|
|
{
|
|
super(BloodMagicEntityTypes.THROWING_DAGGER.get(), stack, worldIn, throwerIn);
|
|
|
|
}
|
|
|
|
public EntityThrowingDagger(ItemStack stack, World worldIn, double x, double y, double z)
|
|
{
|
|
super(BloodMagicEntityTypes.THROWING_DAGGER.get(), stack, worldIn, x, y, z);
|
|
}
|
|
}
|