2015-11-02 12:39:44 -08:00
|
|
|
package WayofTime.bloodmagic.registry;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2016-07-13 17:18:34 -04:00
|
|
|
import net.minecraftforge.fml.common.registry.EntityRegistry;
|
2015-12-27 19:38:12 -05:00
|
|
|
import WayofTime.bloodmagic.BloodMagic;
|
2016-09-17 08:06:31 -04:00
|
|
|
import WayofTime.bloodmagic.entity.mob.EntityCorruptedSheep;
|
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;
|
2015-12-27 19:38:12 -05:00
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public class ModEntities
|
|
|
|
{
|
|
|
|
public static void init()
|
|
|
|
{
|
2015-12-27 19:38:12 -05:00
|
|
|
int id = 0;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2015-12-27 19:38:12 -05:00
|
|
|
EntityRegistry.registerModEntity(EntityBloodLight.class, "BloodLight", id++, BloodMagic.instance, 64, 20, true);
|
2016-01-08 14:56:36 -05:00
|
|
|
EntityRegistry.registerModEntity(EntitySoulSnare.class, "SoulSnare", id++, BloodMagic.instance, 64, 1, true);
|
2016-01-09 10:47:36 -05:00
|
|
|
EntityRegistry.registerModEntity(EntitySentientArrow.class, "SoulArrow", id++, BloodMagic.instance, 64, 1, true);
|
2016-07-13 17:18:34 -04:00
|
|
|
EntityRegistry.registerModEntity(EntityMeteor.class, "Meteor", id++, BloodMagic.instance, 64, 1, true);
|
2016-08-14 14:14:25 -04:00
|
|
|
EntityRegistry.registerModEntity(EntitySentientSpecter.class, "SentientSpecter", id++, BloodMagic.instance, 64, 1, true);
|
2016-08-22 14:22:18 -04:00
|
|
|
EntityRegistry.registerModEntity(EntityMimic.class, "Mimic", id++, BloodMagic.instance, 64, 1, true);
|
2016-09-13 17:20:35 -04:00
|
|
|
EntityRegistry.registerModEntity(EntityCorruptedZombie.class, "CorruptedZombie", id++, BloodMagic.instance, 64, 1, true);
|
2016-09-17 08:06:31 -04:00
|
|
|
EntityRegistry.registerModEntity(EntityCorruptedSheep.class, "CorruptedSheep", id++, BloodMagic.instance, 64, 1, true);
|
2015-10-29 20:22:14 -07:00
|
|
|
}
|
|
|
|
}
|