List of usage examples for net.minecraftforge.fml.common.registry IEntityAdditionalSpawnData interface-usage
From source file appeng.entity.EntityTinyTNTPrimed.java
public final class EntityTinyTNTPrimed extends EntityTNTPrimed implements IEntityAdditionalSpawnData { private static final float SIZE = .5f; @Reflected public EntityTinyTNTPrimed(final World w) {
From source file buildcraft.builders.EntityMechanicalArm.java
public class EntityMechanicalArm extends Entity implements IEntityAdditionalSpawnData { protected TileQuarry parent; private double armSizeX; private double armSizeZ;
From source file com.blogspot.jabelarminecraft.magicbeans.entities.EntityCowMagicBeans.java
/** * @author jabelar * */ public class EntityCowMagicBeans extends EntityCow implements IEntityMagicBeans, IEntityAdditionalSpawnData { public NBTTagCompound syncDataCompound = new NBTTagCompound();
From source file com.blogspot.jabelarminecraft.magicbeans.entities.EntityFamilyCow.java
/** * @author jabelar * */ public class EntityFamilyCow extends EntityCow implements IEntity, IEntityAdditionalSpawnData { public NBTTagCompound syncDataCompound = new NBTTagCompound();
From source file com.blogspot.jabelarminecraft.magicbeans.entities.EntityGiant.java
/** * @author jabelar * */ public class EntityGiant extends EntityCreature implements IEntity, IEntityAdditionalSpawnData { protected NBTTagCompound syncDataCompound = new NBTTagCompound();
From source file com.blogspot.jabelarminecraft.magicbeans.entities.EntityGoldenGoose.java
public class EntityGoldenGoose extends EntityAnimal implements IEntity, IEntityAdditionalSpawnData { protected NBTTagCompound syncDataCompound = new NBTTagCompound(); protected static final SoundEvent SOUND_EVENT_EAT = new SoundEvent( new ResourceLocation(MagicBeans.MODID + ":mob.goose.eat")); protected static final SoundEvent SOUND_EVENT_LAY_EGG = new SoundEvent(
From source file com.blogspot.jabelarminecraft.magicbeans.entities.EntityMysteriousStranger.java
/** * @author jabelar * */ public class EntityMysteriousStranger extends EntityCreature implements IEntity, IEntityAdditionalSpawnData { protected static final SoundEvent SOUND_EVENT_HAGGLE = new SoundEvent(
From source file com.crowsofwar.avatar.common.entity.EntityWallSegment.java
/** * * * @author CrowsOfWar */ public class EntityWallSegment extends AvatarEntity implements IEntityAdditionalSpawnData {
From source file com.yyon.grapplinghook.entities.grappleArrow.java
public class grappleArrow extends EntityThrowable implements IEntityAdditionalSpawnData { public Entity shootingEntity = null; public int shootingEntityID; private boolean firstattach = false; public vec thispos;
From source file de.sanandrew.mods.turretmod.entity.projectile.EntityTurretProjectile.java
@SuppressWarnings({ "SuspiciousNameCombination", "BooleanMethodNameMustStartWithQuestion" }) public abstract class EntityTurretProjectile extends Entity implements IProjectile, IEntityAdditionalSpawnData { protected UUID shooterUUID; protected Entity shooterCache; protected UUID targetUUID; protected Entity targetCache;