2015-11-02 12:39:44 -08:00
|
|
|
package WayofTime.bloodmagic.registry;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2016-12-12 19:56:36 -08:00
|
|
|
import net.minecraftforge.fml.common.registry.EntityEntry;
|
2016-09-20 17:28:58 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityCorruptedChicken;
|
2016-09-17 08:06:31 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep;
|
2016-09-22 14:20:05 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityCorruptedSpider;
|
2016-09-13 17:20:35 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityCorruptedZombie;
|
2016-08-22 14:22:18 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityMimic;
|
2016-08-14 14:14:25 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntitySentientSpecter;
|
2015-12-27 19:38:12 -05:00
|
|
|
import WayofTime.bloodmagic.entity.projectile.EntityBloodLight;
|
2016-07-13 17:18:34 -04:00
|
|
|
import WayofTime.bloodmagic.entity.projectile.EntityMeteor;
|
2016-01-09 10:47:36 -05:00
|
|
|
import WayofTime.bloodmagic.entity.projectile.EntitySentientArrow;
|
2016-01-08 14:56:36 -05:00
|
|
|
import WayofTime.bloodmagic.entity.projectile.EntitySoulSnare;
|
2016-12-12 19:56:36 -08:00
|
|
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
2015-12-27 19:38:12 -05:00
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public class ModEntities
|
|
|
|
{
|
|
|
|
public static void init()
|
|
|
|
{
|
2016-12-12 19:56:36 -08:00
|
|
|
GameRegistry.register(new EntityEntry(EntityBloodLight.class, "BloodLight").setRegistryName("BloodLight"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntitySoulSnare.class, "SoulSnare").setRegistryName("SoulSnare"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntitySentientArrow.class, "SoulArrow").setRegistryName("SoulArrow"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityMeteor.class, "Meteor").setRegistryName("Meteor"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntitySentientSpecter.class, "SentientSpecter").setRegistryName("SentientSpecter"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityMimic.class, "Mimic").setRegistryName("Mimic"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityCorruptedZombie.class, "CorruptedZombie").setRegistryName("CorruptedZombie"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityCorruptedSheep.class, "CorruptedSheep").setRegistryName("CorruptedSheep"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityCorruptedChicken.class, "CorruptedChicken").setRegistryName("CorruptedChicken"));
|
|
|
|
GameRegistry.register(new EntityEntry(EntityCorruptedSpider.class, "CorruptedSpider").setRegistryName("CorruptedSpider"));
|
2015-10-29 20:22:14 -07:00
|
|
|
}
|
|
|
|
}
|