Way being picky.

This commit is contained in:
Fenn 2014-01-17 21:43:13 +00:00
parent e3644f2d2b
commit 7e30b02d69
303 changed files with 622 additions and 311 deletions

View file

@ -23,7 +23,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityBileDemon extends EntityDemon {
public class EntityBileDemon extends EntityDemon
{
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);
private static float maxTamedHealth = 100.0F;

View file

@ -25,7 +25,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityBoulderFist extends EntityDemon {
public class EntityBoulderFist extends EntityDemon
{
//private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -11,7 +11,8 @@ import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatMessageComponent;
import net.minecraft.world.World;
public class EntityDemon extends EntityTameable implements IDemon {
public class EntityDemon extends EntityTameable implements IDemon
{
private boolean isAggro;
private int demonID;

View file

@ -9,7 +9,8 @@ import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityEarthElemental extends EntityElemental implements IMob {
public class EntityEarthElemental extends EntityElemental implements IMob
{
public EntityEarthElemental(World world)
{
super(world, AlchemicalWizardry.entityEarthElementalID);

View file

@ -28,7 +28,8 @@ import net.minecraft.world.World;
import java.util.List;
public class EntityElemental extends EntityDemon {
public class EntityElemental extends EntityDemon
{
//private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -23,7 +23,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob, Player {
public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob, Player
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -7,7 +7,8 @@ import net.minecraft.entity.monster.IMob;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
public class EntityFireElemental extends EntityElemental implements IMob {
public class EntityFireElemental extends EntityElemental implements IMob
{
public EntityFireElemental(World world)
{
super(world, AlchemicalWizardry.entityFireElementalID);

View file

@ -9,7 +9,8 @@ import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityHolyElemental extends EntityElemental implements IMob {
public class EntityHolyElemental extends EntityElemental implements IMob
{
public EntityHolyElemental(World world)
{
super(world, AlchemicalWizardry.entityHolyElementalID);

View file

@ -23,7 +23,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityIceDemon extends EntityDemon implements IRangedAttackMob {
public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 30, 50, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -24,7 +24,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityLowerGuardian extends EntityDemon {
public class EntityLowerGuardian extends EntityDemon
{
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);
private static float maxTamedHealth = 50.0F;

View file

@ -25,7 +25,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityShade extends EntityDemon {
public class EntityShade extends EntityDemon
{
//private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -8,7 +8,8 @@ import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
public class EntityShadeElemental extends EntityElemental implements IMob {
public class EntityShadeElemental extends EntityElemental implements IMob
{
public EntityShadeElemental(World world)
{
super(world, AlchemicalWizardry.entityShadeElementalID);

View file

@ -23,7 +23,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player {
public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 25, 25, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -7,7 +7,8 @@ import net.minecraft.entity.monster.IMob;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
public class EntityWaterElemental extends EntityElemental implements IMob {
public class EntityWaterElemental extends EntityElemental implements IMob
{
public EntityWaterElemental(World world)
{
super(world, AlchemicalWizardry.entityWaterElementalID);

View file

@ -23,7 +23,8 @@ import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.world.World;
public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player {
public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

@ -17,7 +17,8 @@ import java.util.Iterator;
import java.util.List;
//Shamelessly ripped off from x3n0ph0b3
public class EnergyBlastProjectile extends Entity implements IProjectile {
public class EnergyBlastProjectile extends Entity implements IProjectile
{
protected int xTile = -1;
protected int yTile = -1;
protected int zTile = -1;

View file

@ -11,7 +11,8 @@ import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class EntityBloodLightProjectile extends EnergyBlastProjectile {
public class EntityBloodLightProjectile extends EnergyBlastProjectile
{
public EntityBloodLightProjectile(World par1World)
{
super(par1World);

View file

@ -7,7 +7,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile {
public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
{
public EntityEnergyBazookaMainProjectile(World par1World)
{
super(par1World);

View file

@ -14,7 +14,8 @@ import net.minecraft.world.World;
import java.util.Iterator;
import java.util.List;
public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectile implements IProjectile {
public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectile implements IProjectile
{
private int xTile = -1;
private int yTile = -1;
private int zTile = -1;

View file

@ -7,7 +7,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class EntityMeteor extends EnergyBlastProjectile {
public class EntityMeteor extends EnergyBlastProjectile
{
private int meteorID;
public EntityMeteor(World par1World)

View file

@ -8,7 +8,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class ExplosionProjectile extends EnergyBlastProjectile {
public class ExplosionProjectile extends EnergyBlastProjectile
{
protected boolean causesEnvDamage;
public ExplosionProjectile(World par1World)

View file

@ -9,7 +9,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class FireProjectile extends EnergyBlastProjectile {
public class FireProjectile extends EnergyBlastProjectile
{
public FireProjectile(World par1World)
{
super(par1World);

View file

@ -9,7 +9,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class HolyProjectile extends EnergyBlastProjectile {
public class HolyProjectile extends EnergyBlastProjectile
{
public HolyProjectile(World par1World)
{
super(par1World);

View file

@ -12,7 +12,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class IceProjectile extends EnergyBlastProjectile {
public class IceProjectile extends EnergyBlastProjectile
{
public IceProjectile(World par1World)
{
super(par1World);

View file

@ -11,7 +11,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class LightningBoltProjectile extends EnergyBlastProjectile {
public class LightningBoltProjectile extends EnergyBlastProjectile
{
private boolean causeLightning;
public LightningBoltProjectile(World par1World)

View file

@ -12,7 +12,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class MudProjectile extends EnergyBlastProjectile {
public class MudProjectile extends EnergyBlastProjectile
{
private boolean doesBlindness; //True for when it applies blindness, false for slowness
public MudProjectile(World par1World)

View file

@ -14,7 +14,8 @@ import net.minecraft.world.World;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.EnderTeleportEvent;
public class TeleportProjectile extends EnergyBlastProjectile {
public class TeleportProjectile extends EnergyBlastProjectile
{
private boolean isEntityTeleport; //True if the entity firing teleports on hit
public TeleportProjectile(World par1World)

View file

@ -11,7 +11,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class WaterProjectile extends EnergyBlastProjectile {
public class WaterProjectile extends EnergyBlastProjectile
{
public WaterProjectile(World par1World)
{
super(par1World);

View file

@ -9,7 +9,8 @@ import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
public class WindGustProjectile extends EnergyBlastProjectile {
public class WindGustProjectile extends EnergyBlastProjectile
{
public WindGustProjectile(World par1World)
{
super(par1World);