23 lines
1.1 KiB
Java
23 lines
1.1 KiB
Java
package WayofTime.bloodmagic.registry;
|
|
|
|
import net.minecraftforge.fml.common.registry.EntityRegistry;
|
|
import WayofTime.bloodmagic.BloodMagic;
|
|
import WayofTime.bloodmagic.entity.mob.EntitySentientSpecter;
|
|
import WayofTime.bloodmagic.entity.projectile.EntityBloodLight;
|
|
import WayofTime.bloodmagic.entity.projectile.EntityMeteor;
|
|
import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow;
|
|
import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare;
|
|
|
|
public class ModEntities
|
|
{
|
|
public static void init()
|
|
{
|
|
int id = 0;
|
|
|
|
EntityRegistry.registerModEntity(EntityBloodLight.class, "BloodLight", id++, BloodMagic.instance, 64, 20, true);
|
|
EntityRegistry.registerModEntity(EntitySoulSnare.class, "SoulSnare", id++, BloodMagic.instance, 64, 1, true);
|
|
EntityRegistry.registerModEntity(EntitySentientArrow.class, "SoulArrow", id++, BloodMagic.instance, 64, 1, true);
|
|
EntityRegistry.registerModEntity(EntityMeteor.class, "Meteor", id++, BloodMagic.instance, 64, 1, true);
|
|
EntityRegistry.registerModEntity(EntitySentientSpecter.class, "SentientSpecter", id++, BloodMagic.instance, 64, 1, true);
|
|
}
|
|
}
|