Merge pull request #3 from Pokefenn/master

Massive rework of configs, items and blocks.
This commit is contained in:
WayofTime 2014-01-17 13:47:14 -08:00
commit f925cdb4eb
267 changed files with 3638 additions and 4494 deletions

View file

@ -1,61 +1,25 @@
package WayofTime.alchemicalWizardry.client; package WayofTime.alchemicalWizardry.client;
import net.minecraft.world.World;
import net.minecraftforge.client.MinecraftForgeClient;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.CommonProxy; import WayofTime.alchemicalWizardry.common.CommonProxy;
import WayofTime.alchemicalWizardry.common.EntityAirElemental; import WayofTime.alchemicalWizardry.common.EntityAirElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityBileDemon; import WayofTime.alchemicalWizardry.common.ModBlocks;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityBoulderFist; import WayofTime.alchemicalWizardry.common.entity.mob.*;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityEarthElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityFallenAngel;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityFireElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityHolyElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityIceDemon;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityLowerGuardian;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityShade;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityShadeElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntitySmallEarthGolem;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityWaterElemental;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityWingedFireDemon;
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityMeteor; import WayofTime.alchemicalWizardry.common.entity.projectile.EntityMeteor;
import WayofTime.alchemicalWizardry.common.renderer.block.RenderConduit; import WayofTime.alchemicalWizardry.common.renderer.block.*;
import WayofTime.alchemicalWizardry.common.renderer.block.RenderPedestal;
import WayofTime.alchemicalWizardry.common.renderer.block.RenderPlinth;
import WayofTime.alchemicalWizardry.common.renderer.block.RenderWritingTable;
import WayofTime.alchemicalWizardry.common.renderer.block.TEAltarRenderer;
import WayofTime.alchemicalWizardry.common.renderer.block.itemRender.TEAltarItemRenderer; import WayofTime.alchemicalWizardry.common.renderer.block.itemRender.TEAltarItemRenderer;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderBileDemon; import WayofTime.alchemicalWizardry.common.renderer.mob.*;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderBoulderFist; import WayofTime.alchemicalWizardry.common.renderer.model.*;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderElemental;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderFallenAngel;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderIceDemon;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderLowerGuardian;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderShade;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderSmallEarthGolem;
import WayofTime.alchemicalWizardry.common.renderer.mob.RenderWingedFireDemon;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelBileDemon;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelBoulderFist;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelElemental;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelFallenAngel;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelIceDemon;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelLowerGuardian;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelShade;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelSmallEarthGolem;
import WayofTime.alchemicalWizardry.common.renderer.model.ModelWingedFireDemon;
import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderEnergyBazookaMainProjectile; import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderEnergyBazookaMainProjectile;
import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderEnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderEnergyBlastProjectile;
import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderMeteor; import WayofTime.alchemicalWizardry.common.renderer.projectile.RenderMeteor;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.*;
import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth;
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
import cpw.mods.fml.client.FMLClientHandler; import cpw.mods.fml.client.FMLClientHandler;
import cpw.mods.fml.client.registry.ClientRegistry; import cpw.mods.fml.client.registry.ClientRegistry;
import cpw.mods.fml.client.registry.RenderingRegistry; import cpw.mods.fml.client.registry.RenderingRegistry;
import net.minecraft.world.World;
import net.minecraftforge.client.MinecraftForgeClient;
public class ClientProxy extends CommonProxy public class ClientProxy extends CommonProxy
{ {
@ -115,7 +79,7 @@ public class ClientProxy extends CommonProxy
public void InitRendering() public void InitRendering()
{ {
ClientRegistry.bindTileEntitySpecialRenderer(TEAltar.class, new TEAltarRenderer()); ClientRegistry.bindTileEntitySpecialRenderer(TEAltar.class, new TEAltarRenderer());
MinecraftForgeClient.registerItemRenderer(AlchemicalWizardry.blockAltar.blockID, new TEAltarItemRenderer()); MinecraftForgeClient.registerItemRenderer(ModBlocks.blockAltar.blockID, new TEAltarItemRenderer());
//MinecraftForgeClient.registerItemRenderer(AlchemicalWizardry.blockWritingTable.blockID, new TEWritingTableItemRenderer()); //MinecraftForgeClient.registerItemRenderer(AlchemicalWizardry.blockWritingTable.blockID, new TEWritingTableItemRenderer());
} }
} }

View file

@ -1,12 +1,8 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile;
import cpw.mods.fml.common.ObfuscationReflectionHelper;
import cpw.mods.fml.relauncher.ReflectionHelper;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IProjectile; import net.minecraft.entity.IProjectile;
@ -19,13 +15,13 @@ import net.minecraftforge.event.ForgeSubscribe;
import net.minecraftforge.event.entity.living.LivingAttackEvent; import net.minecraftforge.event.entity.living.LivingAttackEvent;
import net.minecraftforge.event.entity.living.LivingEvent.LivingJumpEvent; import net.minecraftforge.event.entity.living.LivingEvent.LivingJumpEvent;
import net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent; import net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent;
import cpw.mods.fml.common.ObfuscationReflectionHelper;
import cpw.mods.fml.relauncher.ReflectionHelper; import java.util.*;
public class AlchemicalWizardryEventHooks public class AlchemicalWizardryEventHooks
{ {
public static Map<String, Boolean> playerFlightBuff = new HashMap(); public static Map<String,Boolean> playerFlightBuff = new HashMap();
public static Map<String, Boolean> playerBoostStepHeight = new HashMap(); public static Map<String,Boolean> playerBoostStepHeight = new HashMap();
public static List<String> playersWith1Step = new ArrayList(); public static List<String> playersWith1Step = new ArrayList();
@ForgeSubscribe @ForgeSubscribe
@ -51,7 +47,7 @@ public class AlchemicalWizardryEventHooks
{ {
int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionReciprocation).getAmplifier(); int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionReciprocation).getAmplifier();
float damageRecieve = event.ammount / 2 * (i + 1); float damageRecieve = event.ammount / 2 * (i + 1);
((EntityLivingBase)entityAttacking).attackEntityFrom(DamageSource.generic, damageRecieve); ((EntityLivingBase) entityAttacking).attackEntityFrom(DamageSource.generic, damageRecieve);
} }
} }
} }
@ -65,11 +61,11 @@ public class AlchemicalWizardryEventHooks
@ForgeSubscribe @ForgeSubscribe
public void onEntityUpdate(LivingUpdateEvent event) public void onEntityUpdate(LivingUpdateEvent event)
{ {
EntityLivingBase entityLiving = event.entityLiving; EntityLivingBase entityLiving = event.entityLiving;
if (entityLiving instanceof EntityPlayer && entityLiving.worldObj.isRemote) if (entityLiving instanceof EntityPlayer && entityLiving.worldObj.isRemote)
{ {
EntityPlayer entityPlayer = (EntityPlayer)entityLiving; EntityPlayer entityPlayer = (EntityPlayer) entityLiving;
boolean highStepListed = playersWith1Step.contains(entityPlayer.username); boolean highStepListed = playersWith1Step.contains(entityPlayer.username);
boolean hasHighStep = entityPlayer.isPotionActive(AlchemicalWizardry.customPotionBoost); boolean hasHighStep = entityPlayer.isPotionActive(AlchemicalWizardry.customPotionBoost);
@ -89,7 +85,7 @@ public class AlchemicalWizardryEventHooks
{ {
int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionDrowning).getAmplifier(); int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionDrowning).getAmplifier();
if (event.entityLiving.worldObj.getWorldTime() % ((int)(20 / (i + 1))) == 0) if (event.entityLiving.worldObj.getWorldTime() % ((int) (20 / (i + 1))) == 0)
{ {
event.entityLiving.attackEntityFrom(DamageSource.drown, 2); event.entityLiving.attackEntityFrom(DamageSource.drown, 2);
event.entityLiving.hurtResistantTime = Math.min(event.entityLiving.hurtResistantTime, 20 / (i + 1)); event.entityLiving.hurtResistantTime = Math.min(event.entityLiving.hurtResistantTime, 20 / (i + 1));
@ -106,13 +102,13 @@ public class AlchemicalWizardryEventHooks
if (event.entityLiving instanceof EntityPlayer) if (event.entityLiving instanceof EntityPlayer)
{ {
EntityPlayer entityPlayer = (EntityPlayer)event.entityLiving; EntityPlayer entityPlayer = (EntityPlayer) event.entityLiving;
entityPlayer.stepHeight = 1.0f; entityPlayer.stepHeight = 1.0f;
if (!entityPlayer.worldObj.isRemote) if (!entityPlayer.worldObj.isRemote)
{ {
float speed = ((Float)ReflectionHelper.getPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, new String[] { "walkSpeed", "g", "field_75097_g" })).floatValue(); float speed = ((Float) ReflectionHelper.getPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, new String[]{"walkSpeed", "g", "field_75097_g"})).floatValue();
ObfuscationReflectionHelper.setPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, Float.valueOf(speed + (float)percentIncrease), new String[] { "walkSpeed", "g", "field_75097_g" }); //CAUTION ObfuscationReflectionHelper.setPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, Float.valueOf(speed + (float) percentIncrease), new String[]{"walkSpeed", "g", "field_75097_g"}); //CAUTION
} }
} }
} }
@ -122,9 +118,9 @@ public class AlchemicalWizardryEventHooks
{ {
int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionProjProt).getAmplifier(); int i = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionProjProt).getAmplifier();
EntityLivingBase entity = event.entityLiving; EntityLivingBase entity = event.entityLiving;
int posX = (int)Math.round(entity.posX - 0.5f); int posX = (int) Math.round(entity.posX - 0.5f);
int posY = (int)Math.round(entity.posY); int posY = (int) Math.round(entity.posY);
int posZ = (int)Math.round(entity.posZ - 0.5f); int posZ = (int) Math.round(entity.posZ - 0.5f);
int d0 = i; int d0 = i;
AxisAlignedBB axisalignedbb = AxisAlignedBB.getAABBPool().getAABB(posX - 0.5, posY - 0.5, posZ - 0.5, posX + 0.5, posY + 0.5, posZ + 0.5).expand(d0, d0, d0); AxisAlignedBB axisalignedbb = AxisAlignedBB.getAABBPool().getAABB(posX - 0.5, posY - 0.5, posZ - 0.5, posX + 0.5, posY + 0.5, posZ + 0.5).expand(d0, d0, d0);
List list = event.entityLiving.worldObj.getEntitiesWithinAABB(Entity.class, axisalignedbb); List list = event.entityLiving.worldObj.getEntitiesWithinAABB(Entity.class, axisalignedbb);
@ -133,7 +129,7 @@ public class AlchemicalWizardryEventHooks
while (iterator.hasNext()) while (iterator.hasNext())
{ {
Entity projectile = (Entity)iterator.next(); Entity projectile = (Entity) iterator.next();
if (projectile == null) if (projectile == null)
{ {
@ -147,17 +143,15 @@ public class AlchemicalWizardryEventHooks
if (projectile instanceof EntityArrow) if (projectile instanceof EntityArrow)
{ {
if (((EntityArrow)projectile).shootingEntity == null) if (((EntityArrow) projectile).shootingEntity == null)
{ {
} } else if (!(((EntityArrow) projectile).shootingEntity == null) && ((EntityArrow) projectile).shootingEntity.equals(entity))
else if (!(((EntityArrow)projectile).shootingEntity == null) && ((EntityArrow)projectile).shootingEntity.equals(entity))
{ {
break; break;
} }
} } else if (projectile instanceof EnergyBlastProjectile)
else if (projectile instanceof EnergyBlastProjectile)
{ {
if (!(((EnergyBlastProjectile)projectile).shootingEntity == null) && ((EnergyBlastProjectile)projectile).shootingEntity.equals(entity)) if (!(((EnergyBlastProjectile) projectile).shootingEntity == null) && ((EnergyBlastProjectile) projectile).shootingEntity.equals(entity))
{ {
break; break;
} }
@ -184,18 +178,17 @@ public class AlchemicalWizardryEventHooks
{ {
if (event.entityLiving instanceof EntityPlayer) if (event.entityLiving instanceof EntityPlayer)
{ {
EntityPlayer entityPlayer = (EntityPlayer)event.entityLiving; EntityPlayer entityPlayer = (EntityPlayer) event.entityLiving;
String ownerName = entityPlayer.username; String ownerName = entityPlayer.username;
playerFlightBuff.put(ownerName, true); playerFlightBuff.put(ownerName, true);
entityPlayer.capabilities.allowFlying = true; entityPlayer.capabilities.allowFlying = true;
//entityPlayer.sendPlayerAbilities(); //entityPlayer.sendPlayerAbilities();
} }
} } else
else
{ {
if (event.entityLiving instanceof EntityPlayer) if (event.entityLiving instanceof EntityPlayer)
{ {
EntityPlayer entityPlayer = (EntityPlayer)event.entityLiving; EntityPlayer entityPlayer = (EntityPlayer) event.entityLiving;
String ownerName = entityPlayer.username; String ownerName = entityPlayer.username;
if (!playerFlightBuff.containsKey(ownerName)) if (!playerFlightBuff.containsKey(ownerName))

View file

@ -1,13 +1,13 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.items.LavaCrystal;
import cpw.mods.fml.common.IFuelHandler;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.server.MinecraftServer; import net.minecraft.server.MinecraftServer;
import WayofTime.alchemicalWizardry.common.items.LavaCrystal;
import cpw.mods.fml.common.IFuelHandler;
public class AlchemicalWizardryFuelHandler implements IFuelHandler public class AlchemicalWizardryFuelHandler implements IFuelHandler
{ {
@ -17,19 +17,18 @@ public class AlchemicalWizardryFuelHandler implements IFuelHandler
ItemStack itemStack = fuel; ItemStack itemStack = fuel;
int var1 = fuel.itemID; int var1 = fuel.itemID;
if (var1 == AlchemicalWizardry.lavaCrystal.itemID) if (var1 == ModItems.lavaCrystal.itemID)
{ {
/*ItemStack newItem = new ItemStack(AlchemicalWizardry.lavaCrystal); /*ItemStack newItem = new ItemStack(AlchemicalWizardry.lavaCrystal);
newItem.getItem().setDamage(newItem, 50); newItem.getItem().setDamage(newItem, 50);
fuel.getItem().setContainerItem(((LavaCrystal)newItem.getItem()).change()); fuel.getItem().setContainerItem(((LavaCrystal)newItem.getItem()).change());
*/ */
LavaCrystal item = (LavaCrystal)fuel.getItem(); LavaCrystal item = (LavaCrystal) fuel.getItem();
if (item.hasEnoughEssence(fuel)) if (item.hasEnoughEssence(fuel))
{ {
return 200; return 200;
} } else
else
{ {
NBTTagCompound tag = itemStack.stackTagCompound; NBTTagCompound tag = itemStack.stackTagCompound;

View file

@ -1,15 +1,13 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import java.util.EnumSet;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.PlayerCapabilities;
import net.minecraft.item.ItemStack;
import net.minecraft.server.MinecraftServer;
import cpw.mods.fml.common.ITickHandler; import cpw.mods.fml.common.ITickHandler;
import cpw.mods.fml.common.ObfuscationReflectionHelper; import cpw.mods.fml.common.ObfuscationReflectionHelper;
import cpw.mods.fml.common.TickType; import cpw.mods.fml.common.TickType;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.PlayerCapabilities;
import net.minecraft.server.MinecraftServer;
import java.util.EnumSet;
public class AlchemicalWizardryTickHandler implements ITickHandler public class AlchemicalWizardryTickHandler implements ITickHandler
{ {
@ -42,7 +40,7 @@ public class AlchemicalWizardryTickHandler implements ITickHandler
if (entityPlayer != null) if (entityPlayer != null)
{ {
ObfuscationReflectionHelper.setPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, Float.valueOf(0.1f), new String[] { "walkSpeed", "g", "field_75097_g" }); ObfuscationReflectionHelper.setPrivateValue(PlayerCapabilities.class, entityPlayer.capabilities, Float.valueOf(0.1f), new String[]{"walkSpeed", "g", "field_75097_g"});
//entityPlayer.sendPlayerAbilities(); //entityPlayer.sendPlayerAbilities();
} }
} }

View file

@ -0,0 +1,201 @@
package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorParadigm;
import cpw.mods.fml.common.FMLLog;
import net.minecraftforge.common.Configuration;
import totemic_commons.pokefenn.lib.Reference;
import java.io.File;
import java.util.logging.Level;
/**
* Created with IntelliJ IDEA.
* User: Pokefenn
* Date: 17/01/14
* Time: 19:50
*/
public class BloodMagicConfiguration
{
public static Configuration config;
public static final String CATEGORY_GAMEPLAY = "gameplay";
public static void init(File configFile)
{
config = new Configuration(configFile);
try
{
config.load();
AlchemicalWizardry.standardBindingAgentDungeonChance = config.get("Dungeon Loot Chances", "standardBindingAgent", 30).getInt();
AlchemicalWizardry.mundanePowerCatalystDungeonChance = config.get("Dungeon Loot Chances", "mundanePowerCatalyst", 20).getInt();
AlchemicalWizardry.averagePowerCatalystDungeonChance = config.get("Dungeon Loot Chances", "averagePowerCatalyst", 10).getInt();
AlchemicalWizardry.greaterPowerCatalystDungeonChance = config.get("Dungeon Loot Chances", "greaterPowerCatalyst", 05).getInt();
AlchemicalWizardry.mundaneLengtheningCatalystDungeonChance = config.get("Dungeon Loot Chances", "mundaneLengtheningCatalyst", 20).getInt();
AlchemicalWizardry.averageLengtheningCatalystDungeonChance = config.get("Dungeon Loot Chances", "averageLengtheningCatalyst", 10).getInt();
AlchemicalWizardry.greaterLengtheningCatalystDungeonChance = config.get("Dungeon Loot Chances", "greaterLengtheningCatalyst", 05).getInt();
AlchemicalWizardry.customPotionDrowningID = config.get("Potion ID", "Drowning", 100).getInt();
AlchemicalWizardry.customPotionBoostID = config.get("Potion ID", "Boost", 101).getInt();
AlchemicalWizardry.customPotionProjProtID = config.get("Potion ID", "ProjProt", 102).getInt();
AlchemicalWizardry.customPotionInhibitID = config.get("Potion ID", "Inhibit", 103).getInt();
AlchemicalWizardry.customPotionFlightID = config.get("Potion ID", "Flight", 104).getInt();
AlchemicalWizardry.customPotionReciprocationID = config.get("Potion ID", "Reciprocation", 105).getInt();
MeteorParadigm.maxChance = config.get("meteor", "maxChance", 1000).getInt();
AlchemicalWizardry.doMeteorsDestroyBlocks = config.get("meteor", "doMeteorsDestroyBlocks", true).getBoolean(true);
AlchemicalWizardry.diamondMeteorArray = config.get("meteor", "diamondMeteor", new String[]{"oreDiamond", "100", "oreEmerald", "75", "oreCinnabar", "200", "oreAmber", "200"}).getStringList();
AlchemicalWizardry.diamondMeteorRadius = config.get("meteor", "diamondMeteorRadius", 5).getInt();
AlchemicalWizardry.stoneMeteorArray = config.get("meteor", "stoneBlockMeteor", new String[]{"oreCoal", "150", "oreApatite", "50", "oreIron", "50"}).getStringList();
AlchemicalWizardry.stoneMeteorRadius = config.get("meteor", "stoneMeteorRadius", 16).getInt();
AlchemicalWizardry.ironBlockMeteorArray = config.get("meteor", "ironBlockMeteor", new String[]{"oreIron", "400", "oreGold", "30", "oreCopper", "200", "oreTin", "140", "oreSilver", "70", "oreLead", "80", "oreLapis", "60", "oreRedstone", "100"}).getStringList();
AlchemicalWizardry.ironBlockMeteorRadius = config.get("meteor", "ironBlockMeteorRadius", 7).getInt();
AlchemicalWizardry.netherStarMeteorArray = config.get("meteor", "netherStarMeteor", new String[]{"oreDiamond", "150", "oreEmerald", "100", "oreQuartz", "250", "oreSunstone", "5", "oreMoonstone", "50", "oreIridium", "5", "oreCertusQuartz", "150"}).getStringList();
AlchemicalWizardry.netherStarMeteorRadius = config.get("meteor", "netherStarMeteorRadius", 3).getInt();
AlchemicalWizardry.testingBlockBlockID = config.getBlock("TestingBlock", 1400).getInt();
AlchemicalWizardry.lifeEssenceFlowingBlockID = config.getBlock("LifeEssenceFlowing", 1401).getInt();
AlchemicalWizardry.lifeEssenceStillBlockID = config.getBlock("LifeEssenceStill", 1402).getInt();
AlchemicalWizardry.blockAltarBlockID = config.getBlock("BloodAltar", 1403).getInt();
AlchemicalWizardry.bloodRuneBlockID = config.getBlock("BloodRune", 1404).getInt();
AlchemicalWizardry.speedRuneBlockID = config.getBlock("SpeedRune", 1405).getInt();
AlchemicalWizardry.efficiencyRuneBlockID = config.getBlock("EfficiencyRune", 1406).getInt();
AlchemicalWizardry.lifeEssenceFluidID = config.getBlock("LifeEssenceFluid", 1407).getInt();
AlchemicalWizardry.runeOfSacrificeBlockID = config.getBlock("RuneOfSacrifice", 1408).getInt();
AlchemicalWizardry.runeOfSelfSacrificeBlockID = config.getBlock("RuneOfSelfSacrifice", 1409).getInt();
AlchemicalWizardry.ritualStoneBlockID = config.getBlock("RitualStone", 1410).getInt();
AlchemicalWizardry.blockMasterStoneBlockID = config.getBlock("MasterStone", 1411).getInt();
AlchemicalWizardry.imperfectRitualStoneBlockID = config.getBlock("ImperfectRitualStone", 1412).getInt();
AlchemicalWizardry.emptySocketBlockID = config.getBlock("EmptySocket", 1413).getInt();
AlchemicalWizardry.bloodSocketBlockID = config.getBlock("BloodSocket", 1414).getInt();
AlchemicalWizardry.armourForgeBlockID = config.getBlock("ArmourForge", 1415).getInt();
AlchemicalWizardry.largeBloodStoneBrickBlockID = config.getBlock("LargeBloodStoneBrick", 1416).getInt();
AlchemicalWizardry.bloodStoneBrickBlockID = config.getBlock("BloodStoneBrick", 1417).getInt();
AlchemicalWizardry.blockWritingTableBlockID = config.getBlock("BlockWritingTable", 1418).getInt();
AlchemicalWizardry.blockHomHeartBlockID = config.getBlock("BlockHomHeart", 1419).getInt();
AlchemicalWizardry.blockPedestalBlockID = config.getBlock("BlockPedestal", 1420).getInt();
AlchemicalWizardry.blockPlinthBlockID = config.getBlock("BlockPlinth", 1421).getInt();
AlchemicalWizardry.blockTeleposerBlockID = config.getBlock("BlockTeleposer", 1422).getInt();
AlchemicalWizardry.spectralBlockBlockID = config.getBlock("SpectralBlock", 1423).getInt();
AlchemicalWizardry.blockBloodLightBlockID = config.getBlock("BloodLight", 1424).getInt();
//blockConduitBlockID = config.getBlock("BlockConduit", 1424).getInt();
//Items
AlchemicalWizardry.weakBloodOrbItemID = config.getItem("WeakBloodOrb", 17000).getInt();
AlchemicalWizardry.energyBlasterItemID = config.getItem("EnergyBlaster", 17001).getInt();
AlchemicalWizardry.energySwordItemID = config.getItem("EnergySword", 17002).getInt();
AlchemicalWizardry.lavaCrystalItemID = config.getItem("LavaCrystal", 17003).getInt();
AlchemicalWizardry.waterSigilItemID = config.getItem("WaterSigil", 17004).getInt();
AlchemicalWizardry.lavaSigilItemID = config.getItem("LavaSigil", 17005).getInt();
AlchemicalWizardry.voidSigilItemID = config.getItem("VoidSigil", 17006).getInt();
AlchemicalWizardry.blankSlateItemID = config.getItem("BlankSlate", 17007).getInt();
AlchemicalWizardry.reinforcedSlateItemID = config.getItem("ReinforcedSlate", 17008).getInt();
AlchemicalWizardry.sacrificialDaggerItemID = config.getItem("SacrificialDagger", 17009).getInt();
AlchemicalWizardry.bucketLifeItemID = config.getItem("BucketLife", 17010).getInt();
AlchemicalWizardry.apprenticeBloodOrbItemID = config.getItem("ApprenticeBloodOrb", 17011).getInt();
AlchemicalWizardry.daggerOfSacrificeItemID = config.getItem("DaggerOfSacrifice", 17012).getInt();
AlchemicalWizardry.airSigilItemID = config.getItem("AirSigil", 17013).getInt();
AlchemicalWizardry.sigilOfTheFastMinerItemID = config.getItem("SigilOfTheFastMiner", 17014).getInt();
// elementalInkWaterItemID = config.getItem("ElementalInkWater", 17015).getInt();
// elementalInkFireItemID = config.getItem("ElementalInkFire", 17016).getInt();
// elementalInkEarthItemID = config.getItem("ElementalInkEarth", 17017).getInt();
// elementalInkAirItemID = config.getItem("ElementalInkAir", 17018).getInt();
AlchemicalWizardry.duskScribeToolItemID = config.getItem("DuskScribeTool", 17015).getInt();
AlchemicalWizardry.demonPlacerItemID = config.getItem("DemonPlacer", 17016).getInt();
AlchemicalWizardry.itemBloodRuneBlockItemID = config.getItem("ItemBloodRuneBlock", 17017).getInt();
AlchemicalWizardry.armourInhibitorItemID = config.getItem("ArmourInhibitor", 17018).getInt();
AlchemicalWizardry.divinationSigilItemID = config.getItem("DivinationSigin", 17019).getInt();
AlchemicalWizardry.waterScribeToolItemID = config.getItem("WaterScribeTool", 17020).getInt();
AlchemicalWizardry.fireScribeToolItemID = config.getItem("FireScribeTool", 17021).getInt();
AlchemicalWizardry.earthScribeToolItemID = config.getItem("EarthScribeTool", 17022).getInt();
AlchemicalWizardry.airScribeToolItemID = config.getItem("AirScribeTool", 17023).getInt();
AlchemicalWizardry.weakActivationCrystalItemID = config.getItem("WeakActivationCrystal", 17024).getInt();
AlchemicalWizardry.magicianBloodOrbItemID = config.getItem("MagicianBloodOrb", 17025).getInt();
AlchemicalWizardry.sigilOfElementalAffinityItemID = config.getItem("SigilOfElementalAffinity", 17026).getInt();
AlchemicalWizardry.sigilOfHasteItemID = config.getItem("SigilOfHaste", 17027).getInt();
AlchemicalWizardry.sigilOfHoldingItemID = config.getItem("SigilOfHolding", 17028).getInt();
AlchemicalWizardry.boundPickaxeItemID = config.getItem("BoundPickaxe", 17029).getInt();
AlchemicalWizardry.boundAxeItemID = config.getItem("BoundAxe", 17030).getInt();
AlchemicalWizardry.boundShovelItemID = config.getItem("BoundShovel", 17031).getInt();
AlchemicalWizardry.boundHelmetItemID = config.getItem("BoundHelmet", 17032).getInt();
AlchemicalWizardry.boundPlateItemID = config.getItem("BoundPlate", 17033).getInt();
AlchemicalWizardry.boundLeggingsItemID = config.getItem("BoundLeggings", 17034).getInt();
AlchemicalWizardry.boundBootsItemID = config.getItem("BoundBoots", 17035).getInt();
AlchemicalWizardry.weakBloodShardItemID = config.getItem("WeakBloodShard", 17036).getInt();
AlchemicalWizardry.growthSigilItemID = config.getItem("SigilOfGrowth", 17037).getInt();
AlchemicalWizardry.masterBloodOrbItemID = config.getItem("MasterBloodOrb", 17038).getInt();
AlchemicalWizardry.blankSpellItemID = config.getItem("BlankSpell", 17039).getInt();
AlchemicalWizardry.alchemyFlaskItemID = config.getItem("AlchemyFlask", 17040).getInt();
AlchemicalWizardry.standardBindingAgentItemID = config.getItem("StandardBindingAgent", 17041).getInt();
AlchemicalWizardry.mundanePowerCatalystItemID = config.getItem("MundanePowerCatalyst", 17042).getInt();
AlchemicalWizardry.averagePowerCatalystItemID = config.getItem("AveragePowerCatalyst", 17043).getInt();
AlchemicalWizardry.greaterPowerCatalystItemID = config.getItem("GreaterPowerCatalyst", 17044).getInt();
AlchemicalWizardry.mundaneLengtheningCatalystItemID = config.getItem("MundaneLengtheningCatalyst", 17045).getInt();
AlchemicalWizardry.averageLengtheningCatalystItemID = config.getItem("AverageLengtheningCatalyst", 17046).getInt();
AlchemicalWizardry.greaterLengtheningCatalystItemID = config.getItem("GreaterLengtheningCatalyst", 17047).getInt();
AlchemicalWizardry.demonBloodShardItemID = config.getItem("DemonBloodShard", 17048).getInt();
AlchemicalWizardry.archmageBloodOrbItemID = config.getItem("ArchmageBloodOrb", 17049).getInt();
AlchemicalWizardry.sigilOfWindItemID = config.getItem("SigilOfWind", 17050).getInt();
AlchemicalWizardry.telepositionFocusItemID = config.getItem("TelepositionFocusItemID", 17051).getInt();
AlchemicalWizardry.enhancedTelepositionFocusItemID = config.getItem("EnhancedTelepositionFocus", 17052).getInt();
AlchemicalWizardry.reinforcedTelepositionFocusItemID = config.getItem("ReinforcedTelepositionFocus", 17053).getInt();
AlchemicalWizardry.demonicTelepositionFocusItemID = config.getItem("DemonicTelepositionFocus", 17054).getInt();
AlchemicalWizardry.imbuedSlateItemID = config.getItem("ImbuedSlate", 17055).getInt();
AlchemicalWizardry.demonicSlateItemID = config.getItem("DemonicSlate", 17056).getInt();
AlchemicalWizardry.sigilOfTheBridgeItemID = config.getItem("SigilOfTheBridge", 17057).getInt();
AlchemicalWizardry.creativeFillerItemID = config.getItem("CreativeFiller", 17058).getInt();
AlchemicalWizardry.itemRitualDivinerItemID = config.getItem("ItemRitualDiviner", 17059).getInt();
AlchemicalWizardry.itemKeyOfDiabloItemID = config.getItem("ItemKeyOfDiablo", 17081).getInt();
AlchemicalWizardry.energyBazookaItemID = config.getItem("EnergyBazooka", 17082).getInt();
AlchemicalWizardry.itemBloodLightSigilItemID = config.getItem("BloodLightSigil", 17083).getInt();
AlchemicalWizardry.simpleCatalystItemID = config.getItem("SimpleCatalyst", 17060).getInt();
AlchemicalWizardry.incendiumItemID = config.getItem("Incendium", 17061).getInt();
AlchemicalWizardry.magicalesItemID = config.getItem("Magicales", 17062).getInt();
AlchemicalWizardry.sanctusItemID = config.getItem("Sanctus", 17063).getInt();
AlchemicalWizardry.aetherItemID = config.getItem("Aether", 17064).getInt();
AlchemicalWizardry.crepitousItemID = config.getItem("Crepitous", 17065).getInt();
AlchemicalWizardry.crystallosItemID = config.getItem("Crystallos", 17066).getInt();
AlchemicalWizardry.terraeItemID = config.getItem("Terrae", 17067).getInt();
AlchemicalWizardry.aquasalusItemID = config.getItem("Aquasalus", 17068).getInt();
AlchemicalWizardry.tennebraeItemID = config.getItem("Tennebrae", 17069).getInt();
AlchemicalWizardry.weakBindingAgentItemID = config.getItem("WeakBindingAgent", 17070).getInt();
AlchemicalWizardry.weakFillingAgentItemID = config.getItem("WeakFillingAgent", 17072).getInt();
AlchemicalWizardry.standardFillingAgentItemID = config.getItem("StandardFillingAgent", 17073).getInt();
AlchemicalWizardry.enhancedFillingAgentItemID = config.getItem("EnhancedFillingAgent", 17074).getInt();
AlchemicalWizardry.sanguineHelmetItemID = config.getItem("SanguineHelmet", 17075).getInt();
AlchemicalWizardry.focusBloodBlastItemID = config.getItem("FocusBloodBlast", 17076).getInt();
AlchemicalWizardry.focusGravityWellItemID = config.getItem("FocusGravityWell", 17077).getInt();
AlchemicalWizardry.sigilOfMagnetismItemID = config.getItem("SigilOfMagnetism", 17080).getInt();
} catch (Exception e)
{
FMLLog.log(Level.SEVERE, e, Reference.MOD_NAME + " has had a problem loading its configuration, go ask on the forums :p");
} finally
{
config.save();
}
}
public static void set(String categoryName, String propertyName, String newValue)
{
config.load();
if (config.getCategoryNames().contains(categoryName))
{
if (config.getCategory(categoryName).containsKey(propertyName))
{
config.getCategory(categoryName).get(propertyName).set(newValue);
}
}
config.save();
}
}

View file

@ -1,24 +1,11 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.*;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityBloodLightProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaSecondaryProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityMeteor;
import WayofTime.alchemicalWizardry.common.entity.projectile.ExplosionProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.FireProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.IceProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.LightningBoltProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.MudProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.TeleportProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.WaterProjectile;
import WayofTime.alchemicalWizardry.common.entity.projectile.WindGustProjectile;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone; import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
import net.minecraft.world.World;
import cpw.mods.fml.common.registry.EntityRegistry; import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.world.World;
public class CommonProxy public class CommonProxy
{ {
@ -30,9 +17,11 @@ public class CommonProxy
{ {
// Nothing here as the server doesn't render graphics! // Nothing here as the server doesn't render graphics!
} }
public void registerEntities() public void registerEntities()
{ {
} }
public World getClientWorld() public World getClientWorld()
{ {
return null; return null;
@ -78,6 +67,7 @@ public class CommonProxy
public void registerTickHandlers() public void registerTickHandlers()
{ {
} }
public void InitRendering() public void InitRendering()
{ {
// TODO Auto-generated method stub // TODO Auto-generated method stub

View file

@ -1,10 +1,7 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon; import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon;
import net.minecraft.entity.EntityCreature;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget; import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.passive.EntityTameable;
public class EntityAITargetAggro extends EntityAINearestAttackableTarget public class EntityAITargetAggro extends EntityAINearestAttackableTarget
{ {

View file

@ -3,27 +3,11 @@ package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityElemental; import WayofTime.alchemicalWizardry.common.entity.mob.EntityElemental;
import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player; import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityFlying;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.monster.IMob; import net.minecraft.entity.monster.IMob;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityLargeFireball;
import net.minecraft.entity.projectile.EntitySmallFireball;
import net.minecraft.item.Item;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.stats.AchievementList;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.ChunkCoordinates;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
public class EntityAirElemental extends EntityElemental implements IMob public class EntityAirElemental extends EntityElemental implements IMob
@ -37,13 +21,12 @@ public class EntityAirElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityPlayer) if (target instanceof EntityPlayer)
{ {
PacketDispatcher.sendPacketToPlayer(PacketHandler.getPlayerVelocitySettingPacket(target.motionX, target.motionY + 3, target.motionZ), (Player)target); PacketDispatcher.sendPacketToPlayer(PacketHandler.getPlayerVelocitySettingPacket(target.motionX, target.motionY + 3, target.motionZ), (Player) target);
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
} } else if (target instanceof EntityLivingBase)
else if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).motionY += 3.0D; ((EntityLivingBase) target).motionY += 3.0D;
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
} }
} }
} }

View file

@ -3,5 +3,6 @@ package WayofTime.alchemicalWizardry.common;
public interface ICatalyst public interface ICatalyst
{ {
public abstract int getCatalystLevel(); public abstract int getCatalystLevel();
public abstract boolean isConcentration(); public abstract boolean isConcentration();
} }

View file

@ -27,12 +27,11 @@ public class LifeBucketHandler
{ {
int blockID = world.getBlockId(pos.blockX, pos.blockY, pos.blockZ); int blockID = world.getBlockId(pos.blockX, pos.blockY, pos.blockZ);
if ((blockID == AlchemicalWizardry.blockLifeEssence.blockID) && world.getBlockMetadata(pos.blockX, pos.blockY, pos.blockZ) == 0) if ((blockID == ModBlocks.blockLifeEssence.blockID) && world.getBlockMetadata(pos.blockX, pos.blockY, pos.blockZ) == 0)
{ {
world.setBlock(pos.blockX, pos.blockY, pos.blockZ, 0); world.setBlock(pos.blockX, pos.blockY, pos.blockZ, 0);
return new ItemStack(AlchemicalWizardry.bucketLife); return new ItemStack(AlchemicalWizardry.bucketLife);
} } else
else
{ {
return null; return null;
} }

View file

@ -5,6 +5,7 @@ import net.minecraft.nbt.NBTTagCompound;
public class LifeEssenceNetwork extends net.minecraft.world.WorldSavedData public class LifeEssenceNetwork extends net.minecraft.world.WorldSavedData
{ {
public int currentEssence; public int currentEssence;
public LifeEssenceNetwork(String par1Str) public LifeEssenceNetwork(String par1Str)
{ {
super(par1Str); super(par1Str);

View file

@ -0,0 +1,75 @@
package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.TestingBlock;
import WayofTime.alchemicalWizardry.common.block.*;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
/**
* Created with IntelliJ IDEA.
* User: Pokefenn
* Date: 17/01/14
* Time: 19:48
*/
public class ModBlocks
{
public static Block testingBlock;
public static Block bloodStoneBrick;
public static Block largeBloodStoneBrick;
// public static Block lifeEssenceStill;
// public static Block lifeEssenceFlowing;
public static BlockAltar blockAltar;
public static BloodRune bloodRune;
public static SpeedRune speedRune;
public static EfficiencyRune efficiencyRune;
public static RuneOfSacrifice runeOfSacrifice;
public static RuneOfSelfSacrifice runeOfSelfSacrifice;
public static Block blockMasterStone;
public static Block ritualStone;
public static Block imperfectRitualStone;
public static Block bloodSocket;
public static Block emptySocket;
public static Block armourForge;
public static Block blockWritingTable;
public static Block blockHomHeart;
public static Block blockPedestal;
public static Block blockPlinth;
public static Block blockLifeEssence;
public static Block blockTeleposer;
public static Block spectralBlock;
public static Block blockConduit;
public static Block blockBloodLight;
public static void init()
{
testingBlock = new TestingBlock(AlchemicalWizardry.testingBlockBlockID, Material.ground).setHardness(2.0F).setStepSound(Block.soundStoneFootstep).setCreativeTab(CreativeTabs.tabBlock).setLightValue(1.0F);
//lifeEssenceStill = new LifeEssenceStill(lifeEssenceStillBlockID);
//lifeEssenceFlowing = new LifeEssenceFlowing(lifeEssenceFlowingBlockID);
blockAltar = new BlockAltar(AlchemicalWizardry.blockAltarBlockID);
bloodRune = new BloodRune(AlchemicalWizardry.bloodRuneBlockID);
speedRune = new SpeedRune(AlchemicalWizardry.speedRuneBlockID);
efficiencyRune = new EfficiencyRune(AlchemicalWizardry.efficiencyRuneBlockID);
runeOfSacrifice = new RuneOfSacrifice(AlchemicalWizardry.runeOfSacrificeBlockID);
runeOfSelfSacrifice = new RuneOfSelfSacrifice(AlchemicalWizardry.runeOfSelfSacrificeBlockID);
AlchemicalWizardry.lifeEssenceFluid = new LifeEssence("Life Essence");
blockTeleposer = new BlockTeleposer(AlchemicalWizardry.blockTeleposerBlockID);
spectralBlock = new SpectralBlock(AlchemicalWizardry.spectralBlockBlockID);
ritualStone = new RitualStone(AlchemicalWizardry.ritualStoneBlockID);
blockMasterStone = new BlockMasterStone(AlchemicalWizardry.blockMasterStoneBlockID);
imperfectRitualStone = new ImperfectRitualStone(AlchemicalWizardry.imperfectRitualStoneBlockID);
bloodSocket = new BlockSocket(AlchemicalWizardry.bloodSocketBlockID);
armourForge = new ArmourForge(AlchemicalWizardry.armourForgeBlockID);
emptySocket = new EmptySocket(AlchemicalWizardry.emptySocketBlockID);
largeBloodStoneBrick = new LargeBloodStoneBrick(AlchemicalWizardry.largeBloodStoneBrickBlockID);
bloodStoneBrick = new BloodStoneBrick(AlchemicalWizardry.bloodStoneBrickBlockID);
blockWritingTable = new BlockWritingTable(AlchemicalWizardry.blockWritingTableBlockID);
blockHomHeart = new BlockHomHeart(AlchemicalWizardry.blockHomHeartBlockID);
blockPedestal = new BlockPedestal(AlchemicalWizardry.blockPedestalBlockID);
blockPlinth = new BlockPlinth(AlchemicalWizardry.blockPlinthBlockID);
blockBloodLight = new BlockBloodLightSource(AlchemicalWizardry.blockBloodLightBlockID);
}
}

View file

@ -0,0 +1,188 @@
package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.items.*;
import WayofTime.alchemicalWizardry.common.items.potion.*;
import WayofTime.alchemicalWizardry.common.items.sigil.*;
import net.minecraft.item.Item;
/**
* Created with IntelliJ IDEA.
* User: Pokefenn
* Date: 17/01/14
* Time: 19:48
*/
public class ModItems
{
public static Item orbOfTesting;
public static Item weakBloodOrb;
public static Item apprenticeBloodOrb;
public static Item magicianBloodOrb;
public static Item energyBlaster;
public static Item energySword;
public static Item lavaCrystal;
public static Item waterSigil;
public static Item lavaSigil;
public static Item voidSigil;
//public static Item glassShard = new GlassShard(17009).setUnlocalizedName("glassShard");
//public static Item bloodiedShard = new BloodiedShard(17010).setUnlocalizedName("bloodiedShard");
public static Item blankSlate;
public static Item reinforcedSlate;
public static Item sacrificialDagger;
public static Item daggerOfSacrifice;
public static Item airSigil;
public static Item sigilOfTheFastMiner;
public static Item sigilOfElementalAffinity;
public static Item sigilOfHaste;
public static Item sigilOfHolding;
public static Item divinationSigil;
// public static Item elementalInkWater;
// public static Item elementalInkFire;
// public static Item elementalInkEarth;
// public static Item elementalInkAir;
public static Item waterScribeTool;
public static Item fireScribeTool;
public static Item earthScribeTool;
public static Item airScribeTool;
public static Item activationCrystal;
public static Item boundPickaxe;
public static Item boundAxe;
public static Item boundShovel;
public static Item boundHelmet;
public static Item boundPlate;
public static Item boundLeggings;
public static Item boundBoots;
public static Item weakBloodShard;
public static Item growthSigil;
//public static Item fireSpell;
public static Item blankSpell;
public static Item masterBloodOrb;
public static Item alchemyFlask;
public static Item standardBindingAgent;
public static Item mundanePowerCatalyst;
public static Item averagePowerCatalyst;
public static Item greaterPowerCatalyst;
public static Item mundaneLengtheningCatalyst;
public static Item averageLengtheningCatalyst;
public static Item greaterLengtheningCatalyst;
public static Item incendium;
public static Item magicales;
public static Item sanctus;
public static Item aether;
public static Item simpleCatalyst;
public static Item crepitous;
public static Item crystallos;
public static Item terrae;
public static Item aquasalus;
public static Item tennebrae;
public static Item demonBloodShard;
public static Item archmageBloodOrb;
public static Item sigilOfWind;
public static Item telepositionFocus;
public static Item enhancedTelepositionFocus;
public static Item reinforcedTelepositionFocus;
public static Item demonicTelepositionFocus;
public static Item imbuedSlate;
public static Item demonicSlate;
public static Item duskScribeTool;
public static Item sigilOfTheBridge;
public static Item armourInhibitor;
public static Item creativeFiller;
public static Item demonPlacer;
public static Item itemBloodRuneBlock;
public static Item weakFillingAgent;
public static Item standardFillingAgent;
public static Item enhancedFillingAgent;
public static Item weakBindingAgent;
public static Item itemRitualDiviner;
public static Item sanguineHelmet;
public static Item focusBloodBlast;
public static Item focusGravityWell;
public static Item sigilOfMagnetism;
public static Item itemKeyOfDiablo;
public static Item energyBazooka;
public static Item itemBloodLightSigil;
public static void init()
{
weakBloodOrb = new EnergyBattery(AlchemicalWizardry.weakBloodOrbItemID, 5000).setUnlocalizedName("weakBloodOrb");
apprenticeBloodOrb = new ApprenticeBloodOrb(AlchemicalWizardry.apprenticeBloodOrbItemID, 25000).setUnlocalizedName("apprenticeBloodOrb");
magicianBloodOrb = new MagicianBloodOrb(AlchemicalWizardry.magicianBloodOrbItemID, 150000).setUnlocalizedName("magicianBloodOrb");
masterBloodOrb = new MasterBloodOrb(AlchemicalWizardry.masterBloodOrbItemID, 1000000).setUnlocalizedName("masterBloodOrb");
archmageBloodOrb = new ArchmageBloodOrb(AlchemicalWizardry.archmageBloodOrbItemID, 10000000).setUnlocalizedName("archmageBloodOrb");
energyBlaster = new EnergyBlast(AlchemicalWizardry.energyBlasterItemID).setUnlocalizedName("energyBlast");
energySword = new EnergySword(AlchemicalWizardry.energySwordItemID).setUnlocalizedName("energySword");
lavaCrystal = new LavaCrystal(AlchemicalWizardry.lavaCrystalItemID).setUnlocalizedName("lavaCrystal");
waterSigil = new WaterSigil(AlchemicalWizardry.waterSigilItemID).setUnlocalizedName("waterSigil");
lavaSigil = new LavaSigil(AlchemicalWizardry.lavaSigilItemID).setUnlocalizedName("lavaSigil");
voidSigil = new VoidSigil(AlchemicalWizardry.voidSigilItemID).setUnlocalizedName("voidSigil");
blankSlate = new AWBaseItems(AlchemicalWizardry.blankSlateItemID).setUnlocalizedName("blankSlate");
reinforcedSlate = new AWBaseItems(AlchemicalWizardry.reinforcedSlateItemID).setUnlocalizedName("reinforcedSlate");
sacrificialDagger = new SacrificialDagger(AlchemicalWizardry.sacrificialDaggerItemID).setUnlocalizedName("sacrificialDagger");
daggerOfSacrifice = new DaggerOfSacrifice(AlchemicalWizardry.daggerOfSacrificeItemID).setUnlocalizedName("daggerOfSacrifice");
airSigil = new AirSigil(AlchemicalWizardry.airSigilItemID).setUnlocalizedName("airSigil");
sigilOfTheFastMiner = new SigilOfTheFastMiner(AlchemicalWizardry.sigilOfTheFastMinerItemID).setUnlocalizedName("sigilOfTheFastMiner");
sigilOfElementalAffinity = new SigilOfElementalAffinity(AlchemicalWizardry.sigilOfElementalAffinityItemID).setUnlocalizedName("sigilOfElementalAffinity");
sigilOfHaste = new SigilOfHaste(AlchemicalWizardry.sigilOfHasteItemID).setUnlocalizedName("sigilOfHaste");
sigilOfHolding = new SigilOfHolding(AlchemicalWizardry.sigilOfHoldingItemID).setUnlocalizedName("sigilOfHolding");
divinationSigil = new DivinationSigil(AlchemicalWizardry.divinationSigilItemID).setUnlocalizedName("divinationSigil");
waterScribeTool = new WaterScribeTool(AlchemicalWizardry.waterScribeToolItemID).setUnlocalizedName("waterScribeTool");
fireScribeTool = new FireScribeTool(AlchemicalWizardry.fireScribeToolItemID).setUnlocalizedName("fireScribeTool");
earthScribeTool = new EarthScribeTool(AlchemicalWizardry.earthScribeToolItemID).setUnlocalizedName("earthScribeTool");
airScribeTool = new AirScribeTool(AlchemicalWizardry.airScribeToolItemID).setUnlocalizedName("airScribeTool");
activationCrystal = new ActivationCrystal(AlchemicalWizardry.weakActivationCrystalItemID);
boundPickaxe = new BoundPickaxe(AlchemicalWizardry.boundPickaxeItemID).setUnlocalizedName("boundPickaxe");
boundAxe = new BoundAxe(AlchemicalWizardry.boundAxeItemID).setUnlocalizedName("boundAxe");
boundShovel = new BoundShovel(AlchemicalWizardry.boundShovelItemID).setUnlocalizedName("boundShovel");
boundHelmet = new BoundArmour(AlchemicalWizardry.boundHelmetItemID, 0).setUnlocalizedName("boundHelmet");
boundPlate = new BoundArmour(AlchemicalWizardry.boundPlateItemID, 1).setUnlocalizedName("boundPlate");
boundLeggings = new BoundArmour(AlchemicalWizardry.boundLeggingsItemID, 2).setUnlocalizedName("boundLeggings");
boundBoots = new BoundArmour(AlchemicalWizardry.boundBootsItemID, 3).setUnlocalizedName("boundBoots");
weakBloodShard = new BloodShard(AlchemicalWizardry.weakBloodShardItemID).setUnlocalizedName("weakBloodShard");
growthSigil = new SigilOfGrowth(AlchemicalWizardry.growthSigilItemID).setUnlocalizedName("growthSigil");
blankSpell = new BlankSpell(AlchemicalWizardry.blankSpellItemID).setUnlocalizedName("blankSpell");
alchemyFlask = new AlchemyFlask(AlchemicalWizardry.alchemyFlaskItemID).setUnlocalizedName("alchemyFlask");
standardBindingAgent = new StandardBindingAgent(AlchemicalWizardry.standardBindingAgentItemID).setUnlocalizedName("standardBindingAgent");
mundanePowerCatalyst = new MundanePowerCatalyst(AlchemicalWizardry.mundanePowerCatalystItemID).setUnlocalizedName("mundanePowerCatalyst");
averagePowerCatalyst = new AveragePowerCatalyst(AlchemicalWizardry.averagePowerCatalystItemID).setUnlocalizedName("averagePowerCatalyst");
greaterPowerCatalyst = new GreaterPowerCatalyst(AlchemicalWizardry.greaterPowerCatalystItemID).setUnlocalizedName("greaterPowerCatalyst");
mundaneLengtheningCatalyst = new MundaneLengtheningCatalyst(AlchemicalWizardry.mundaneLengtheningCatalystItemID).setUnlocalizedName("mundaneLengtheningCatalyst");
averageLengtheningCatalyst = new AverageLengtheningCatalyst(AlchemicalWizardry.averageLengtheningCatalystItemID).setUnlocalizedName("averageLengtheningCatalyst");
greaterLengtheningCatalyst = new GreaterLengtheningCatalyst(AlchemicalWizardry.greaterLengtheningCatalystItemID).setUnlocalizedName("greaterLengtheningCatalyst");
incendium = new AlchemyReagent(AlchemicalWizardry.incendiumItemID).setUnlocalizedName("incendium");
magicales = new AlchemyReagent(AlchemicalWizardry.magicalesItemID).setUnlocalizedName("magicales");
sanctus = new AlchemyReagent(AlchemicalWizardry.sanctusItemID).setUnlocalizedName("sanctus");
aether = new AlchemyReagent(AlchemicalWizardry.aetherItemID).setUnlocalizedName("aether");
simpleCatalyst = new AlchemyReagent(AlchemicalWizardry.simpleCatalystItemID).setUnlocalizedName("simpleCatalyst");
crepitous = new AlchemyReagent(AlchemicalWizardry.crepitousItemID).setUnlocalizedName("crepitous");
crystallos = new AlchemyReagent(AlchemicalWizardry.crystallosItemID).setUnlocalizedName("crystallos");
terrae = new AlchemyReagent(AlchemicalWizardry.terraeItemID).setUnlocalizedName("terrae");
aquasalus = new AlchemyReagent(AlchemicalWizardry.aquasalusItemID).setUnlocalizedName("aquasalus");
tennebrae = new AlchemyReagent(AlchemicalWizardry.tennebraeItemID).setUnlocalizedName("tennebrae");
demonBloodShard = new BloodShard(AlchemicalWizardry.demonBloodShardItemID).setUnlocalizedName("demonBloodShard");
sigilOfWind = new SigilOfWind(AlchemicalWizardry.sigilOfWindItemID).setUnlocalizedName("sigilOfWind");
telepositionFocus = new TelepositionFocus(AlchemicalWizardry.telepositionFocusItemID, 1).setUnlocalizedName("telepositionFocus");
enhancedTelepositionFocus = new EnhancedTelepositionFocus(AlchemicalWizardry.enhancedTelepositionFocusItemID).setUnlocalizedName("enhancedTelepositionFocus");
reinforcedTelepositionFocus = new ReinforcedTelepositionFocus(AlchemicalWizardry.reinforcedTelepositionFocusItemID).setUnlocalizedName("reinforcedTelepositionFocus");
demonicTelepositionFocus = new DemonicTelepositionFocus(AlchemicalWizardry.demonicTelepositionFocusItemID).setUnlocalizedName("demonicTelepositionFocus");
imbuedSlate = new AWBaseItems(AlchemicalWizardry.imbuedSlateItemID).setUnlocalizedName("imbuedSlate");
demonicSlate = new AWBaseItems(AlchemicalWizardry.demonicSlateItemID).setUnlocalizedName("demonicSlate");
duskScribeTool = new DuskScribeTool(AlchemicalWizardry.duskScribeToolItemID).setUnlocalizedName("duskScribeTool");
sigilOfTheBridge = new SigilOfTheBridge(AlchemicalWizardry.sigilOfTheBridgeItemID).setUnlocalizedName("sigilOfTheBridge");
armourInhibitor = new ArmourInhibitor(AlchemicalWizardry.armourInhibitorItemID).setUnlocalizedName("armourInhibitor");
creativeFiller = new CheatyItem(AlchemicalWizardry.creativeFillerItemID).setUnlocalizedName("cheatyItem");
demonPlacer = new DemonPlacer(AlchemicalWizardry.demonPlacerItemID).setUnlocalizedName("demonPlacer");
weakFillingAgent = new WeakFillingAgent(AlchemicalWizardry.weakFillingAgentItemID).setUnlocalizedName("weakFillingAgent");
standardFillingAgent = new StandardFillingAgent(AlchemicalWizardry.standardFillingAgentItemID).setUnlocalizedName("standardFillingAgent");
enhancedFillingAgent = new EnhancedFillingAgent(AlchemicalWizardry.enhancedFillingAgentItemID).setUnlocalizedName("enhancedFillingAgent");
weakBindingAgent = new WeakBindingAgent(AlchemicalWizardry.weakBindingAgentItemID).setUnlocalizedName("weakBindingAgent");
itemRitualDiviner = new ItemRitualDiviner(AlchemicalWizardry.itemRitualDivinerItemID).setUnlocalizedName("ritualDiviner");
sigilOfMagnetism = new SigilOfMagnetism(AlchemicalWizardry.sigilOfMagnetismItemID).setUnlocalizedName("sigilOfMagnetism");
itemKeyOfDiablo = new ItemDiabloKey(AlchemicalWizardry.itemKeyOfDiabloItemID).setUnlocalizedName("itemDiabloKey");
energyBazooka = new EnergyBazooka(AlchemicalWizardry.energyBazookaItemID).setUnlocalizedName("energyBazooka");
itemBloodLightSigil = new ItemBloodLightSigil(AlchemicalWizardry.itemBloodLightSigilItemID).setUnlocalizedName("bloodLightSigil");
}
}

View file

@ -26,7 +26,7 @@ public class ModLivingDropsEvent
if (effect.getAmplifier() >= 2) if (effect.getAmplifier() >= 2)
if (rand < 0.50d) if (rand < 0.50d)
{ {
event.entityLiving.dropItem(AlchemicalWizardry.weakBloodShard.itemID, 1); event.entityLiving.dropItem(ModItems.weakBloodShard.itemID, 1);
} }
} }
} }

View file

@ -1,28 +1,12 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars; import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.*;
import WayofTime.alchemicalWizardry.common.tileEntity.TEOrientable;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth;
import WayofTime.alchemicalWizardry.common.tileEntity.TESocket;
import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer;
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
import com.google.common.io.ByteArrayDataInput; import com.google.common.io.ByteArrayDataInput;
import com.google.common.io.ByteStreams; import com.google.common.io.ByteStreams;
import cpw.mods.fml.common.network.IPacketHandler;
import net.minecraft.block.Block; import cpw.mods.fml.common.network.Player;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.INetworkManager; import net.minecraft.network.INetworkManager;
import net.minecraft.network.packet.Packet; import net.minecraft.network.packet.Packet;
import net.minecraft.network.packet.Packet250CustomPayload; import net.minecraft.network.packet.Packet250CustomPayload;
@ -32,11 +16,10 @@ import net.minecraft.util.ChatMessageComponent;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.ForgeDirection; import net.minecraftforge.common.ForgeDirection;
import net.minecraftforge.fluids.Fluid;
import net.minecraftforge.fluids.FluidStack; import net.minecraftforge.fluids.FluidStack;
import cpw.mods.fml.common.network.IPacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher; import java.io.*;
import cpw.mods.fml.common.network.Player; import java.util.Random;
public class PacketHandler implements IPacketHandler public class PacketHandler implements IPacketHandler
{ {
@ -80,15 +63,13 @@ public class PacketHandler implements IPacketHandler
FluidStack flInput = new FluidStack(fluidIDInput, fluidAmountInput); FluidStack flInput = new FluidStack(fluidIDInput, fluidAmountInput);
tileEntityAltar.handlePacketData(items, flMain, flOutput, flInput, capacity); tileEntityAltar.handlePacketData(items, flMain, flOutput, flInput, capacity);
} }
} } else if (packet.channel.equals("FallReset"))
else if (packet.channel.equals("FallReset"))
{ {
if (player instanceof EntityPlayer) if (player instanceof EntityPlayer)
{ {
((EntityPlayer)player).fallDistance = 0; ((EntityPlayer) player).fallDistance = 0;
} }
} } else if (packet.channel.equals("particle"))
else if (packet.channel.equals("particle"))
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
@ -100,7 +81,7 @@ public class PacketHandler implements IPacketHandler
double y = din.readDouble(); double y = din.readDouble();
double z = din.readDouble(); double z = din.readDouble();
short particleType = din.readShort(); short particleType = din.readShort();
World world = ((EntityPlayer)player).worldObj; World world = ((EntityPlayer) player).worldObj;
if (particleType == 1) if (particleType == 1)
{ {
@ -119,7 +100,7 @@ public class PacketHandler implements IPacketHandler
if (particleType == 4) if (particleType == 4)
{ {
float f = (float)1.0F; float f = (float) 1.0F;
float f1 = f * 0.6F + 0.4F; float f1 = f * 0.6F + 0.4F;
float f2 = f * f * 0.7F - 0.5F; float f2 = f * f * 0.7F - 0.5F;
float f3 = f * f * 0.6F - 0.7F; float f3 = f * f * 0.6F - 0.7F;
@ -129,13 +110,11 @@ public class PacketHandler implements IPacketHandler
world.spawnParticle("reddust", x + Math.random() - Math.random(), y + Math.random() - Math.random(), z + Math.random() - Math.random(), f1, f2, f3); world.spawnParticle("reddust", x + Math.random() - Math.random(), y + Math.random() - Math.random(), z + Math.random() - Math.random(), f1, f2, f3);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("CustomParticle"))
else if (packet.channel.equals("CustomParticle"))
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
@ -143,7 +122,7 @@ public class PacketHandler implements IPacketHandler
try try
{ {
World world = ((EntityPlayer)player).worldObj; World world = ((EntityPlayer) player).worldObj;
int size = din.readInt(); int size = din.readInt();
String str = ""; String str = "";
@ -159,20 +138,18 @@ public class PacketHandler implements IPacketHandler
double yVel = din.readDouble(); double yVel = din.readDouble();
double zVel = din.readDouble(); double zVel = din.readDouble();
world.spawnParticle(str, x, y, z, xVel, yVel, zVel); world.spawnParticle(str, x, y, z, xVel, yVel, zVel);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("SetLifeEssence")) //Sets the data for the character
else if (packet.channel.equals("SetLifeEssence")) //Sets the data for the character
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
try try
{ {
EntityPlayer user = (EntityPlayer)player; EntityPlayer user = (EntityPlayer) player;
int length = din.readInt(); int length = din.readInt();
String ownerName = ""; String ownerName = "";
@ -184,7 +161,7 @@ public class PacketHandler implements IPacketHandler
int addedEssence = din.readInt(); int addedEssence = din.readInt();
int maxEssence = din.readInt(); int maxEssence = din.readInt();
World world = MinecraftServer.getServer().worldServers[0]; World world = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)world.loadItemData(LifeEssenceNetwork.class, ownerName); LifeEssenceNetwork data = (LifeEssenceNetwork) world.loadItemData(LifeEssenceNetwork.class, ownerName);
if (data == null) if (data == null)
{ {
@ -215,8 +192,7 @@ public class PacketHandler implements IPacketHandler
} }
} }
} }
} } else
else
{ {
int removedEssence = -addedEssence; int removedEssence = -addedEssence;
@ -224,8 +200,7 @@ public class PacketHandler implements IPacketHandler
{ {
data.currentEssence -= removedEssence; data.currentEssence -= removedEssence;
data.markDirty(); data.markDirty();
} } else
else
{ {
if (removedEssence >= 100) if (removedEssence >= 100)
{ {
@ -241,8 +216,7 @@ public class PacketHandler implements IPacketHandler
return; return;
} }
} }
} } else
else
{ {
if (user.worldObj.rand.nextInt(100) <= removedEssence) if (user.worldObj.rand.nextInt(100) <= removedEssence)
{ {
@ -262,20 +236,18 @@ public class PacketHandler implements IPacketHandler
//PacketDispatcher.sendPacketToPlayer(PacketHandler.getPacket(ownerName), (Player)user); //PacketDispatcher.sendPacketToPlayer(PacketHandler.getPacket(ownerName), (Player)user);
// data.currentEssence = addedEssence; // data.currentEssence = addedEssence;
// data.markDirty(); // data.markDirty();
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("InfiniteLPPath"))
else if (packet.channel.equals("InfiniteLPPath"))
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
try try
{ {
EntityPlayer user = (EntityPlayer)player; EntityPlayer user = (EntityPlayer) player;
int length = din.readInt(); int length = din.readInt();
String ownerName = ""; String ownerName = "";
@ -286,7 +258,7 @@ public class PacketHandler implements IPacketHandler
boolean fill = din.readBoolean(); boolean fill = din.readBoolean();
World world = MinecraftServer.getServer().worldServers[0]; World world = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)world.loadItemData(LifeEssenceNetwork.class, ownerName); LifeEssenceNetwork data = (LifeEssenceNetwork) world.loadItemData(LifeEssenceNetwork.class, ownerName);
if (data == null) if (data == null)
{ {
@ -298,8 +270,7 @@ public class PacketHandler implements IPacketHandler
{ {
data.currentEssence += 1000000; data.currentEssence += 1000000;
data.markDirty(); data.markDirty();
} } else
else
{ {
data.currentEssence = 0; data.currentEssence = 0;
data.markDirty(); data.markDirty();
@ -308,13 +279,11 @@ public class PacketHandler implements IPacketHandler
//PacketDispatcher.sendPacketToPlayer(PacketHandler.getPacket(ownerName), (Player)user); //PacketDispatcher.sendPacketToPlayer(PacketHandler.getPacket(ownerName), (Player)user);
// data.currentEssence = addedEssence; // data.currentEssence = addedEssence;
// data.markDirty(); // data.markDirty();
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("GetLifeEssence"))
else if (packet.channel.equals("GetLifeEssence"))
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
@ -330,7 +299,7 @@ public class PacketHandler implements IPacketHandler
} }
World world = MinecraftServer.getServer().worldServers[0]; World world = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)world.loadItemData(LifeEssenceNetwork.class, ownerName); LifeEssenceNetwork data = (LifeEssenceNetwork) world.loadItemData(LifeEssenceNetwork.class, ownerName);
if (data == null) if (data == null)
{ {
@ -340,19 +309,17 @@ public class PacketHandler implements IPacketHandler
if (player instanceof EntityPlayer) if (player instanceof EntityPlayer)
{ {
EntityPlayer owner = (EntityPlayer)player; EntityPlayer owner = (EntityPlayer) player;
ChatMessageComponent chatmessagecomponent = new ChatMessageComponent(); ChatMessageComponent chatmessagecomponent = new ChatMessageComponent();
//chatmessagecomponent.func_111072_b("Current Essence: " + data.currentEssence + "LP"); //chatmessagecomponent.func_111072_b("Current Essence: " + data.currentEssence + "LP");
chatmessagecomponent.addText("Current Essence: " + data.currentEssence + "LP"); chatmessagecomponent.addText("Current Essence: " + data.currentEssence + "LP");
owner.sendChatToPlayer(chatmessagecomponent); owner.sendChatToPlayer(chatmessagecomponent);
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("GetAltarEssence"))
else if (packet.channel.equals("GetAltarEssence"))
{ {
ByteArrayInputStream bin = new ByteArrayInputStream(packet.data); ByteArrayInputStream bin = new ByteArrayInputStream(packet.data);
DataInputStream din = new DataInputStream(bin); DataInputStream din = new DataInputStream(bin);
@ -365,9 +332,9 @@ public class PacketHandler implements IPacketHandler
if (player instanceof EntityPlayer) if (player instanceof EntityPlayer)
{ {
EntityPlayer owner = (EntityPlayer)player; EntityPlayer owner = (EntityPlayer) player;
World world = owner.worldObj; World world = owner.worldObj;
TEAltar tileEntity = (TEAltar)world.getBlockTileEntity(x, y, z); TEAltar tileEntity = (TEAltar) world.getBlockTileEntity(x, y, z);
if (tileEntity != null) if (tileEntity != null)
{ {
@ -378,13 +345,11 @@ public class PacketHandler implements IPacketHandler
owner.sendChatToPlayer(chatmessagecomponent); owner.sendChatToPlayer(chatmessagecomponent);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
} } else if (packet.channel.equals("TESocket"))
else if (packet.channel.equals("TESocket"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -411,8 +376,7 @@ public class PacketHandler implements IPacketHandler
TESocket tileEntityAltar = (TESocket) tileEntity; TESocket tileEntityAltar = (TESocket) tileEntity;
tileEntityAltar.handlePacketData(items); tileEntityAltar.handlePacketData(items);
} }
} } else if (packet.channel.equals("TEWritingTable"))
else if (packet.channel.equals("TEWritingTable"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -439,8 +403,7 @@ public class PacketHandler implements IPacketHandler
TEWritingTable tileEntityAltar = (TEWritingTable) tileEntity; TEWritingTable tileEntityAltar = (TEWritingTable) tileEntity;
tileEntityAltar.handlePacketData(items); tileEntityAltar.handlePacketData(items);
} }
} } else if (packet.channel.equals("TEOrientor"))
else if (packet.channel.equals("TEOrientor"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -455,8 +418,7 @@ public class PacketHandler implements IPacketHandler
tileEntityOrientable.setInputDirection(ForgeDirection.getOrientation(dat.readInt())); tileEntityOrientable.setInputDirection(ForgeDirection.getOrientation(dat.readInt()));
tileEntityOrientable.setOutputDirection(ForgeDirection.getOrientation(dat.readInt())); tileEntityOrientable.setOutputDirection(ForgeDirection.getOrientation(dat.readInt()));
} }
} } else if (packet.channel.equals("TEPedestal"))
else if (packet.channel.equals("TEPedestal"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -483,8 +445,7 @@ public class PacketHandler implements IPacketHandler
TEPedestal tileEntityAltar = (TEPedestal) tileEntity; TEPedestal tileEntityAltar = (TEPedestal) tileEntity;
tileEntityAltar.handlePacketData(items); tileEntityAltar.handlePacketData(items);
} }
} } else if (packet.channel.equals("TEPlinth"))
else if (packet.channel.equals("TEPlinth"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -511,8 +472,7 @@ public class PacketHandler implements IPacketHandler
TEPlinth tileEntityAltar = (TEPlinth) tileEntity; TEPlinth tileEntityAltar = (TEPlinth) tileEntity;
tileEntityAltar.handlePacketData(items); tileEntityAltar.handlePacketData(items);
} }
} } else if (packet.channel.equals("TETeleposer"))
else if (packet.channel.equals("TETeleposer"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
int x = dat.readInt(); int x = dat.readInt();
@ -539,22 +499,20 @@ public class PacketHandler implements IPacketHandler
TETeleposer tileEntityAltar = (TETeleposer) tileEntity; TETeleposer tileEntityAltar = (TETeleposer) tileEntity;
tileEntityAltar.handlePacketData(items); tileEntityAltar.handlePacketData(items);
} }
} } else if (packet.channel.equals("SetPlayerVel"))
else if (packet.channel.equals("SetPlayerVel"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
double xVel = dat.readDouble(); double xVel = dat.readDouble();
double yVel = dat.readDouble(); double yVel = dat.readDouble();
double zVel = dat.readDouble(); double zVel = dat.readDouble();
((EntityPlayer)player).setVelocity(xVel, yVel, zVel); ((EntityPlayer) player).setVelocity(xVel, yVel, zVel);
} } else if (packet.channel.equals("SetPlayerPos"))
else if (packet.channel.equals("SetPlayerPos"))
{ {
ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data); ByteArrayDataInput dat = ByteStreams.newDataInput(packet.data);
double xVel = dat.readDouble(); double xVel = dat.readDouble();
double yVel = dat.readDouble(); double yVel = dat.readDouble();
double zVel = dat.readDouble(); double zVel = dat.readDouble();
((EntityPlayer)player).setPosition(xVel, yVel, zVel); ((EntityPlayer) player).setPosition(xVel, yVel, zVel);
} }
} }
@ -586,8 +544,7 @@ public class PacketHandler implements IPacketHandler
{ {
dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID()); dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID());
dos.writeInt(0); dos.writeInt(0);
} } else
else
{ {
dos.writeInt(flMain.fluidID); dos.writeInt(flMain.fluidID);
dos.writeInt(flMain.amount); dos.writeInt(flMain.amount);
@ -599,8 +556,7 @@ public class PacketHandler implements IPacketHandler
{ {
dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID()); dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID());
dos.writeInt(0); dos.writeInt(0);
} } else
else
{ {
dos.writeInt(flOut.fluidID); dos.writeInt(flOut.fluidID);
dos.writeInt(flOut.amount); dos.writeInt(flOut.amount);
@ -612,16 +568,14 @@ public class PacketHandler implements IPacketHandler
{ {
dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID()); dos.writeInt(AlchemicalWizardry.lifeEssenceFluid.getBlockID());
dos.writeInt(0); dos.writeInt(0);
} } else
else
{ {
dos.writeInt(flIn.fluidID); dos.writeInt(flIn.fluidID);
dos.writeInt(flIn.amount); dos.writeInt(flIn.amount);
} }
dos.writeInt(tileEntity.capacity); dos.writeInt(tileEntity.capacity);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -655,8 +609,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(items[i]); dos.writeInt(items[i]);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -681,8 +634,7 @@ public class PacketHandler implements IPacketHandler
dos.writeChars(ownerName); dos.writeChars(ownerName);
dos.writeInt(addedEssence); dos.writeInt(addedEssence);
dos.writeInt(maxEssence); //Used for Blood Orbs, but does nothing for other items dos.writeInt(maxEssence); //Used for Blood Orbs, but does nothing for other items
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -704,8 +656,7 @@ public class PacketHandler implements IPacketHandler
{ {
dos.writeInt(ownerName.length()); dos.writeInt(ownerName.length());
dos.writeChars(ownerName); dos.writeChars(ownerName);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -728,8 +679,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(x); dos.writeInt(x);
dos.writeInt(y); dos.writeInt(y);
dos.writeInt(z); dos.writeInt(z);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -764,8 +714,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(items[i]); dos.writeInt(items[i]);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -800,8 +749,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(items[i]); dos.writeInt(items[i]);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -836,8 +784,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(items[i]); dos.writeInt(items[i]);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -872,8 +819,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(items[i]); dos.writeInt(items[i]);
} }
} }
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -901,8 +847,7 @@ public class PacketHandler implements IPacketHandler
dos.writeDouble(xVel); dos.writeDouble(xVel);
dos.writeDouble(yVel); dos.writeDouble(yVel);
dos.writeDouble(zVel); dos.writeDouble(zVel);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -925,8 +870,7 @@ public class PacketHandler implements IPacketHandler
dos.writeDouble(xVel); dos.writeDouble(xVel);
dos.writeDouble(yVel); dos.writeDouble(yVel);
dos.writeDouble(zVel); dos.writeDouble(zVel);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -949,8 +893,7 @@ public class PacketHandler implements IPacketHandler
dos.writeDouble(xVel); dos.writeDouble(xVel);
dos.writeDouble(yVel); dos.writeDouble(yVel);
dos.writeDouble(zVel); dos.writeDouble(zVel);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -973,8 +916,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(ownerName.length()); dos.writeInt(ownerName.length());
dos.writeChars(ownerName); dos.writeChars(ownerName);
dos.writeBoolean(isFill); dos.writeBoolean(isFill);
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }
@ -999,8 +941,7 @@ public class PacketHandler implements IPacketHandler
dos.writeInt(tileEntity.zCoord); dos.writeInt(tileEntity.zCoord);
dos.writeInt(tileEntity.getIntForForgeDirection(tileEntity.getInputDirection())); dos.writeInt(tileEntity.getIntForForgeDirection(tileEntity.getInputDirection()));
dos.writeInt(tileEntity.getIntForForgeDirection(tileEntity.getOutputDirection())); dos.writeInt(tileEntity.getIntForForgeDirection(tileEntity.getOutputDirection()));
} } catch (IOException e)
catch (IOException e)
{ {
e.printStackTrace(); e.printStackTrace();
} }

View file

@ -1,12 +1,13 @@
package WayofTime.alchemicalWizardry.common.alchemy; package WayofTime.alchemicalWizardry.common.alchemy;
import java.util.ArrayList;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModItems;
import net.minecraft.item.Item; import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import java.util.ArrayList;
public class AlchemicalPotionCreationHandler public class AlchemicalPotionCreationHandler
{ {
public static ArrayList<AlchemyPotionHandlerComponent> registeredPotionEffects = new ArrayList(); public static ArrayList<AlchemyPotionHandlerComponent> registeredPotionEffects = new ArrayList();
@ -21,7 +22,7 @@ public class AlchemicalPotionCreationHandler
addPotion(new ItemStack(Item.spiderEye), Potion.poison.id, 450); addPotion(new ItemStack(Item.spiderEye), Potion.poison.id, 450);
addPotion(new ItemStack(Item.fermentedSpiderEye), Potion.weakness.id, 450); addPotion(new ItemStack(Item.fermentedSpiderEye), Potion.weakness.id, 450);
addPotion(new ItemStack(Item.blazePowder), Potion.damageBoost.id, 2 * 60 * 20); addPotion(new ItemStack(Item.blazePowder), Potion.damageBoost.id, 2 * 60 * 20);
addPotion(new ItemStack(AlchemicalWizardry.aether), Potion.jump.id, 2 * 60 * 20); addPotion(new ItemStack(ModItems.aether), Potion.jump.id, 2 * 60 * 20);
addPotion(new ItemStack(Item.clay), Potion.moveSlowdown.id, 450); addPotion(new ItemStack(Item.clay), Potion.moveSlowdown.id, 450);
addPotion(new ItemStack(Item.redstone), Potion.digSpeed.id, 2 * 60 * 20); addPotion(new ItemStack(Item.redstone), Potion.digSpeed.id, 2 * 60 * 20);
addPotion(new ItemStack(Item.potion, 1, 0), AlchemicalWizardry.customPotionDrowning.id, 450); addPotion(new ItemStack(Item.potion, 1, 0), AlchemicalWizardry.customPotionDrowning.id, 450);
@ -29,9 +30,9 @@ public class AlchemicalPotionCreationHandler
addPotion(new ItemStack(Item.glassBottle), Potion.invisibility.id, 2 * 60 * 20); addPotion(new ItemStack(Item.glassBottle), Potion.invisibility.id, 2 * 60 * 20);
addPotion(new ItemStack(Item.diamond), Potion.resistance.id, 2 * 60 * 20); addPotion(new ItemStack(Item.diamond), Potion.resistance.id, 2 * 60 * 20);
addPotion(new ItemStack(Item.poisonousPotato), Potion.field_76443_y.id, 2); //saturation addPotion(new ItemStack(Item.poisonousPotato), Potion.field_76443_y.id, 2); //saturation
addPotion(new ItemStack(AlchemicalWizardry.demonBloodShard), Potion.field_76434_w.id, 4 * 60 * 20); //health boost addPotion(new ItemStack(ModItems.demonBloodShard), Potion.field_76434_w.id, 4 * 60 * 20); //health boost
addPotion(new ItemStack(AlchemicalWizardry.weakBloodShard), Potion.field_76444_x.id, 4 * 60 * 20); //Absorption addPotion(new ItemStack(ModItems.weakBloodShard), Potion.field_76444_x.id, 4 * 60 * 20); //Absorption
addPotion(new ItemStack(AlchemicalWizardry.terrae), AlchemicalWizardry.customPotionBoost.id, 1 * 60 * 20); addPotion(new ItemStack(ModItems.terrae), AlchemicalWizardry.customPotionBoost.id, 1 * 60 * 20);
addPotion(new ItemStack(Item.feather), AlchemicalWizardry.customPotionFlight.id, 1 * 60 * 20); addPotion(new ItemStack(Item.feather), AlchemicalWizardry.customPotionFlight.id, 1 * 60 * 20);
addPotion(new ItemStack(Item.arrow), AlchemicalWizardry.customPotionReciprocation.id, 1 * 60 * 20); addPotion(new ItemStack(Item.arrow), AlchemicalWizardry.customPotionReciprocation.id, 1 * 60 * 20);
} }

View file

@ -26,8 +26,7 @@ public class AlchemyPotionHandlerComponent
{ {
return comparedStack.itemID == itemStack.itemID && comparedStack.getItemDamage() == itemStack.getItemDamage(); return comparedStack.itemID == itemStack.itemID && comparedStack.getItemDamage() == itemStack.getItemDamage();
} }
} } else if (!(itemStack.getItem() instanceof ItemBlock))
else if (!(itemStack.getItem() instanceof ItemBlock))
{ {
return comparedStack.itemID == itemStack.itemID && comparedStack.getItemDamage() == itemStack.getItemDamage(); return comparedStack.itemID == itemStack.itemID && comparedStack.getItemDamage() == itemStack.getItemDamage();
} }

View file

@ -53,10 +53,10 @@ public class AlchemyPotionHelper
{ {
if (potionID == Potion.heal.id || potionID == Potion.harm.id) if (potionID == Potion.heal.id || potionID == Potion.harm.id)
{ {
return(new PotionEffect(potionID, 1, concentration)); return (new PotionEffect(potionID, 1, concentration));
} }
return(new PotionEffect(potionID, (int)(tickDuration * Math.pow(0.5f, concentration) * Math.pow(8.0f / 3.0f, durationFactor)), concentration)); return (new PotionEffect(potionID, (int) (tickDuration * Math.pow(0.5f, concentration) * Math.pow(8.0f / 3.0f, durationFactor)), concentration));
} }
public static AlchemyPotionHelper readEffectFromNBT(NBTTagCompound tagCompound) public static AlchemyPotionHelper readEffectFromNBT(NBTTagCompound tagCompound)

View file

@ -42,16 +42,14 @@ public class AlchemyRecipe
if (i + 1 > this.recipe.length) if (i + 1 > this.recipe.length)
{ {
newRecipe[i] = null; newRecipe[i] = null;
} } else
else
{ {
newRecipe[i] = this.recipe[i]; newRecipe[i] = this.recipe[i];
} }
} }
recipe = newRecipe; recipe = newRecipe;
} } else
else
{ {
recipe = this.recipe; recipe = this.recipe;
} }
@ -96,8 +94,7 @@ public class AlchemyRecipe
{ {
quickTest = true; quickTest = true;
} }
} } else if (!(checkedItemStack.getItem() instanceof ItemBlock))
else if (!(checkedItemStack.getItem() instanceof ItemBlock))
{ {
quickTest = true; quickTest = true;
} }

View file

@ -1,11 +1,11 @@
package WayofTime.alchemicalWizardry.common.alchemy; package WayofTime.alchemicalWizardry.common.alchemy;
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
import net.minecraft.item.ItemStack;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import net.minecraft.item.ItemStack;
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
public class AlchemyRecipeRegistry public class AlchemyRecipeRegistry
{ {
public static List<AlchemyRecipe> recipes = new ArrayList(); public static List<AlchemyRecipe> recipes = new ArrayList();
@ -27,13 +27,13 @@ public class AlchemyRecipeRegistry
return null; return null;
} }
int bloodOrbLevel = ((EnergyBattery)bloodOrb.getItem()).getOrbLevel(); int bloodOrbLevel = ((EnergyBattery) bloodOrb.getItem()).getOrbLevel();
for (AlchemyRecipe ar : recipes) for (AlchemyRecipe ar : recipes)
{ {
if (ar.doesRecipeMatch(recipe, bloodOrbLevel)) if (ar.doesRecipeMatch(recipe, bloodOrbLevel))
{ {
return(ar.getResult()); return (ar.getResult());
} }
} }
@ -52,13 +52,13 @@ public class AlchemyRecipeRegistry
return 0; return 0;
} }
int bloodOrbLevel = ((EnergyBattery)bloodOrb.getItem()).getOrbLevel(); int bloodOrbLevel = ((EnergyBattery) bloodOrb.getItem()).getOrbLevel();
for (AlchemyRecipe ar : recipes) for (AlchemyRecipe ar : recipes)
{ {
if (ar.doesRecipeMatch(recipe, bloodOrbLevel)) if (ar.doesRecipeMatch(recipe, bloodOrbLevel))
{ {
return(ar.getAmountNeeded()); return (ar.getAmountNeeded());
} }
} }
@ -67,7 +67,7 @@ public class AlchemyRecipeRegistry
public static ItemStack[] getRecipeForItemStack(ItemStack itemStack) public static ItemStack[] getRecipeForItemStack(ItemStack itemStack)
{ {
for (AlchemyRecipe ar: recipes) for (AlchemyRecipe ar : recipes)
{ {
ItemStack result = ar.getResult(); ItemStack result = ar.getResult();

View file

@ -1,14 +1,15 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.ArrayList;
import java.util.List;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourComponent; import WayofTime.alchemicalWizardry.common.ArmourComponent;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ArmourUpgrade;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.items.BoundArmour; import WayofTime.alchemicalWizardry.common.items.BoundArmour;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar; import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import WayofTime.alchemicalWizardry.common.tileEntity.TESocket; import WayofTime.alchemicalWizardry.common.tileEntity.TESocket;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -20,9 +21,9 @@ import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side; import java.util.ArrayList;
import cpw.mods.fml.relauncher.SideOnly; import java.util.List;
public class ArmourForge extends Block public class ArmourForge extends Block
{ {
@ -77,22 +78,22 @@ public class ArmourForge extends Block
{ {
case 0: case 0:
list = plateList; list = plateList;
armourPiece = new ItemStack(AlchemicalWizardry.boundPlate.itemID, 1, 0); armourPiece = new ItemStack(ModItems.boundPlate.itemID, 1, 0);
break; break;
case 1: case 1:
list = leggingsList; list = leggingsList;
armourPiece = new ItemStack(AlchemicalWizardry.boundLeggings.itemID, 1, 0); armourPiece = new ItemStack(ModItems.boundLeggings.itemID, 1, 0);
break; break;
case 2: case 2:
list = helmetList; list = helmetList;
armourPiece = new ItemStack(AlchemicalWizardry.boundHelmet.itemID, 1, 0); armourPiece = new ItemStack(ModItems.boundHelmet.itemID, 1, 0);
break; break;
case 3: case 3:
list = bootsList; list = bootsList;
armourPiece = new ItemStack(AlchemicalWizardry.boundBoots.itemID, 1, 0); armourPiece = new ItemStack(ModItems.boundBoots.itemID, 1, 0);
break; break;
} }
@ -149,16 +150,16 @@ public class ArmourForge extends Block
if (tileEntity instanceof TESocket) if (tileEntity instanceof TESocket)
{ {
ItemStack itemStack = ((TESocket)tileEntity).getStackInSlot(0); ItemStack itemStack = ((TESocket) tileEntity).getStackInSlot(0);
int xCoord = tileEntity.xCoord; int xCoord = tileEntity.xCoord;
int yCoord = tileEntity.yCoord; int yCoord = tileEntity.yCoord;
int zCoord = tileEntity.zCoord; int zCoord = tileEntity.zCoord;
((TESocket)tileEntity).setInventorySlotContents(0, null); ((TESocket) tileEntity).setInventorySlotContents(0, null);
world.setBlockToAir(tileEntity.xCoord, tileEntity.yCoord, tileEntity.zCoord); world.setBlockToAir(tileEntity.xCoord, tileEntity.yCoord, tileEntity.zCoord);
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllAround(xCoord, yCoord, zCoord, 20, world.provider.dimensionId, TEAltar.getParticlePacket(xCoord, yCoord, zCoord, (short)1)); PacketDispatcher.sendPacketToAllAround(xCoord, yCoord, zCoord, 20, world.provider.dimensionId, TEAltar.getParticlePacket(xCoord, yCoord, zCoord, (short) 1));
} }
if (itemStack != null) if (itemStack != null)
@ -167,7 +168,7 @@ public class ArmourForge extends Block
if (item instanceof ArmourUpgrade) if (item instanceof ArmourUpgrade)
{ {
((BoundArmour)armourPiece.getItem()).hasAddedToInventory(armourPiece, itemStack.copy()); ((BoundArmour) armourPiece.getItem()).hasAddedToInventory(armourPiece, itemStack.copy());
((TESocket) tileEntity).setInventorySlotContents(0, null); ((TESocket) tileEntity).setInventorySlotContents(0, null);
} }
} }
@ -177,7 +178,7 @@ public class ArmourForge extends Block
if (armourPiece != null) if (armourPiece != null)
{ {
int xOff = (world.rand.nextInt(11) - 5); int xOff = (world.rand.nextInt(11) - 5);
int zOff = (int)(Math.sqrt(25 - xOff * xOff) * (world.rand.nextInt(2) - 0.5) * 2); int zOff = (int) (Math.sqrt(25 - xOff * xOff) * (world.rand.nextInt(2) - 0.5) * 2);
world.addWeatherEffect(new EntityLightningBolt(world, x + xOff, y + 5, z + zOff)); world.addWeatherEffect(new EntityLightningBolt(world, x + xOff, y + 5, z + zOff));
world.spawnEntityInWorld(new EntityItem(world, x, y + 1, z, armourPiece)); world.spawnEntityInWorld(new EntityItem(world, x, y + 1, z, armourPiece));
} }

View file

@ -1,7 +1,14 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -14,14 +21,8 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.IBlockAccess; import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.PacketHandler; import java.util.Random;
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlockAltar extends BlockContainer public class BlockAltar extends BlockContainer
{ {
@ -33,6 +34,7 @@ public class BlockAltar extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockAltar(int id) public BlockAltar(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -65,10 +67,10 @@ public class BlockAltar extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -77,7 +79,7 @@ public class BlockAltar extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TEAltar tileEntity = (TEAltar)world.getBlockTileEntity(x, y, z); TEAltar tileEntity = (TEAltar) world.getBlockTileEntity(x, y, z);
// world.scheduleBlockUpdate(x, y, z, this.blockID, 0); // world.scheduleBlockUpdate(x, y, z, this.blockID, 0);
@ -90,7 +92,7 @@ public class BlockAltar extends BlockContainer
if (playerItem != null) if (playerItem != null)
{ {
if (playerItem.getItem().itemID == AlchemicalWizardry.divinationSigil.itemID) if (playerItem.getItem().itemID == ModItems.divinationSigil.itemID)
{ {
if (player.worldObj.isRemote) if (player.worldObj.isRemote)
{ {
@ -98,12 +100,11 @@ public class BlockAltar extends BlockContainer
} }
return true; return true;
} } else if (playerItem.getItem().itemID == ModItems.sigilOfHolding.itemID)
else if (playerItem.getItem().itemID == AlchemicalWizardry.sigilOfHolding.itemID)
{ {
ItemStack item = ((SigilOfHolding)playerItem.getItem()).getCurrentItem(playerItem); ItemStack item = ((SigilOfHolding) playerItem.getItem()).getCurrentItem(playerItem);
if (item != null && item.getItem().itemID == AlchemicalWizardry.divinationSigil.itemID) if (item != null && item.getItem().itemID == ModItems.divinationSigil.itemID)
{ {
if (player.worldObj.isRemote) if (player.worldObj.isRemote)
{ {
@ -126,8 +127,7 @@ public class BlockAltar extends BlockContainer
--playerItem.stackSize; --playerItem.stackSize;
tileEntity.setInventorySlotContents(0, newItem); tileEntity.setInventorySlotContents(0, newItem);
tileEntity.startCycle(); tileEntity.startCycle();
} } else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
{ {
/**stub method /**stub method
* Add the item that is in the slot to the player's inventory, and * Add the item that is in the slot to the player's inventory, and
@ -173,8 +173,8 @@ public class BlockAltar extends BlockContainer
float ry = rand.nextFloat() * 0.8F + 0.1F; float ry = rand.nextFloat() * 0.8F + 0.1F;
float rz = rand.nextFloat() * 0.8F + 0.1F; float rz = rand.nextFloat() * 0.8F + 0.1F;
EntityItem entityItem = new EntityItem(world, EntityItem entityItem = new EntityItem(world,
x + rx, y + ry, z + rz, x + rx, y + ry, z + rz,
new ItemStack(item.itemID, item.stackSize, item.getItemDamage())); new ItemStack(item.itemID, item.stackSize, item.getItemDamage()));
if (item.hasTagCompound()) if (item.hasTagCompound())
{ {
@ -224,7 +224,7 @@ public class BlockAltar extends BlockContainer
@Override @Override
public void randomDisplayTick(World world, int x, int y, int z, Random rand) public void randomDisplayTick(World world, int x, int y, int z, Random rand)
{ {
TEAltar tileEntity = (TEAltar)world.getBlockTileEntity(x, y, z); TEAltar tileEntity = (TEAltar) world.getBlockTileEntity(x, y, z);
if (!tileEntity.isActive()) if (!tileEntity.isActive())
{ {
@ -260,15 +260,15 @@ public class BlockAltar extends BlockContainer
// { // {
// return 0; // return 0;
// } // }
ItemStack stack = ((TEAltar)tile).getStackInSlot(0); ItemStack stack = ((TEAltar) tile).getStackInSlot(0);
if (stack != null && stack.getItem() instanceof EnergyBattery) if (stack != null && stack.getItem() instanceof EnergyBattery)
{ {
EnergyBattery bloodOrb = (EnergyBattery)stack.getItem(); EnergyBattery bloodOrb = (EnergyBattery) stack.getItem();
int maxEssence = bloodOrb.getMaxEssence(); int maxEssence = bloodOrb.getMaxEssence();
int currentEssence = bloodOrb.getCurrentEssence(stack); int currentEssence = bloodOrb.getCurrentEssence(stack);
int level = currentEssence * 15 / maxEssence; int level = currentEssence * 15 / maxEssence;
return((int)(Math.min(15, level))) % 16; return ((int) (Math.min(15, level))) % 16;
} }
} }

View file

@ -1,8 +1,5 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.List;
import java.util.Random;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
@ -13,6 +10,9 @@ import net.minecraft.util.AxisAlignedBB;
import net.minecraft.world.IBlockAccess; import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World; import net.minecraft.world.World;
import java.util.List;
import java.util.Random;
public class BlockBloodLightSource extends Block public class BlockBloodLightSource extends Block
{ {
public BlockBloodLightSource(int par1) public BlockBloodLightSource(int par1)
@ -52,7 +52,7 @@ public class BlockBloodLightSource extends Block
{ {
if (rand.nextInt(3) != 0) if (rand.nextInt(3) != 0)
{ {
float f = (float)1.0F; float f = (float) 1.0F;
float f1 = f * 0.6F + 0.4F; float f1 = f * 0.6F + 0.4F;
float f2 = f * f * 0.7F - 0.5F; float f2 = f * f * 0.7F - 0.5F;
float f3 = f * f * 0.6F - 0.7F; float f3 = f * f * 0.6F - 0.7F;

View file

@ -2,6 +2,8 @@ package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit; import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -10,8 +12,6 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.ForgeDirection; import net.minecraftforge.common.ForgeDirection;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlockConduit extends BlockContainer public class BlockConduit extends BlockContainer
{ {
@ -23,6 +23,7 @@ public class BlockConduit extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockConduit(int id) public BlockConduit(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -55,10 +56,10 @@ public class BlockConduit extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -78,25 +79,22 @@ public class BlockConduit extends BlockContainer
if (tile instanceof TEConduit) if (tile instanceof TEConduit)
{ {
//TODO NEEDS WORK //TODO NEEDS WORK
if (((TEConduit)tile).getInputDirection().equals(sideClicked)) if (((TEConduit) tile).getInputDirection().equals(sideClicked))
{ {
((TEConduit)tile).setInputDirection(((TEConduit)tile).getOutputDirection()); ((TEConduit) tile).setInputDirection(((TEConduit) tile).getOutputDirection());
((TEConduit)tile).setOutputDirection(sideClicked); ((TEConduit) tile).setOutputDirection(sideClicked);
} } else if (((TEConduit) tile).getOutputDirection().equals(sideClicked))
else if (((TEConduit)tile).getOutputDirection().equals(sideClicked))
{ {
((TEConduit)tile).setOutputDirection(((TEConduit)tile).getInputDirection()); ((TEConduit) tile).setOutputDirection(((TEConduit) tile).getInputDirection());
((TEConduit)tile).setInputDirection(sideClicked); ((TEConduit) tile).setInputDirection(sideClicked);
} } else
else
{ {
if (!player.isSneaking()) if (!player.isSneaking())
{ {
((TEConduit)tile).setOutputDirection(sideClicked); ((TEConduit) tile).setOutputDirection(sideClicked);
} } else
else
{ {
((TEConduit)tile).setOutputDirection(sideClicked.getOpposite()); ((TEConduit) tile).setOutputDirection(sideClicked.getOpposite());
} }
} }
} }

View file

@ -1,5 +1,10 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.BlankSpell;
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.BlockGrass; import net.minecraft.block.BlockGrass;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
@ -10,11 +15,6 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.BlankSpell;
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlockHomHeart extends BlockContainer public class BlockHomHeart extends BlockContainer
{ {
@ -52,10 +52,10 @@ public class BlockHomHeart extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon; return sideIcon;
} }
@ -64,7 +64,7 @@ public class BlockHomHeart extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TEHomHeart tileEntity = (TEHomHeart)world.getBlockTileEntity(x, y, z); TEHomHeart tileEntity = (TEHomHeart) world.getBlockTileEntity(x, y, z);
if (tileEntity == null || player.isSneaking()) if (tileEntity == null || player.isSneaking())
{ {

View file

@ -1,5 +1,10 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.ActivationCrystal;
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -8,11 +13,6 @@ import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.ActivationCrystal;
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlockMasterStone extends BlockContainer public class BlockMasterStone extends BlockContainer
{ {
@ -36,7 +36,7 @@ public class BlockMasterStone extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TEMasterStone tileEntity = (TEMasterStone)world.getBlockTileEntity(x, y, z); TEMasterStone tileEntity = (TEMasterStone) world.getBlockTileEntity(x, y, z);
if (tileEntity == null || player.isSneaking()) if (tileEntity == null || player.isSneaking())
{ {
@ -57,7 +57,7 @@ public class BlockMasterStone extends BlockContainer
return false; return false;
} }
ActivationCrystal acItem = (ActivationCrystal)item; ActivationCrystal acItem = (ActivationCrystal) item;
tileEntity.setOwner(acItem.getOwnerName(playerItem)); tileEntity.setOwner(acItem.getOwnerName(playerItem));
tileEntity.activateRitual(world, acItem.getCrystalLevel(playerItem)); tileEntity.activateRitual(world, acItem.getCrystalLevel(playerItem));
world.markBlockForUpdate(x, y, z); world.markBlockForUpdate(x, y, z);

View file

@ -1,13 +1,12 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal; import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory; import net.minecraft.inventory.IInventory;
@ -18,8 +17,8 @@ import net.minecraft.util.Icon;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3; import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.Random;
public class BlockPedestal extends BlockContainer public class BlockPedestal extends BlockContainer
{ {
@ -31,6 +30,7 @@ public class BlockPedestal extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockPedestal(int id) public BlockPedestal(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -63,10 +63,10 @@ public class BlockPedestal extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -75,7 +75,7 @@ public class BlockPedestal extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TEPedestal tileEntity = (TEPedestal)world.getBlockTileEntity(x, y, z); TEPedestal tileEntity = (TEPedestal) world.getBlockTileEntity(x, y, z);
if (tileEntity == null || player.isSneaking()) if (tileEntity == null || player.isSneaking())
{ {
@ -90,8 +90,7 @@ public class BlockPedestal extends BlockContainer
newItem.stackSize = 1; newItem.stackSize = 1;
--playerItem.stackSize; --playerItem.stackSize;
tileEntity.setInventorySlotContents(0, newItem); tileEntity.setInventorySlotContents(0, newItem);
} } else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
{ {
/**stub method /**stub method
* Add the item that is in the slot to the player's inventory, and * Add the item that is in the slot to the player's inventory, and

View file

@ -1,13 +1,12 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth; import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory; import net.minecraft.inventory.IInventory;
@ -18,8 +17,8 @@ import net.minecraft.util.Icon;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3; import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.Random;
public class BlockPlinth extends BlockContainer public class BlockPlinth extends BlockContainer
{ {
@ -31,6 +30,7 @@ public class BlockPlinth extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockPlinth(int id) public BlockPlinth(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -63,10 +63,10 @@ public class BlockPlinth extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -75,7 +75,7 @@ public class BlockPlinth extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TEPlinth tileEntity = (TEPlinth)world.getBlockTileEntity(x, y, z); TEPlinth tileEntity = (TEPlinth) world.getBlockTileEntity(x, y, z);
if (tileEntity == null || player.isSneaking()) if (tileEntity == null || player.isSneaking())
{ {
@ -90,8 +90,7 @@ public class BlockPlinth extends BlockContainer
newItem.stackSize = 1; newItem.stackSize = 1;
--playerItem.stackSize; --playerItem.stackSize;
tileEntity.setInventorySlotContents(0, newItem); tileEntity.setInventorySlotContents(0, newItem);
} } else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
{ {
/**stub method /**stub method
* Add the item that is in the slot to the player's inventory, and * Add the item that is in the slot to the player's inventory, and

View file

@ -1,10 +1,10 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import WayofTime.alchemicalWizardry.common.ArmourUpgrade;
import WayofTime.alchemicalWizardry.common.tileEntity.TESocket; import WayofTime.alchemicalWizardry.common.tileEntity.TESocket;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -16,8 +16,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.Random;
public class BlockSocket extends BlockContainer public class BlockSocket extends BlockContainer
{ {
@ -29,6 +29,7 @@ public class BlockSocket extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockSocket(int id) public BlockSocket(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -61,10 +62,10 @@ public class BlockSocket extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -73,7 +74,7 @@ public class BlockSocket extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TESocket tileEntity = (TESocket)world.getBlockTileEntity(x, y, z); TESocket tileEntity = (TESocket) world.getBlockTileEntity(x, y, z);
if (tileEntity == null || player.isSneaking()) if (tileEntity == null || player.isSneaking())
{ {
@ -91,8 +92,7 @@ public class BlockSocket extends BlockContainer
--playerItem.stackSize; --playerItem.stackSize;
tileEntity.setInventorySlotContents(0, newItem); tileEntity.setInventorySlotContents(0, newItem);
} }
} } else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
else if (tileEntity.getStackInSlot(0) != null && playerItem == null)
{ {
/**stub method /**stub method
* Add the item that is in the slot to the player's inventory, and * Add the item that is in the slot to the player's inventory, and

View file

@ -1,10 +1,10 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.TelepositionFocus; import WayofTime.alchemicalWizardry.common.items.TelepositionFocus;
import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer; import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.BlockMobSpawner; import net.minecraft.block.BlockMobSpawner;
@ -18,8 +18,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.Random;
public class BlockTeleposer extends BlockContainer public class BlockTeleposer extends BlockContainer
{ {
@ -31,6 +31,7 @@ public class BlockTeleposer extends BlockContainer
private static Icon sideIcon2; private static Icon sideIcon2;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon bottomIcon; private static Icon bottomIcon;
public BlockTeleposer(int id) public BlockTeleposer(int id)
{ {
super(id, Material.rock); super(id, Material.rock);
@ -63,10 +64,10 @@ public class BlockTeleposer extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -75,7 +76,7 @@ public class BlockTeleposer extends BlockContainer
@Override @Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are) public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int idk, float what, float these, float are)
{ {
TETeleposer tileEntity = (TETeleposer)world.getBlockTileEntity(x, y, z); TETeleposer tileEntity = (TETeleposer) world.getBlockTileEntity(x, y, z);
ItemStack playerItem = player.getCurrentEquippedItem(); ItemStack playerItem = player.getCurrentEquippedItem();
if (playerItem != null) if (playerItem != null)

View file

@ -1,8 +1,5 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.List;
import java.util.Random;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable; import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
@ -10,7 +7,6 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockContainer; import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
@ -20,10 +16,11 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import java.util.List;
import java.util.Random;
public class BlockWritingTable extends BlockContainer public class BlockWritingTable extends BlockContainer
{ {
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
@ -66,10 +63,10 @@ public class BlockWritingTable extends BlockContainer
case 1: case 1:
return topIcon; return topIcon;
//case 2: return sideIcon1; //case 2: return sideIcon1;
//case 3: return sideIcon1; //case 3: return sideIcon1;
//case 4: return sideIcon2; //case 4: return sideIcon2;
//case 5: return sideIcon2; //case 5: return sideIcon2;
default: default:
return sideIcon2; return sideIcon2;
} }
@ -119,8 +116,8 @@ public class BlockWritingTable extends BlockContainer
float ry = rand.nextFloat() * 0.8F + 0.1F; float ry = rand.nextFloat() * 0.8F + 0.1F;
float rz = rand.nextFloat() * 0.8F + 0.1F; float rz = rand.nextFloat() * 0.8F + 0.1F;
EntityItem entityItem = new EntityItem(world, EntityItem entityItem = new EntityItem(world,
x + rx, y + ry, z + rz, x + rx, y + ry, z + rz,
new ItemStack(item.itemID, item.stackSize, item.getItemDamage())); new ItemStack(item.itemID, item.stackSize, item.getItemDamage()));
if (item.hasTagCompound()) if (item.hasTagCompound())
{ {

View file

@ -1,16 +1,17 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.List;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModBlocks;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs; import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.List;
public class BloodRune extends Block public class BloodRune extends Block
{ {
@ -65,14 +66,13 @@ public class BloodRune extends Block
*/ */
public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List) public void getSubBlocks(int par1, CreativeTabs par2CreativeTabs, List par3List)
{ {
if (this.blockID == AlchemicalWizardry.bloodRune.blockID) if (this.blockID == ModBlocks.bloodRune.blockID)
{ {
par3List.add(new ItemStack(par1, 1, 0)); par3List.add(new ItemStack(par1, 1, 0));
par3List.add(new ItemStack(par1, 1, 1)); par3List.add(new ItemStack(par1, 1, 1));
par3List.add(new ItemStack(par1, 1, 2)); par3List.add(new ItemStack(par1, 1, 2));
par3List.add(new ItemStack(par1, 1, 3)); par3List.add(new ItemStack(par1, 1, 3));
} } else
else
{ {
super.getSubBlocks(par1, par2CreativeTabs, par3List); super.getSubBlocks(par1, par2CreativeTabs, par3List);
} }

View file

@ -6,7 +6,6 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class BloodStoneBrick extends Block public class BloodStoneBrick extends Block
{ {

View file

@ -4,7 +4,6 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class EfficiencyRune extends BloodRune public class EfficiencyRune extends BloodRune
{ {

View file

@ -6,7 +6,6 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class EmptySocket extends Block public class EmptySocket extends Block
{ {

View file

@ -5,8 +5,10 @@ import net.minecraftforge.common.ForgeDirection;
public interface IOrientable public interface IOrientable
{ {
public ForgeDirection getInputDirection(); public ForgeDirection getInputDirection();
public ForgeDirection getOutputDirection(); public ForgeDirection getOutputDirection();
public void setInputDirection(ForgeDirection direction); public void setInputDirection(ForgeDirection direction);
public void setOutputDirection(ForgeDirection direction); public void setOutputDirection(ForgeDirection direction);
} }

View file

@ -6,20 +6,13 @@ import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.effect.EntityLightningBolt; import net.minecraft.entity.effect.EntityLightningBolt;
import net.minecraft.entity.monster.EntityZombie; import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World; import net.minecraft.world.World;
public class ImperfectRitualStone extends Block public class ImperfectRitualStone extends Block
@ -76,8 +69,7 @@ public class ImperfectRitualStone extends Block
world.getWorldInfo().setThunderTime(0); world.getWorldInfo().setThunderTime(0);
world.getWorldInfo().setThundering(true); world.getWorldInfo().setThundering(true);
return true; return true;
} } else if (blockID == Block.coalBlock.blockID)
else if (blockID == Block.coalBlock.blockID)
{ {
if (!player.capabilities.isCreativeMode && world.isRemote) if (!player.capabilities.isCreativeMode && world.isRemote)
{ {
@ -107,8 +99,7 @@ public class ImperfectRitualStone extends Block
} }
return true; return true;
} } else if (blockID == Block.blockLapis.blockID)
else if (blockID == Block.blockLapis.blockID)
{ {
if (!player.capabilities.isCreativeMode && world.isRemote) if (!player.capabilities.isCreativeMode && world.isRemote)
{ {
@ -124,8 +115,7 @@ public class ImperfectRitualStone extends Block
// PacketDispatcher.sendPacketToServer(PacketHandler.getPacket(player.getEntityName(), -5000, 0)); // PacketDispatcher.sendPacketToServer(PacketHandler.getPacket(player.getEntityName(), -5000, 0));
// } // }
} }
} } else if (blockID == Block.bedrock.blockID)
else if (blockID == Block.bedrock.blockID)
{ {
if (!player.capabilities.isCreativeMode && world.isRemote) if (!player.capabilities.isCreativeMode && world.isRemote)
{ {

View file

@ -6,7 +6,6 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class LargeBloodStoneBrick extends Block public class LargeBloodStoneBrick extends Block
{ {

View file

@ -1,14 +1,14 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.IBlockAccess; import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.fluids.BlockFluidClassic; import net.minecraftforge.fluids.BlockFluidClassic;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class LifeEssenceBlock extends BlockFluidClassic public class LifeEssenceBlock extends BlockFluidClassic
{ {
@ -37,7 +37,7 @@ public class LifeEssenceBlock extends BlockFluidClassic
@Override @Override
public boolean canDisplace(IBlockAccess world, int x, int y, int z) public boolean canDisplace(IBlockAccess world, int x, int y, int z)
{ {
if (world.getBlockMaterial(x, y, z).isLiquid()) if (world.getBlockMaterial(x, y, z).isLiquid())
{ {
return false; return false;
} }
@ -48,7 +48,7 @@ public class LifeEssenceBlock extends BlockFluidClassic
@Override @Override
public boolean displaceIfPossible(World world, int x, int y, int z) public boolean displaceIfPossible(World world, int x, int y, int z)
{ {
if (world.getBlockMaterial(x, y, z).isLiquid()) if (world.getBlockMaterial(x, y, z).isLiquid())
{ {
return false; return false;
} }

View file

@ -1,12 +1,12 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockFlowing; import net.minecraft.block.BlockFlowing;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs; import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class LifeEssenceFlowing extends BlockFlowing public class LifeEssenceFlowing extends BlockFlowing
{ {
@ -24,9 +24,9 @@ public class LifeEssenceFlowing extends BlockFlowing
public void registerIcons(IconRegister iconRegister) public void registerIcons(IconRegister iconRegister)
{ {
this.theIcon = new Icon[] this.theIcon = new Icon[]
{ {
iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceStill"), iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceStill"),
iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceFlowing") iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceFlowing")
}; };
} }
} }

View file

@ -5,7 +5,6 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.BlockStationary; import net.minecraft.block.BlockStationary;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
public class LifeEssenceStill extends BlockStationary public class LifeEssenceStill extends BlockStationary
@ -25,9 +24,9 @@ public class LifeEssenceStill extends BlockStationary
public void registerIcons(IconRegister iconRegister) public void registerIcons(IconRegister iconRegister)
{ {
this.theIcon = new Icon[] this.theIcon = new Icon[]
{ {
iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceStill"), iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceStill"),
iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceFlowing") iconRegister.registerIcon("AlchemicalWizardry:lifeEssenceFlowing")
}; };
} }
} }

View file

@ -1,5 +1,9 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.ScribeTool;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -8,10 +12,6 @@ import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.items.ScribeTool;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class RitualStone extends Block public class RitualStone extends Block
{ {
@ -77,7 +77,7 @@ public class RitualStone extends Block
return false; return false;
} }
ScribeTool scribeTool = (ScribeTool)item; ScribeTool scribeTool = (ScribeTool) item;
if (!player.capabilities.isCreativeMode) if (!player.capabilities.isCreativeMode)
{ {

View file

@ -4,7 +4,6 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class RuneOfSacrifice extends BloodRune public class RuneOfSacrifice extends BloodRune
{ {

View file

@ -4,7 +4,6 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class RuneOfSelfSacrifice extends BloodRune public class RuneOfSelfSacrifice extends BloodRune
{ {

View file

@ -1,18 +1,16 @@
package WayofTime.alchemicalWizardry.common.block; package WayofTime.alchemicalWizardry.common.block;
import java.util.Random; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockLeaves;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side; import java.util.Random;
import cpw.mods.fml.relauncher.SideOnly;
public class SpectralBlock extends Block public class SpectralBlock extends Block
{ {
@ -89,8 +87,7 @@ public class SpectralBlock extends Block
} }
return true; return true;
} } else
else
{ {
return false; return false;
} }

View file

@ -4,7 +4,6 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
public class SpeedRune extends BloodRune public class SpeedRune extends BloodRune
{ {

View file

@ -4,7 +4,7 @@ public class AltarUpgradeComponent
{ {
private int speedUpgrades; private int speedUpgrades;
private int efficiencyUpgrades; private int efficiencyUpgrades;
private int sacrificeUpgrades ; private int sacrificeUpgrades;
private int selfSacrificeUpgrades; private int selfSacrificeUpgrades;
private int displacementUpgrades; private int displacementUpgrades;
private int altarCapacitiveUpgrades; private int altarCapacitiveUpgrades;

View file

@ -1,13 +1,14 @@
package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade; package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModBlocks;
import WayofTime.alchemicalWizardry.common.block.BloodRune;
import net.minecraft.block.Block;
import net.minecraft.world.World;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.block.BloodRune;
public class UpgradedAltars public class UpgradedAltars
{ {
public static List<AltarComponent> secondTierAltar = new ArrayList(); public static List<AltarComponent> secondTierAltar = new ArrayList();
@ -47,8 +48,7 @@ public class UpgradedAltars
{ {
return false; return false;
} }
} } else
else
{ {
int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ());
int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ());
@ -73,8 +73,7 @@ public class UpgradedAltars
{ {
return false; return false;
} }
} } else
else
{ {
int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ());
int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ());
@ -99,8 +98,7 @@ public class UpgradedAltars
{ {
return false; return false;
} }
} } else
else
{ {
int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ());
int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ());
@ -125,8 +123,7 @@ public class UpgradedAltars
{ {
return false; return false;
} }
} } else
else
{ {
int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int blockId = world.getBlockId(x + ac.getX(), y + ac.getY(), z + ac.getZ());
int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ()); int metadata = world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ());
@ -150,7 +147,7 @@ public class UpgradedAltars
AltarUpgradeComponent upgrades = new AltarUpgradeComponent(); AltarUpgradeComponent upgrades = new AltarUpgradeComponent();
List<AltarComponent> list = UpgradedAltars.getAltarUpgradeListForTier(altarTier); List<AltarComponent> list = UpgradedAltars.getAltarUpgradeListForTier(altarTier);
for (AltarComponent ac: list) for (AltarComponent ac : list)
{ {
if (ac.isUpgradeSlot()) if (ac.isUpgradeSlot())
{ {
@ -162,7 +159,7 @@ public class UpgradedAltars
{ {
if (!world.isRemote) if (!world.isRemote)
{ {
switch (((BloodRune)testBlock).getRuneEffect(world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ()))) switch (((BloodRune) testBlock).getRuneEffect(world.getBlockMetadata(x + ac.getX(), y + ac.getY(), z + ac.getZ())))
{ {
case 1: case 1:
upgrades.addSpeedUpgrade(); upgrades.addSpeedUpgrade();
@ -257,10 +254,10 @@ public class UpgradedAltars
fourthTierAltar.add(new AltarComponent(-5, i, 5, Block.stoneBrick.blockID, 0, false, false)); fourthTierAltar.add(new AltarComponent(-5, i, 5, Block.stoneBrick.blockID, 0, false, false));
} }
fourthTierAltar.add(new AltarComponent(5, 2, 5, AlchemicalWizardry.largeBloodStoneBrick.blockID, 0, false, false)); fourthTierAltar.add(new AltarComponent(5, 2, 5, ModBlocks.largeBloodStoneBrick.blockID, 0, false, false));
fourthTierAltar.add(new AltarComponent(5, 2, -5, AlchemicalWizardry.largeBloodStoneBrick.blockID, 0, false, false)); fourthTierAltar.add(new AltarComponent(5, 2, -5, ModBlocks.largeBloodStoneBrick.blockID, 0, false, false));
fourthTierAltar.add(new AltarComponent(-5, 2, -5, AlchemicalWizardry.largeBloodStoneBrick.blockID, 0, false, false)); fourthTierAltar.add(new AltarComponent(-5, 2, -5, ModBlocks.largeBloodStoneBrick.blockID, 0, false, false));
fourthTierAltar.add(new AltarComponent(-5, 2, 5, AlchemicalWizardry.largeBloodStoneBrick.blockID, 0, false, false)); fourthTierAltar.add(new AltarComponent(-5, 2, 5, ModBlocks.largeBloodStoneBrick.blockID, 0, false, false));
fifthTierAltar.addAll(fourthTierAltar); fifthTierAltar.addAll(fourthTierAltar);
fifthTierAltar.add(new AltarComponent(-8, -3, 8, Block.beacon.blockID, 0, false, false)); fifthTierAltar.add(new AltarComponent(-8, -3, 8, Block.beacon.blockID, 0, false, false));
fifthTierAltar.add(new AltarComponent(-8, -3, -8, Block.beacon.blockID, 0, false, false)); fifthTierAltar.add(new AltarComponent(-8, -3, -8, Block.beacon.blockID, 0, false, false));

View file

@ -1,26 +1,17 @@
package WayofTime.alchemicalWizardry.common.entity.mob; package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModItems;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.client.model.ModelIronGolem;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIAttackOnCollide; import net.minecraft.entity.ai.*;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -75,8 +66,7 @@ public class EntityBileDemon extends EntityDemon
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -102,8 +92,7 @@ public class EntityBileDemon extends EntityDemon
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -121,8 +110,8 @@ public class EntityBileDemon extends EntityDemon
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -140,8 +129,8 @@ public class EntityBileDemon extends EntityDemon
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
par1NBTTagCompound.setByte("attackTimer", (byte)attackTimer); par1NBTTagCompound.setByte("attackTimer", (byte) attackTimer);
} }
/** /**
@ -249,8 +238,7 @@ public class EntityBileDemon extends EntityDemon
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -267,8 +255,8 @@ public class EntityBileDemon extends EntityDemon
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
this.attackTimer = 10; this.attackTimer = 10;
this.worldObj.setEntityState(this, (byte)4); this.worldObj.setEntityState(this, (byte) 4);
boolean flag = par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)(7 + this.rand.nextInt(15))); boolean flag = par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) (7 + this.rand.nextInt(15)));
if (flag) if (flag)
{ {
@ -286,8 +274,7 @@ public class EntityBileDemon extends EntityDemon
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -306,7 +293,7 @@ public class EntityBileDemon extends EntityDemon
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -315,11 +302,11 @@ public class EntityBileDemon extends EntityDemon
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -327,21 +314,20 @@ public class EntityBileDemon extends EntityDemon
} }
} }
if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack)) if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack))
{ {
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -350,7 +336,7 @@ public class EntityBileDemon extends EntityDemon
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -358,18 +344,17 @@ public class EntityBileDemon extends EntityDemon
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -406,11 +391,10 @@ public class EntityBileDemon extends EntityDemon
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -427,7 +411,7 @@ public class EntityBileDemon extends EntityDemon
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -442,11 +426,10 @@ public class EntityBileDemon extends EntityDemon
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -478,7 +461,7 @@ public class EntityBileDemon extends EntityDemon
{ {
if (par1EntityLivingBase instanceof EntityBileDemon) if (par1EntityLivingBase instanceof EntityBileDemon)
{ {
EntityBileDemon entitywolf = (EntityBileDemon)par1EntityLivingBase; EntityBileDemon entitywolf = (EntityBileDemon) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -486,9 +469,8 @@ public class EntityBileDemon extends EntityDemon
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -1,64 +1,19 @@
package WayofTime.alchemicalWizardry.common.entity.mob; package WayofTime.alchemicalWizardry.common.entity.mob;
import java.util.Calendar;
import java.util.UUID;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile;
import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityCreature;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.EntityLivingData;
import net.minecraft.entity.EntityOwnable;
import net.minecraft.entity.EnumCreatureAttribute;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack; import net.minecraft.entity.ai.*;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIBeg;
import net.minecraft.entity.ai.EntityAIBreakDoor;
import net.minecraft.entity.ai.EntityAIFleeSun;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILeapAtTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMate;
import net.minecraft.entity.ai.EntityAIMoveThroughVillage;
import net.minecraft.entity.ai.EntityAIMoveTowardsRestriction;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAIPanic;
import net.minecraft.entity.ai.EntityAIRestrictSun;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAITargetNonTamed;
import net.minecraft.entity.ai.EntityAITempt;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.ai.attributes.Attribute;
import net.minecraft.entity.ai.attributes.AttributeInstance;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.ai.attributes.RangedAttribute;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntitySheep;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityVillager;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -67,13 +22,8 @@ import net.minecraft.item.ItemFood;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity; import net.minecraft.pathfinding.PathEntity;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.stats.AchievementList;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraft.world.WorldProviderHell;
public class EntityBoulderFist extends EntityDemon public class EntityBoulderFist extends EntityDemon
{ {
@ -125,8 +75,7 @@ public class EntityBoulderFist extends EntityDemon
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -152,8 +101,7 @@ public class EntityBoulderFist extends EntityDemon
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -171,8 +119,8 @@ public class EntityBoulderFist extends EntityDemon
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -190,7 +138,7 @@ public class EntityBoulderFist extends EntityDemon
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -289,8 +237,7 @@ public class EntityBoulderFist extends EntityDemon
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -307,7 +254,7 @@ public class EntityBoulderFist extends EntityDemon
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 6 : 7; int i = this.isTamed() ? 6 : 7;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -317,8 +264,7 @@ public class EntityBoulderFist extends EntityDemon
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -337,7 +283,7 @@ public class EntityBoulderFist extends EntityDemon
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -346,11 +292,11 @@ public class EntityBoulderFist extends EntityDemon
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -358,21 +304,20 @@ public class EntityBoulderFist extends EntityDemon
} }
} }
if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack)) if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack))
{ {
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -381,7 +326,7 @@ public class EntityBoulderFist extends EntityDemon
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -389,18 +334,17 @@ public class EntityBoulderFist extends EntityDemon
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -437,11 +381,10 @@ public class EntityBoulderFist extends EntityDemon
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -458,7 +401,7 @@ public class EntityBoulderFist extends EntityDemon
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -473,11 +416,10 @@ public class EntityBoulderFist extends EntityDemon
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -509,7 +451,7 @@ public class EntityBoulderFist extends EntityDemon
{ {
if (par1EntityLivingBase instanceof EntityBoulderFist) if (par1EntityLivingBase instanceof EntityBoulderFist)
{ {
EntityBoulderFist entitywolf = (EntityBoulderFist)par1EntityLivingBase; EntityBoulderFist entitywolf = (EntityBoulderFist) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -517,9 +459,8 @@ public class EntityBoulderFist extends EntityDemon
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -1,14 +1,15 @@
package WayofTime.alchemicalWizardry.common.entity.mob; package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.IDemon;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.items.DemonPlacer;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.passive.EntityTameable; import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatMessageComponent; import net.minecraft.util.ChatMessageComponent;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IDemon;
import WayofTime.alchemicalWizardry.common.items.DemonPlacer;
public class EntityDemon extends EntityTameable implements IDemon public class EntityDemon extends EntityTameable implements IDemon
{ {
@ -48,7 +49,7 @@ public class EntityDemon extends EntityTameable implements IDemon
protected void dropFewItems(boolean par1, int par2) protected void dropFewItems(boolean par1, int par2)
{ {
ItemStack drop = new ItemStack(AlchemicalWizardry.demonPlacer, 1, this.getDemonID()); ItemStack drop = new ItemStack(ModItems.demonPlacer, 1, this.getDemonID());
DemonPlacer.setOwnerName(drop, this.getOwnerName()); DemonPlacer.setOwnerName(drop, this.getOwnerName());
if (this.hasCustomNameTag()) if (this.hasCustomNameTag())
@ -78,8 +79,7 @@ public class EntityDemon extends EntityTameable implements IDemon
if (isSitting) if (isSitting)
{ {
chatmessagecomponent.addText("I will stay here for now, Master."); chatmessagecomponent.addText("I will stay here for now, Master.");
} } else
else
{ {
chatmessagecomponent.addText("I shall follow and protect you!"); chatmessagecomponent.addText("I shall follow and protect you!");
} }
@ -92,4 +92,10 @@ public class EntityDemon extends EntityTameable implements IDemon
{ {
return this.demonID; return this.demonID;
} }
@Override
public Entity getOwner()
{
return func_130012_q();
}
} }

View file

@ -20,9 +20,9 @@ public class EntityEarthElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityLivingBase) if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).attackEntityFrom(DamageSource.causeMobDamage(this), 10); ((EntityLivingBase) target).attackEntityFrom(DamageSource.causeMobDamage(this), 10);
((EntityLivingBase)target).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 4)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 4));
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
} }
} }
} }

View file

@ -1,27 +1,16 @@
package WayofTime.alchemicalWizardry.common.entity.mob; package WayofTime.alchemicalWizardry.common.entity.mob;
import java.util.List;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModItems;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIAttackOnCollide; import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
@ -29,20 +18,16 @@ import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
import net.minecraft.entity.projectile.EntityLargeFireball;
import net.minecraft.item.Item;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemFood;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper; import net.minecraft.util.MathHelper;
import net.minecraft.util.Vec3;
import net.minecraft.world.World; 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 EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
@ -73,33 +58,40 @@ public class EntityElemental extends EntityDemon
public double waypointZ; public double waypointZ;
private Entity targetedEntity; private Entity targetedEntity;
/** Cooldown time between target loss and new target aquirement. */ /**
* Cooldown time between target loss and new target aquirement.
*/
private int aggroCooldown; private int aggroCooldown;
public int prevAttackCounter; public int prevAttackCounter;
public int attackCounter; public int attackCounter;
/** The explosion radius of spawned fireballs. */ /**
* The explosion radius of spawned fireballs.
*/
//private int explosionStrength = 1; //private int explosionStrength = 1;
// //
// private int heightOffsetUpdateTime; // private int heightOffsetUpdateTime;
// private float heightOffset = 0.5F; // private float heightOffset = 0.5F;
// private int field_70846_g; // private int field_70846_g;
protected void dropFewItems(boolean par1, int par2) protected void dropFewItems(boolean par1, int par2)
{ {
if (worldObj.rand.nextFloat() < (1 - Math.pow(0.6f, par2 + 1))) if (worldObj.rand.nextFloat() < (1 - Math.pow(0.6f, par2 + 1)))
{ {
this.entityDropItem(new ItemStack(AlchemicalWizardry.demonBloodShard, 1, 0), 0.0f); this.entityDropItem(new ItemStack(ModItems.demonBloodShard, 1, 0), 0.0f);
} }
} }
protected void fall(float par1) {} protected void fall(float par1)
{
}
/** /**
* Takes in the distance the entity has fallen this tick and whether its on the ground to update the fall distance * Takes in the distance the entity has fallen this tick and whether its on the ground to update the fall distance
* and deal fall damage if landing on the ground. Args: distanceFallenThisTick, onGround * and deal fall damage if landing on the ground. Args: distanceFallenThisTick, onGround
*/ */
protected void updateFallState(double par1, boolean par3) {} protected void updateFallState(double par1, boolean par3)
{
}
/** /**
* Moves the entity based on the specified heading. Args: strafe, forward * Moves the entity based on the specified heading. Args: strafe, forward
@ -113,16 +105,14 @@ public class EntityElemental extends EntityDemon
this.motionX *= 0.800000011920929D; this.motionX *= 0.800000011920929D;
this.motionY *= 0.800000011920929D; this.motionY *= 0.800000011920929D;
this.motionZ *= 0.800000011920929D; this.motionZ *= 0.800000011920929D;
} } else if (this.handleLavaMovement())
else if (this.handleLavaMovement())
{ {
this.moveFlying(par1, par2, 0.02F); this.moveFlying(par1, par2, 0.02F);
this.moveEntity(this.motionX, this.motionY, this.motionZ); this.moveEntity(this.motionX, this.motionY, this.motionZ);
this.motionX *= 0.5D; this.motionX *= 0.5D;
this.motionY *= 0.5D; this.motionY *= 0.5D;
this.motionZ *= 0.5D; this.motionZ *= 0.5D;
} } else
else
{ {
float f2 = 0.91F; float f2 = 0.91F;
@ -153,9 +143,9 @@ public class EntityElemental extends EntityDemon
} }
this.moveEntity(this.motionX, this.motionY, this.motionZ); this.moveEntity(this.motionX, this.motionY, this.motionZ);
this.motionX *= (double)f2; this.motionX *= (double) f2;
this.motionY *= (double)f2; this.motionY *= (double) f2;
this.motionZ *= (double)f2; this.motionZ *= (double) f2;
} }
double d0 = this.posX - this.prevPosX; double d0 = this.posX - this.prevPosX;
@ -203,27 +193,26 @@ public class EntityElemental extends EntityDemon
if (d3 < 1.0D || d3 > 3600.0D) if (d3 < 1.0D || d3 > 3600.0D)
{ {
this.waypointX = this.posX + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointX = this.posX + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointY = this.posY + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointY = this.posY + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointZ = this.posZ + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointZ = this.posZ + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
} }
if (this.courseChangeCooldown-- <= 0) if (this.courseChangeCooldown-- <= 0)
{ {
this.courseChangeCooldown += this.rand.nextInt(5) + 2; this.courseChangeCooldown += this.rand.nextInt(5) + 2;
d3 = (double)MathHelper.sqrt_double(d3); d3 = (double) MathHelper.sqrt_double(d3);
if (this.isCourseTraversable(this.waypointX, this.waypointY, this.waypointZ, d3)) if (this.isCourseTraversable(this.waypointX, this.waypointY, this.waypointZ, d3))
{ {
this.motionX += d0 / d3 * 0.1D; this.motionX += d0 / d3 * 0.1D;
this.motionY += d1 / d3 * 0.1D; this.motionY += d1 / d3 * 0.1D;
this.motionZ += d2 / d3 * 0.1D; this.motionZ += d2 / d3 * 0.1D;
} } else
else
{ {
this.waypointX = this.posX + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointX = this.posX + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointY = this.posY + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointY = this.posY + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointZ = this.posZ + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointZ = this.posZ + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
} }
} }
@ -247,9 +236,9 @@ public class EntityElemental extends EntityDemon
if (this.targetedEntity != null && this.targetedEntity.getDistanceSqToEntity(this) < d4 * d4) if (this.targetedEntity != null && this.targetedEntity.getDistanceSqToEntity(this) < d4 * d4)
{ {
double d5 = this.targetedEntity.posX - this.posX; double d5 = this.targetedEntity.posX - this.posX;
double d6 = this.targetedEntity.boundingBox.minY + (double)(this.targetedEntity.height / 2.0F) - (this.posY + (double)(this.height / 2.0F)); double d6 = this.targetedEntity.boundingBox.minY + (double) (this.targetedEntity.height / 2.0F) - (this.posY + (double) (this.height / 2.0F));
double d7 = this.targetedEntity.posZ - this.posZ; double d7 = this.targetedEntity.posZ - this.posZ;
this.renderYawOffset = this.rotationYaw = -((float)Math.atan2(d5, d7)) * 180.0F / (float)Math.PI; this.renderYawOffset = this.rotationYaw = -((float) Math.atan2(d5, d7)) * 180.0F / (float) Math.PI;
if (this.courseChangeCooldown <= 0) if (this.courseChangeCooldown <= 0)
{ {
@ -261,12 +250,11 @@ public class EntityElemental extends EntityDemon
this.motionX += d5 / d3 * 0.1D; this.motionX += d5 / d3 * 0.1D;
this.motionY += d6 / d3 * 0.1D; this.motionY += d6 / d3 * 0.1D;
this.motionZ += d7 / d3 * 0.1D; this.motionZ += d7 / d3 * 0.1D;
} } else
else
{ {
this.waypointX = this.posX + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointX = this.posX + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointY = this.posY + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointY = this.posY + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.waypointZ = this.posZ + (double)((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F); this.waypointZ = this.posZ + (double) ((this.rand.nextFloat() * 2.0F - 1.0F) * 16.0F);
this.motionX += d5 / d3 * 0.1D; this.motionX += d5 / d3 * 0.1D;
this.motionY += d6 / d3 * 0.1D; this.motionY += d6 / d3 * 0.1D;
this.motionZ += d7 / d3 * 0.1D; this.motionZ += d7 / d3 * 0.1D;
@ -285,20 +273,18 @@ public class EntityElemental extends EntityDemon
if (this.attackCounter >= 10) if (this.attackCounter >= 10)
{ {
this.worldObj.playAuxSFXAtEntity((EntityPlayer)null, 1008, (int)this.posX, (int)this.posY, (int)this.posZ, 0); this.worldObj.playAuxSFXAtEntity((EntityPlayer) null, 1008, (int) this.posX, (int) this.posY, (int) this.posZ, 0);
this.inflictEffectOnEntity(this.targetedEntity); this.inflictEffectOnEntity(this.targetedEntity);
this.attackCounter = -40; this.attackCounter = -40;
} }
} }
} } else if (this.attackCounter > 0)
else if (this.attackCounter > 0)
{ {
--this.attackCounter; --this.attackCounter;
} }
} } else
else
{ {
this.renderYawOffset = this.rotationYaw = -((float)Math.atan2(this.motionX, this.motionZ)) * 180.0F / (float)Math.PI; this.renderYawOffset = this.rotationYaw = -((float) Math.atan2(this.motionX, this.motionZ)) * 180.0F / (float) Math.PI;
if (this.attackCounter > 0) if (this.attackCounter > 0)
{ {
@ -309,7 +295,7 @@ public class EntityElemental extends EntityDemon
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
byte b0 = this.dataWatcher.getWatchableObjectByte(25); byte b0 = this.dataWatcher.getWatchableObjectByte(25);
byte b1 = (byte)(this.attackCounter > 10 ? 1 : 0); byte b1 = (byte) (this.attackCounter > 10 ? 1 : 0);
if (b0 != b1) if (b0 != b1)
{ {
@ -328,7 +314,7 @@ public class EntityElemental extends EntityDemon
double d6 = (this.waypointZ - this.posZ) / par7; double d6 = (this.waypointZ - this.posZ) / par7;
AxisAlignedBB axisalignedbb = this.boundingBox.copy(); AxisAlignedBB axisalignedbb = this.boundingBox.copy();
for (int i = 1; (double)i < par7; ++i) for (int i = 1; (double) i < par7; ++i)
{ {
axisalignedbb.offset(d4, d5, d6); axisalignedbb.offset(d4, d5, d6);
@ -356,7 +342,7 @@ public class EntityElemental extends EntityDemon
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -386,8 +372,7 @@ public class EntityElemental extends EntityDemon
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -413,8 +398,7 @@ public class EntityElemental extends EntityDemon
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -432,9 +416,9 @@ public class EntityElemental extends EntityDemon
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
this.dataWatcher.addObject(25, Byte.valueOf((byte)0)); this.dataWatcher.addObject(25, Byte.valueOf((byte) 0));
} }
/** /**
@ -525,8 +509,7 @@ public class EntityElemental extends EntityDemon
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -543,7 +526,7 @@ public class EntityElemental extends EntityDemon
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 6 : 7; int i = this.isTamed() ? 6 : 7;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -553,8 +536,7 @@ public class EntityElemental extends EntityDemon
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -591,11 +573,10 @@ public class EntityElemental extends EntityDemon
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -612,7 +593,7 @@ public class EntityElemental extends EntityDemon
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -627,11 +608,10 @@ public class EntityElemental extends EntityDemon
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -664,7 +644,7 @@ public class EntityElemental extends EntityDemon
{ {
if (par1EntityLivingBase instanceof EntityBoulderFist) if (par1EntityLivingBase instanceof EntityBoulderFist)
{ {
EntityBoulderFist entitywolf = (EntityBoulderFist)par1EntityLivingBase; EntityBoulderFist entitywolf = (EntityBoulderFist) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -672,10 +652,9 @@ public class EntityElemental extends EntityDemon
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
//return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).func_96122_a((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).func_110248_bS(); //return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).func_96122_a((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).func_110248_bS();
} } else
else
{ {
return false; return false;
} }
@ -704,30 +683,30 @@ public class EntityElemental extends EntityDemon
((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 100, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 100, 0));
} }
} }
public static Entity getClosestVulnerableMonsterToEntity(Entity par1Entity, double par2) public static Entity getClosestVulnerableMonsterToEntity(Entity par1Entity, double par2)
{ {
double d4 = -1.0D; double d4 = -1.0D;
double par1 = par1Entity.posX; double par1 = par1Entity.posX;
double par3 = par1Entity.posY; double par3 = par1Entity.posY;
double par5 = par1Entity.posZ; double par5 = par1Entity.posZ;
EntityLivingBase entityLiving = null; EntityLivingBase entityLiving = null;
World world = par1Entity.worldObj; World world = par1Entity.worldObj;
double range = Math.sqrt(par2); double range = Math.sqrt(par2);
double verticalRange = Math.sqrt(par2); double verticalRange = Math.sqrt(par2);
List<EntityLivingBase> entities = world.getEntitiesWithinAABB(EntityLivingBase.class, AxisAlignedBB.getBoundingBox(par1 - 0.5f, par3 - 0.5f, par5 - 0.5f, par1 + 0.5f, par3 + 0.5f, par5 + 0.5f).expand(range, verticalRange, range)); List<EntityLivingBase> entities = world.getEntitiesWithinAABB(EntityLivingBase.class, AxisAlignedBB.getBoundingBox(par1 - 0.5f, par3 - 0.5f, par5 - 0.5f, par1 + 0.5f, par3 + 0.5f, par5 + 0.5f).expand(range, verticalRange, range));
if(entities == null) if (entities == null)
{ {
return null; return null;
} }
for (int i = 0; i < entities.size(); ++i) for (int i = 0; i < entities.size(); ++i)
{ {
EntityLivingBase entityLiving1 = entities.get(i); EntityLivingBase entityLiving1 = entities.get(i);
if (!(entityLiving1 instanceof EntityPlayer && ((EntityPlayer)entityLiving1).capabilities.disableDamage) && entityLiving1.isEntityAlive()) if (!(entityLiving1 instanceof EntityPlayer && ((EntityPlayer) entityLiving1).capabilities.disableDamage) && entityLiving1.isEntityAlive())
{ {
double d5 = entityLiving1.getDistanceSq(par1, par3, par5); double d5 = entityLiving1.getDistanceSq(par1, par3, par5);
double d6 = par2; double d6 = par2;
@ -739,30 +718,30 @@ public class EntityElemental extends EntityDemon
if (entityLiving1.isInvisible()) if (entityLiving1.isInvisible())
{ {
float f = entityLiving1 instanceof EntityPlayer ? ((EntityPlayer)entityLiving1).getArmorVisibility() : 1.0f; float f = entityLiving1 instanceof EntityPlayer ? ((EntityPlayer) entityLiving1).getArmorVisibility() : 1.0f;
if (f < 0.1F) if (f < 0.1F)
{ {
f = 0.1F; f = 0.1F;
} }
d6 *= (double)(0.7F * f); d6 *= (double) (0.7F * f);
} }
if ((par2 < 0.0D || d5 < d6 * d6) && (d4 == -1.0D || d5 < d4)) if ((par2 < 0.0D || d5 < d6 * d6) && (d4 == -1.0D || d5 < d4))
{ {
if(par1Entity != entityLiving1) if (par1Entity != entityLiving1)
{ {
d4 = d5; d4 = d5;
entityLiving = entityLiving1; entityLiving = entityLiving1;
} }
} }
} }
} }
return entityLiving; return entityLiving;
} }
@Override @Override
public int getTotalArmorValue() //TODO public int getTotalArmorValue() //TODO
{ {

View file

@ -1,64 +1,17 @@
package WayofTime.alchemicalWizardry.common.entity.mob; package WayofTime.alchemicalWizardry.common.entity.mob;
import java.util.Calendar;
import java.util.UUID;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile;
import cpw.mods.fml.common.network.Player; import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.enchantment.Enchantment; import net.minecraft.entity.*;
import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.ai.*;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityCreature;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.EntityLivingData;
import net.minecraft.entity.EntityOwnable;
import net.minecraft.entity.EnumCreatureAttribute;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIBeg;
import net.minecraft.entity.ai.EntityAIBreakDoor;
import net.minecraft.entity.ai.EntityAIFleeSun;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILeapAtTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIMate;
import net.minecraft.entity.ai.EntityAIMoveThroughVillage;
import net.minecraft.entity.ai.EntityAIMoveTowardsRestriction;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAIPanic;
import net.minecraft.entity.ai.EntityAIRestrictSun;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAITargetNonTamed;
import net.minecraft.entity.ai.EntityAITempt;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.ai.attributes.Attribute;
import net.minecraft.entity.ai.attributes.AttributeInstance;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.ai.attributes.RangedAttribute;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.monster.EntityMob;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntitySheep;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityVillager;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -67,13 +20,8 @@ import net.minecraft.item.ItemFood;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity; import net.minecraft.pathfinding.PathEntity;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.stats.AchievementList;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraft.world.WorldProviderHell;
public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob, Player public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob, Player
{ {
@ -125,8 +73,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -152,8 +99,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -171,8 +117,8 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -190,7 +136,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -289,8 +235,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -307,7 +252,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 4 : 2; int i = this.isTamed() ? 4 : 2;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -317,8 +262,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -337,7 +281,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -346,11 +290,11 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -364,15 +308,14 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -381,7 +324,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -389,18 +332,17 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -437,11 +379,10 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -458,7 +399,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -473,11 +414,10 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -509,7 +449,7 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
{ {
if (par1EntityLivingBase instanceof EntityFallenAngel) if (par1EntityLivingBase instanceof EntityFallenAngel)
{ {
EntityFallenAngel entitywolf = (EntityFallenAngel)par1EntityLivingBase; EntityFallenAngel entitywolf = (EntityFallenAngel) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -517,9 +457,8 @@ public class EntityFallenAngel extends EntityDemon implements IRangedAttackMob,
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -4,11 +4,8 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.monster.IMob; import net.minecraft.entity.monster.IMob;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player;
public class EntityFireElemental extends EntityElemental implements IMob public class EntityFireElemental extends EntityElemental implements IMob
{ {
@ -22,8 +19,8 @@ public class EntityFireElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityLivingBase) if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).setFire(10); ((EntityLivingBase) target).setFire(10);
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
} }
} }
} }

View file

@ -4,13 +4,10 @@ import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.monster.IMob; import net.minecraft.entity.monster.IMob;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player;
public class EntityHolyElemental extends EntityElemental implements IMob public class EntityHolyElemental extends EntityElemental implements IMob
{ {
@ -23,9 +20,9 @@ public class EntityHolyElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityLivingBase) if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).attackEntityFrom(DamageSource.causeMobDamage(this), 15); ((EntityLivingBase) target).attackEntityFrom(DamageSource.causeMobDamage(this), 15);
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
((EntityLivingBase)target).addPotionEffect(new PotionEffect(Potion.poison.id, 100, 1)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(Potion.poison.id, 100, 1));
} }
} }
} }

View file

@ -2,24 +2,12 @@ package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.IceProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.IceProjectile;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.entity.Entity; import net.minecraft.entity.*;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.ai.*;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
@ -85,8 +73,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -112,8 +99,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -131,8 +117,8 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -150,7 +136,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -226,11 +212,11 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
if (worldObj.rand.nextFloat() < 0.25f) if (worldObj.rand.nextFloat() < 0.25f)
{ {
int blockID = worldObj.getBlockId((int)posX + i, (int)posY + j, (int)posZ + k); int blockID = worldObj.getBlockId((int) posX + i, (int) posY + j, (int) posZ + k);
if (blockID == Block.waterStill.blockID || blockID == Block.waterMoving.blockID) if (blockID == Block.waterStill.blockID || blockID == Block.waterMoving.blockID)
{ {
worldObj.setBlock((int)posX + i, (int)posY + j, (int)posZ + k, Block.ice.blockID); worldObj.setBlock((int) posX + i, (int) posY + j, (int) posZ + k, Block.ice.blockID);
} }
} }
} }
@ -268,8 +254,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -286,7 +271,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 4 : 2; int i = this.isTamed() ? 4 : 2;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -296,8 +281,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -316,7 +300,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -325,11 +309,11 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -343,15 +327,14 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -360,7 +343,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -368,18 +351,17 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -416,11 +398,10 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -437,7 +418,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -452,11 +433,10 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -488,7 +468,7 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{ {
if (par1EntityLivingBase instanceof EntityIceDemon) if (par1EntityLivingBase instanceof EntityIceDemon)
{ {
EntityIceDemon entitywolf = (EntityIceDemon)par1EntityLivingBase; EntityIceDemon entitywolf = (EntityIceDemon) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -496,9 +476,8 @@ public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -2,30 +2,17 @@ package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.client.model.ModelIronGolem;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack; import net.minecraft.entity.ai.*;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAITargetNonTamed;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntitySheep;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -36,7 +23,6 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity; import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.Player;
public class EntityLowerGuardian extends EntityDemon public class EntityLowerGuardian extends EntityDemon
{ {
@ -84,8 +70,7 @@ public class EntityLowerGuardian extends EntityDemon
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -111,8 +96,7 @@ public class EntityLowerGuardian extends EntityDemon
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -130,8 +114,8 @@ public class EntityLowerGuardian extends EntityDemon
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -149,8 +133,8 @@ public class EntityLowerGuardian extends EntityDemon
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
par1NBTTagCompound.setByte("attackTimer", (byte)attackTimer); par1NBTTagCompound.setByte("attackTimer", (byte) attackTimer);
par1NBTTagCompound.setBoolean("isAggro", this.isAggro()); par1NBTTagCompound.setBoolean("isAggro", this.isAggro());
} }
@ -260,8 +244,7 @@ public class EntityLowerGuardian extends EntityDemon
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -278,8 +261,8 @@ public class EntityLowerGuardian extends EntityDemon
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
this.attackTimer = 10; this.attackTimer = 10;
this.worldObj.setEntityState(this, (byte)4); this.worldObj.setEntityState(this, (byte) 4);
boolean flag = par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)(7 + this.rand.nextInt(15))); boolean flag = par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) (7 + this.rand.nextInt(15)));
if (flag) if (flag)
{ {
@ -297,8 +280,7 @@ public class EntityLowerGuardian extends EntityDemon
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -317,7 +299,7 @@ public class EntityLowerGuardian extends EntityDemon
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectInt(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectInt(18) < this.maxTamedHealth)
{ {
@ -326,11 +308,11 @@ public class EntityLowerGuardian extends EntityDemon
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -344,15 +326,14 @@ public class EntityLowerGuardian extends EntityDemon
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -361,7 +342,7 @@ public class EntityLowerGuardian extends EntityDemon
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -369,18 +350,17 @@ public class EntityLowerGuardian extends EntityDemon
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -417,11 +397,10 @@ public class EntityLowerGuardian extends EntityDemon
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -438,7 +417,7 @@ public class EntityLowerGuardian extends EntityDemon
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -453,11 +432,10 @@ public class EntityLowerGuardian extends EntityDemon
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -489,7 +467,7 @@ public class EntityLowerGuardian extends EntityDemon
{ {
if (par1EntityLivingBase instanceof EntityLowerGuardian) if (par1EntityLivingBase instanceof EntityLowerGuardian)
{ {
EntityLowerGuardian entitywolf = (EntityLowerGuardian)par1EntityLivingBase; EntityLowerGuardian entitywolf = (EntityLowerGuardian) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -497,9 +475,8 @@ public class EntityLowerGuardian extends EntityDemon
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -2,22 +2,14 @@ package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.HolyProjectile;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.EntityAgeable;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIAttackOnCollide; import net.minecraft.entity.ai.*;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILeapAtTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
@ -83,8 +75,7 @@ public class EntityShade extends EntityDemon
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -110,8 +101,7 @@ public class EntityShade extends EntityDemon
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -129,8 +119,8 @@ public class EntityShade extends EntityDemon
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -148,7 +138,7 @@ public class EntityShade extends EntityDemon
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -247,8 +237,7 @@ public class EntityShade extends EntityDemon
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -265,7 +254,7 @@ public class EntityShade extends EntityDemon
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 6 : 7; int i = this.isTamed() ? 6 : 7;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -275,8 +264,7 @@ public class EntityShade extends EntityDemon
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -295,7 +283,7 @@ public class EntityShade extends EntityDemon
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -304,11 +292,11 @@ public class EntityShade extends EntityDemon
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -316,21 +304,20 @@ public class EntityShade extends EntityDemon
} }
} }
if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack)) if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack))
{ {
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -339,7 +326,7 @@ public class EntityShade extends EntityDemon
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -347,18 +334,17 @@ public class EntityShade extends EntityDemon
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -395,11 +381,10 @@ public class EntityShade extends EntityDemon
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -416,7 +401,7 @@ public class EntityShade extends EntityDemon
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -431,11 +416,10 @@ public class EntityShade extends EntityDemon
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -467,7 +451,7 @@ public class EntityShade extends EntityDemon
{ {
if (par1EntityLivingBase instanceof EntityBoulderFist) if (par1EntityLivingBase instanceof EntityBoulderFist)
{ {
EntityBoulderFist entitywolf = (EntityBoulderFist)par1EntityLivingBase; EntityBoulderFist entitywolf = (EntityBoulderFist) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -475,9 +459,8 @@ public class EntityShade extends EntityDemon
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -19,9 +19,9 @@ public class EntityShadeElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityLivingBase) if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).addPotionEffect(new PotionEffect(Potion.blindness.id, 100, 1)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(Potion.blindness.id, 100, 1));
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
((EntityLivingBase)target).addPotionEffect(new PotionEffect(Potion.nightVision.id, 100, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(Potion.nightVision.id, 100, 0));
} }
} }
} }

View file

@ -2,28 +2,16 @@ package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.MudProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.MudProjectile;
import cpw.mods.fml.common.network.Player;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.entity.Entity; import net.minecraft.entity.*;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.ai.*;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -34,7 +22,6 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity; import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.Player;
public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player
{ {
@ -86,8 +73,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -113,8 +99,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -132,8 +117,8 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -151,7 +136,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -249,8 +234,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -267,7 +251,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 4 : 2; int i = this.isTamed() ? 4 : 2;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -277,8 +261,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -297,7 +280,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -306,11 +289,11 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -318,21 +301,20 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
} }
} }
if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack)) if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack))
{ {
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -341,7 +323,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -349,18 +331,17 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -397,11 +378,10 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -418,7 +398,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -433,11 +413,10 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -469,7 +448,7 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
{ {
if (par1EntityLivingBase instanceof EntitySmallEarthGolem) if (par1EntityLivingBase instanceof EntitySmallEarthGolem)
{ {
EntitySmallEarthGolem entitywolf = (EntitySmallEarthGolem)par1EntityLivingBase; EntitySmallEarthGolem entitywolf = (EntitySmallEarthGolem) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -477,9 +456,8 @@ public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackM
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }

View file

@ -18,8 +18,8 @@ public class EntityWaterElemental extends EntityElemental implements IMob
{ {
if (target instanceof EntityLivingBase) if (target instanceof EntityLivingBase)
{ {
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 100, 2)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 100, 2));
((EntityLivingBase)target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0)); ((EntityLivingBase) target).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionInhibit.id, 150, 0));
} }
} }
} }

View file

@ -2,29 +2,16 @@ package WayofTime.alchemicalWizardry.common.entity.mob;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.EntityAITargetAggro; import WayofTime.alchemicalWizardry.common.EntityAITargetAggro;
import WayofTime.alchemicalWizardry.common.ModItems;
import WayofTime.alchemicalWizardry.common.entity.projectile.FireProjectile; import WayofTime.alchemicalWizardry.common.entity.projectile.FireProjectile;
import cpw.mods.fml.common.network.Player;
import net.minecraft.block.BlockColored; import net.minecraft.block.BlockColored;
import net.minecraft.entity.Entity; import net.minecraft.entity.*;
import net.minecraft.entity.EntityAgeable; import net.minecraft.entity.ai.*;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IRangedAttackMob;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.EntityAIArrowAttack;
import net.minecraft.entity.ai.EntityAIAttackOnCollide;
import net.minecraft.entity.ai.EntityAIFollowOwner;
import net.minecraft.entity.ai.EntityAIHurtByTarget;
import net.minecraft.entity.ai.EntityAILookIdle;
import net.minecraft.entity.ai.EntityAIOwnerHurtByTarget;
import net.minecraft.entity.ai.EntityAIOwnerHurtTarget;
import net.minecraft.entity.ai.EntityAISwimming;
import net.minecraft.entity.ai.EntityAIWander;
import net.minecraft.entity.ai.EntityAIWatchClosest;
import net.minecraft.entity.monster.EntityBlaze;
import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.passive.EntityAnimal; import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.entity.passive.EntityHorse; import net.minecraft.entity.passive.EntityHorse;
import net.minecraft.entity.passive.EntityTameable;
import net.minecraft.entity.passive.EntityWolf; import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.entity.projectile.EntityArrow;
@ -35,7 +22,6 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.pathfinding.PathEntity; import net.minecraft.pathfinding.PathEntity;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.Player;
public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player
{ {
@ -87,8 +73,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (this.isTamed()) if (this.isTamed())
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -114,8 +99,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (par1EntityLivingBase == null) if (par1EntityLivingBase == null)
{ {
this.setAngry(false); this.setAngry(false);
} } else if (!this.isTamed())
else if (!this.isTamed())
{ {
this.setAngry(true); this.setAngry(true);
} }
@ -133,8 +117,8 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
super.entityInit(); super.entityInit();
this.dataWatcher.addObject(18, new Float(this.getHealth())); this.dataWatcher.addObject(18, new Float(this.getHealth()));
this.dataWatcher.addObject(19, new Byte((byte)0)); this.dataWatcher.addObject(19, new Byte((byte) 0));
this.dataWatcher.addObject(20, new Byte((byte)BlockColored.getBlockFromDye(1))); this.dataWatcher.addObject(20, new Byte((byte) BlockColored.getBlockFromDye(1)));
} }
/** /**
@ -152,7 +136,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
super.writeEntityToNBT(par1NBTTagCompound); super.writeEntityToNBT(par1NBTTagCompound);
par1NBTTagCompound.setBoolean("Angry", this.isAngry()); par1NBTTagCompound.setBoolean("Angry", this.isAngry());
par1NBTTagCompound.setByte("CollarColor", (byte)this.getCollarColor()); par1NBTTagCompound.setByte("CollarColor", (byte) this.getCollarColor());
} }
/** /**
@ -194,6 +178,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
return "mob.blaze.death"; return "mob.blaze.death";
} }
/** /**
* Returns the volume for the sounds this mob makes. * Returns the volume for the sounds this mob makes.
*/ */
@ -249,8 +234,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (this.isEntityInvulnerable()) if (this.isEntityInvulnerable())
{ {
return false; return false;
} } else
else
{ {
Entity entity = par1DamageSource.getEntity(); Entity entity = par1DamageSource.getEntity();
this.aiSit.setSitting(false); this.aiSit.setSitting(false);
@ -267,7 +251,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
public boolean attackEntityAsMob(Entity par1Entity) public boolean attackEntityAsMob(Entity par1Entity)
{ {
int i = this.isTamed() ? 4 : 2; int i = this.isTamed() ? 4 : 2;
return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float)i); return par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this), (float) i);
} }
public void setTamed(boolean par1) public void setTamed(boolean par1)
@ -277,8 +261,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (par1) if (par1)
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxTamedHealth);
} } else
else
{ {
this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth); this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setAttribute(this.maxUntamedHealth);
} }
@ -297,7 +280,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
if (Item.itemsList[itemstack.itemID] instanceof ItemFood) if (Item.itemsList[itemstack.itemID] instanceof ItemFood)
{ {
ItemFood itemfood = (ItemFood)Item.itemsList[itemstack.itemID]; ItemFood itemfood = (ItemFood) Item.itemsList[itemstack.itemID];
if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth) if (itemfood.isWolfsFavoriteMeat() && this.dataWatcher.getWatchableObjectFloat(18) < this.maxTamedHealth)
{ {
@ -306,11 +289,11 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
--itemstack.stackSize; --itemstack.stackSize;
} }
this.heal((float)itemfood.getHealAmount()); this.heal((float) itemfood.getHealAmount());
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
return true; return true;
@ -318,21 +301,20 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
} }
} }
if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack)) if (par1EntityPlayer.getCommandSenderName().equalsIgnoreCase(this.getOwnerName()) && !this.isBreedingItem(itemstack))
{ {
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
{ {
this.aiSit.setSitting(!this.isSitting()); this.aiSit.setSitting(!this.isSitting());
this.isJumping = false; this.isJumping = false;
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setTarget((Entity)null); this.setTarget((Entity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
} }
this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting()); this.sendSittingMessageToPlayer(par1EntityPlayer, !this.isSitting());
} }
} } else if (itemstack != null && itemstack.itemID == ModItems.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
else if (itemstack != null && itemstack.itemID == AlchemicalWizardry.weakBloodOrb.itemID && !this.isAngry() && !this.isAggro())
{ {
if (!par1EntityPlayer.capabilities.isCreativeMode) if (!par1EntityPlayer.capabilities.isCreativeMode)
{ {
@ -341,7 +323,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (itemstack.stackSize <= 0) if (itemstack.stackSize <= 0)
{ {
par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack)null); par1EntityPlayer.inventory.setInventorySlotContents(par1EntityPlayer.inventory.currentItem, (ItemStack) null);
} }
if (!this.worldObj.isRemote) if (!this.worldObj.isRemote)
@ -349,18 +331,17 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (this.rand.nextInt(1) == 0) if (this.rand.nextInt(1) == 0)
{ {
this.setTamed(true); this.setTamed(true);
this.setPathToEntity((PathEntity)null); this.setPathToEntity((PathEntity) null);
this.setAttackTarget((EntityLivingBase)null); this.setAttackTarget((EntityLivingBase) null);
this.aiSit.setSitting(true); this.aiSit.setSitting(true);
this.setHealth(this.maxTamedHealth); this.setHealth(this.maxTamedHealth);
this.setOwner(par1EntityPlayer.getCommandSenderName()); this.setOwner(par1EntityPlayer.getCommandSenderName());
this.playTameEffect(true); this.playTameEffect(true);
this.worldObj.setEntityState(this, (byte)7); this.worldObj.setEntityState(this, (byte) 7);
} } else
else
{ {
this.playTameEffect(false); this.playTameEffect(false);
this.worldObj.setEntityState(this, (byte)6); this.worldObj.setEntityState(this, (byte) 6);
} }
} }
@ -397,11 +378,10 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 | 2))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 | 2)));
} } else
else
{ {
this.dataWatcher.updateObject(16, Byte.valueOf((byte)(b0 & -3))); this.dataWatcher.updateObject(16, Byte.valueOf((byte) (b0 & -3)));
} }
} }
@ -418,7 +398,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
*/ */
public void setCollarColor(int par1) public void setCollarColor(int par1)
{ {
this.dataWatcher.updateObject(20, Byte.valueOf((byte)(par1 & 15))); this.dataWatcher.updateObject(20, Byte.valueOf((byte) (par1 & 15)));
} }
/** /**
@ -433,11 +413,10 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
if (par1) if (par1)
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)1)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 1));
} } else
else
{ {
this.dataWatcher.updateObject(19, Byte.valueOf((byte)0)); this.dataWatcher.updateObject(19, Byte.valueOf((byte) 0));
} }
} }
@ -469,7 +448,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
{ {
if (par1EntityLivingBase instanceof EntityWingedFireDemon) if (par1EntityLivingBase instanceof EntityWingedFireDemon)
{ {
EntityWingedFireDemon entitywolf = (EntityWingedFireDemon)par1EntityLivingBase; EntityWingedFireDemon entitywolf = (EntityWingedFireDemon) par1EntityLivingBase;
if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase) if (entitywolf.isTamed() && entitywolf.func_130012_q() == par2EntityLivingBase)
{ {
@ -477,9 +456,8 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
} }
} }
return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer)par2EntityLivingBase).canAttackPlayer((EntityPlayer)par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse)par1EntityLivingBase).isTame(); return par1EntityLivingBase instanceof EntityPlayer && par2EntityLivingBase instanceof EntityPlayer && !((EntityPlayer) par2EntityLivingBase).canAttackPlayer((EntityPlayer) par1EntityLivingBase) ? false : !(par1EntityLivingBase instanceof EntityHorse) || !((EntityHorse) par1EntityLivingBase).isTame();
} } else
else
{ {
return false; return false;
} }
@ -498,7 +476,7 @@ public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackM
double xCoord; double xCoord;
double yCoord; double yCoord;
double zCoord; double zCoord;
this.worldObj.playAuxSFXAtEntity((EntityPlayer)null, 1009, (int)this.posX, (int)this.posY, (int)this.posZ, 0); this.worldObj.playAuxSFXAtEntity((EntityPlayer) null, 1009, (int) this.posX, (int) this.posY, (int) this.posZ, 0);
FireProjectile hol = new FireProjectile(worldObj, this, par1EntityLivingBase, 1.8f, 0f, 20, 600); FireProjectile hol = new FireProjectile(worldObj, this, par1EntityLivingBase, 1.8f, 0f, 20, 600);
this.worldObj.spawnEntityInWorld(hol); this.worldObj.spawnEntityInWorld(hol);
} }

View file

@ -1,8 +1,7 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import java.util.Iterator; import cpw.mods.fml.relauncher.Side;
import java.util.List; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
@ -11,17 +10,11 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.*;
import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player; import java.util.Iterator;
import cpw.mods.fml.relauncher.Side; import java.util.List;
import cpw.mods.fml.relauncher.SideOnly;
//Shamelessly ripped off from x3n0ph0b3 //Shamelessly ripped off from x3n0ph0b3
public class EnergyBlastProjectile extends Entity implements IProjectile public class EnergyBlastProjectile extends Entity implements IProjectile
@ -32,7 +25,9 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
protected int inTile = 0; protected int inTile = 0;
protected int inData = 0; protected int inData = 0;
protected boolean inGround = false; protected boolean inGround = false;
/** The owner of this arrow. */ /**
* The owner of this arrow.
*/
public EntityLivingBase shootingEntity; public EntityLivingBase shootingEntity;
protected int ticksInAir = 0; protected int ticksInAir = 0;
protected int maxTicksInAir = 600; protected int maxTicksInAir = 600;
@ -61,14 +56,14 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
float par3 = 0.8F; float par3 = 0.8F;
this.setSize(0.5F, 0.5F); this.setSize(0.5F, 0.5F);
this.setLocationAndAngles(par2EntityPlayer.posX, par2EntityPlayer.posY + par2EntityPlayer.getEyeHeight(), par2EntityPlayer.posZ, par2EntityPlayer.rotationYaw, par2EntityPlayer.rotationPitch); this.setLocationAndAngles(par2EntityPlayer.posX, par2EntityPlayer.posY + par2EntityPlayer.getEyeHeight(), par2EntityPlayer.posZ, par2EntityPlayer.rotationYaw, par2EntityPlayer.rotationPitch);
posX -= MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posX -= MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
posY -= 0.2D; posY -= 0.2D;
posZ -= MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posZ -= MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
this.setPosition(posX, posY, posZ); this.setPosition(posX, posY, posZ);
yOffset = 0.0F; yOffset = 0.0F;
motionX = -MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionX = -MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionZ = MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionZ = MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionY = -MathHelper.sin(rotationPitch / 180.0F * (float)Math.PI); motionY = -MathHelper.sin(rotationPitch / 180.0F * (float) Math.PI);
this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F); this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F);
this.projectileDamage = damage; this.projectileDamage = damage;
this.maxTicksInAir = 600; this.maxTicksInAir = 600;
@ -81,14 +76,14 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
float par3 = 0.8F; float par3 = 0.8F;
this.setSize(0.5F, 0.5F); this.setSize(0.5F, 0.5F);
this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch); this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch);
posX -= MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posX -= MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
posY -= 0.2D; posY -= 0.2D;
posZ -= MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posZ -= MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
this.setPosition(posX, posY, posZ); this.setPosition(posX, posY, posZ);
yOffset = 0.0F; yOffset = 0.0F;
motionX = -MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionX = -MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionZ = MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionZ = MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionY = -MathHelper.sin(rotationPitch / 180.0F * (float)Math.PI); motionY = -MathHelper.sin(rotationPitch / 180.0F * (float) Math.PI);
this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F); this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F);
this.projectileDamage = damage; this.projectileDamage = damage;
this.maxTicksInAir = maxTicksInAir; this.maxTicksInAir = maxTicksInAir;
@ -99,21 +94,21 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
super(par1World); super(par1World);
this.renderDistanceWeight = 10.0D; this.renderDistanceWeight = 10.0D;
this.shootingEntity = par2EntityLivingBase; this.shootingEntity = par2EntityLivingBase;
this.posY = par2EntityLivingBase.posY + (double)par2EntityLivingBase.getEyeHeight() - 0.10000000149011612D; this.posY = par2EntityLivingBase.posY + (double) par2EntityLivingBase.getEyeHeight() - 0.10000000149011612D;
double d0 = par3EntityLivingBase.posX - par2EntityLivingBase.posX; double d0 = par3EntityLivingBase.posX - par2EntityLivingBase.posX;
double d1 = par3EntityLivingBase.boundingBox.minY + (double)(par3EntityLivingBase.height / 1.5F) - this.posY; double d1 = par3EntityLivingBase.boundingBox.minY + (double) (par3EntityLivingBase.height / 1.5F) - this.posY;
double d2 = par3EntityLivingBase.posZ - par2EntityLivingBase.posZ; double d2 = par3EntityLivingBase.posZ - par2EntityLivingBase.posZ;
double d3 = (double)MathHelper.sqrt_double(d0 * d0 + d2 * d2); double d3 = (double) MathHelper.sqrt_double(d0 * d0 + d2 * d2);
if (d3 >= 1.0E-7D) if (d3 >= 1.0E-7D)
{ {
float f2 = (float)(Math.atan2(d2, d0) * 180.0D / Math.PI) - 90.0F; float f2 = (float) (Math.atan2(d2, d0) * 180.0D / Math.PI) - 90.0F;
float f3 = (float)(-(Math.atan2(d1, d3) * 180.0D / Math.PI)); float f3 = (float) (-(Math.atan2(d1, d3) * 180.0D / Math.PI));
double d4 = d0 / d3; double d4 = d0 / d3;
double d5 = d2 / d3; double d5 = d2 / d3;
this.setLocationAndAngles(par2EntityLivingBase.posX + d4, this.posY, par2EntityLivingBase.posZ + d5, f2, f3); this.setLocationAndAngles(par2EntityLivingBase.posX + d4, this.posY, par2EntityLivingBase.posZ + d5, f2, f3);
this.yOffset = 0.0F; this.yOffset = 0.0F;
float f4 = (float)d3 * 0.2F; float f4 = (float) d3 * 0.2F;
this.setThrowableHeading(d0, d1, d2, par4, par5); this.setThrowableHeading(d0, d1, d2, par4, par5);
} }
@ -124,7 +119,7 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
@Override @Override
protected void entityInit() protected void entityInit()
{ {
dataWatcher.addObject(16, Byte.valueOf((byte)0)); dataWatcher.addObject(16, Byte.valueOf((byte) 0));
} }
/** /**
@ -148,8 +143,8 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
motionY = var3; motionY = var3;
motionZ = var5; motionZ = var5;
float var10 = MathHelper.sqrt_double(var1 * var1 + var5 * var5); float var10 = MathHelper.sqrt_double(var1 * var1 + var5 * var5);
prevRotationYaw = rotationYaw = (float)(Math.atan2(var1, var5) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(var1, var5) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(var3, var10) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(var3, var10) * 180.0D / Math.PI);
} }
@Override @Override
@ -178,8 +173,8 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F) if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F)
{ {
float var7 = MathHelper.sqrt_double(par1 * par1 + par5 * par5); float var7 = MathHelper.sqrt_double(par1 * par1 + par5 * par5);
prevRotationYaw = rotationYaw = (float)(Math.atan2(par1, par5) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(par1, par5) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(par3, var7) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(par3, var7) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch; prevRotationPitch = rotationPitch;
prevRotationYaw = rotationYaw; prevRotationYaw = rotationYaw;
this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch); this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch);
@ -208,7 +203,7 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
while (i.hasNext()) while (i.hasNext())
{ {
EntityPlayer e = (EntityPlayer)i.next(); EntityPlayer e = (EntityPlayer) i.next();
double distance = e.getDistanceToEntity(this); double distance = e.getDistanceToEntity(this);
if (distance < closestDistance) if (distance < closestDistance)
@ -226,8 +221,8 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F) if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F)
{ {
float var1 = MathHelper.sqrt_double(motionX * motionX + motionZ * motionZ); float var1 = MathHelper.sqrt_double(motionX * motionX + motionZ * motionZ);
prevRotationYaw = rotationYaw = (float)(Math.atan2(motionX, motionZ) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(motionX, motionZ) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(motionY, var1) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(motionY, var1) * 180.0D / Math.PI);
} }
int var16 = worldObj.getBlockId(xTile, yTile, zTile); int var16 = worldObj.getBlockId(xTile, yTile, zTile);
@ -253,8 +248,7 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
// this.groundImpact(); // this.groundImpact();
// this.setDead(); // this.setDead();
} }
} } else
else
{ {
++ticksInAir; ++ticksInAir;
@ -286,7 +280,7 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
while (var9.hasNext()) while (var9.hasNext())
{ {
Entity var10 = (Entity)var9.next(); Entity var10 = (Entity) var9.next();
if (var10.canBeCollidedWith() && (var10 != shootingEntity || ticksInAir >= 5)) if (var10.canBeCollidedWith() && (var10 != shootingEntity || ticksInAir >= 5))
{ {
@ -343,12 +337,12 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
@Override @Override
public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound) public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
{ {
par1NBTTagCompound.setShort("xTile", (short)xTile); par1NBTTagCompound.setShort("xTile", (short) xTile);
par1NBTTagCompound.setShort("yTile", (short)yTile); par1NBTTagCompound.setShort("yTile", (short) yTile);
par1NBTTagCompound.setShort("zTile", (short)zTile); par1NBTTagCompound.setShort("zTile", (short) zTile);
par1NBTTagCompound.setByte("inTile", (byte)inTile); par1NBTTagCompound.setByte("inTile", (byte) inTile);
par1NBTTagCompound.setByte("inData", (byte)inData); par1NBTTagCompound.setByte("inData", (byte) inData);
par1NBTTagCompound.setByte("inGround", (byte)(inGround ? 1 : 0)); par1NBTTagCompound.setByte("inGround", (byte) (inGround ? 1 : 0));
par1NBTTagCompound.setInteger("ticksInAir", ticksInAir); par1NBTTagCompound.setInteger("ticksInAir", ticksInAir);
par1NBTTagCompound.setInteger("maxTicksInAir", maxTicksInAir); par1NBTTagCompound.setInteger("maxTicksInAir", maxTicksInAir);
par1NBTTagCompound.setInteger("projectileDamage", this.projectileDamage); par1NBTTagCompound.setInteger("projectileDamage", this.projectileDamage);
@ -414,11 +408,10 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
if (par1) if (par1)
{ {
dataWatcher.updateObject(16, Byte.valueOf((byte)(var2 | 1))); dataWatcher.updateObject(16, Byte.valueOf((byte) (var2 | 1)));
} } else
else
{ {
dataWatcher.updateObject(16, Byte.valueOf((byte)(var2 & -2))); dataWatcher.updateObject(16, Byte.valueOf((byte) (var2 & -2)));
} }
} }
@ -442,10 +435,9 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
worldObj.createExplosion(shootingEntity, this.posX, this.posY, this.posZ, (float)(0.1), true); worldObj.createExplosion(shootingEntity, this.posX, this.posY, this.posZ, (float) (0.1), true);
this.setDead(); this.setDead();
} }
} }
@ -456,17 +448,16 @@ public class EnergyBlastProjectile extends Entity implements IProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
{ {
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60, 2)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60, 2));
} }
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
worldObj.createExplosion(shootingEntity, this.posX, this.posY, this.posZ, (float)(0.1), true); worldObj.createExplosion(shootingEntity, this.posX, this.posY, this.posZ, (float) (0.1), true);
} }
spawnHitParticles("magicCrit", 8); spawnHitParticles("magicCrit", 8);

View file

@ -1,6 +1,6 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.ModBlocks;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
@ -35,7 +35,7 @@ public class EntityBloodLightProjectile extends EnergyBlastProjectile
public EntityBloodLightProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir) public EntityBloodLightProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir)
{ {
super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir); super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir);
} }
@Override @Override
@ -55,8 +55,7 @@ public class EntityBloodLightProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
int sideHit = mop.sideHit; int sideHit = mop.sideHit;
int blockX = mop.blockX; int blockX = mop.blockX;
@ -65,32 +64,32 @@ public class EntityBloodLightProjectile extends EnergyBlastProjectile
if (sideHit == 0 && this.worldObj.isAirBlock(blockX, blockY - 1, blockZ)) if (sideHit == 0 && this.worldObj.isAirBlock(blockX, blockY - 1, blockZ))
{ {
this.worldObj.setBlock(blockX, blockY - 1, blockZ, AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX, blockY - 1, blockZ, ModBlocks.blockBloodLight.blockID);
} }
if (sideHit == 1 && this.worldObj.isAirBlock(blockX, blockY + 1, blockZ)) if (sideHit == 1 && this.worldObj.isAirBlock(blockX, blockY + 1, blockZ))
{ {
this.worldObj.setBlock(blockX, blockY + 1, blockZ, AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX, blockY + 1, blockZ, ModBlocks.blockBloodLight.blockID);
} }
if (sideHit == 2 && this.worldObj.isAirBlock(blockX, blockY, blockZ - 1)) if (sideHit == 2 && this.worldObj.isAirBlock(blockX, blockY, blockZ - 1))
{ {
this.worldObj.setBlock(blockX, blockY, blockZ - 1 , AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX, blockY, blockZ - 1, ModBlocks.blockBloodLight.blockID);
} }
if (sideHit == 3 && this.worldObj.isAirBlock(blockX, blockY, blockZ + 1)) if (sideHit == 3 && this.worldObj.isAirBlock(blockX, blockY, blockZ + 1))
{ {
this.worldObj.setBlock(blockX, blockY, blockZ + 1 , AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX, blockY, blockZ + 1, ModBlocks.blockBloodLight.blockID);
} }
if (sideHit == 4 && this.worldObj.isAirBlock(blockX - 1, blockY, blockZ)) if (sideHit == 4 && this.worldObj.isAirBlock(blockX - 1, blockY, blockZ))
{ {
this.worldObj.setBlock(blockX - 1, blockY, blockZ, AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX - 1, blockY, blockZ, ModBlocks.blockBloodLight.blockID);
} }
if (sideHit == 5 && this.worldObj.isAirBlock(blockX + 1, blockY, blockZ)) if (sideHit == 5 && this.worldObj.isAirBlock(blockX + 1, blockY, blockZ))
{ {
this.worldObj.setBlock(blockX + 1, blockY, blockZ, AlchemicalWizardry.blockBloodLight.blockID); this.worldObj.setBlock(blockX + 1, blockY, blockZ, ModBlocks.blockBloodLight.blockID);
} }
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
@ -106,33 +105,31 @@ public class EntityBloodLightProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
{ {
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2)); //((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
((EntityLivingBase)mop).setFire(50); ((EntityLivingBase) mop).setFire(50);
((EntityLivingBase)mop).setRevengeTarget(shootingEntity); ((EntityLivingBase) mop).setRevengeTarget(shootingEntity);
if (((EntityLivingBase)mop).isPotionActive(Potion.fireResistance) || ((EntityLivingBase)mop).isImmuneToFire()) if (((EntityLivingBase) mop).isPotionActive(Potion.fireResistance) || ((EntityLivingBase) mop).isImmuneToFire())
{ {
((EntityLivingBase)mop).attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); ((EntityLivingBase) mop).attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
((EntityLivingBase)mop).hurtResistantTime = 0; ((EntityLivingBase) mop).hurtResistantTime = 0;
} }
} }
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
} }
if (worldObj.isAirBlock((int)this.posX, (int)this.posY, (int)this.posZ)) if (worldObj.isAirBlock((int) this.posX, (int) this.posY, (int) this.posZ))
{ {
worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ, Block.fire.blockID); worldObj.setBlock((int) this.posX, (int) this.posY, (int) this.posZ, Block.fire.blockID);
} }
spawnHitParticles("magicCrit", 8); spawnHitParticles("magicCrit", 8);

View file

@ -1,14 +1,9 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
@ -36,7 +31,7 @@ public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
public EntityEnergyBazookaMainProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir) public EntityEnergyBazookaMainProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir)
{ {
super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir); super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir);
} }
@Override @Override
@ -56,10 +51,9 @@ public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
worldObj.createExplosion(this.shootingEntity, this.posX, this.posY, this.posZ, (float)(5.0f), false); worldObj.createExplosion(this.shootingEntity, this.posX, this.posY, this.posZ, (float) (5.0f), false);
this.spawnSecondaryProjectiles(); this.spawnSecondaryProjectiles();
} }
@ -73,8 +67,7 @@ public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -82,7 +75,7 @@ public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
spawnSecondaryProjectiles(); spawnSecondaryProjectiles();
} }
worldObj.createExplosion(this.shootingEntity, this.posX, this.posY, this.posZ, (float)(5.0f), false); worldObj.createExplosion(this.shootingEntity, this.posX, this.posY, this.posZ, (float) (5.0f), false);
} }
spawnHitParticles("magicCrit", 8); spawnHitParticles("magicCrit", 8);

View file

@ -1,22 +1,18 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import java.util.Iterator;
import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IProjectile; import net.minecraft.entity.IProjectile;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.AxisAlignedBB; import net.minecraft.util.*;
import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.Iterator;
import java.util.List;
public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectile implements IProjectile public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectile implements IProjectile
{ {
@ -26,7 +22,9 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
private int inTile = 0; private int inTile = 0;
private int inData = 0; private int inData = 0;
private boolean inGround = false; private boolean inGround = false;
/** The owner of this arrow. */ /**
* The owner of this arrow.
*/
public EntityLivingBase shootingEntity; public EntityLivingBase shootingEntity;
private int ticksInAir = 0; private int ticksInAir = 0;
private int ricochetCounter = 0; private int ricochetCounter = 0;
@ -56,14 +54,14 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
float par3 = 0.8F; float par3 = 0.8F;
this.setSize(0.1F, 0.1F); this.setSize(0.1F, 0.1F);
this.setLocationAndAngles(par2EntityPlayer.posX, par2EntityPlayer.posY + par2EntityPlayer.getEyeHeight(), par2EntityPlayer.posZ, par2EntityPlayer.rotationYaw, par2EntityPlayer.rotationPitch); this.setLocationAndAngles(par2EntityPlayer.posX, par2EntityPlayer.posY + par2EntityPlayer.getEyeHeight(), par2EntityPlayer.posZ, par2EntityPlayer.rotationYaw, par2EntityPlayer.rotationPitch);
posX -= MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posX -= MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
posY -= 0.2D; posY -= 0.2D;
posZ -= MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * 0.16F; posZ -= MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * 0.16F;
this.setPosition(posX, posY, posZ); this.setPosition(posX, posY, posZ);
yOffset = 0.0F; yOffset = 0.0F;
motionX = -MathHelper.sin(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionX = -MathHelper.sin(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionZ = MathHelper.cos(rotationYaw / 180.0F * (float)Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float)Math.PI); motionZ = MathHelper.cos(rotationYaw / 180.0F * (float) Math.PI) * MathHelper.cos(rotationPitch / 180.0F * (float) Math.PI);
motionY = -MathHelper.sin(rotationPitch / 180.0F * (float)Math.PI); motionY = -MathHelper.sin(rotationPitch / 180.0F * (float) Math.PI);
this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F); this.setThrowableHeading(motionX, motionY, motionZ, par3 * 1.5F, 1.0F);
this.damage = damage; this.damage = damage;
} }
@ -71,7 +69,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
@Override @Override
protected void entityInit() protected void entityInit()
{ {
dataWatcher.addObject(16, Byte.valueOf((byte)0)); dataWatcher.addObject(16, Byte.valueOf((byte) 0));
} }
/** /**
@ -95,8 +93,8 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
motionY = var3; motionY = var3;
motionZ = var5; motionZ = var5;
float var10 = MathHelper.sqrt_double(var1 * var1 + var5 * var5); float var10 = MathHelper.sqrt_double(var1 * var1 + var5 * var5);
prevRotationYaw = rotationYaw = (float)(Math.atan2(var1, var5) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(var1, var5) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(var3, var10) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(var3, var10) * 180.0D / Math.PI);
} }
@Override @Override
@ -125,8 +123,8 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F) if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F)
{ {
float var7 = MathHelper.sqrt_double(par1 * par1 + par5 * par5); float var7 = MathHelper.sqrt_double(par1 * par1 + par5 * par5);
prevRotationYaw = rotationYaw = (float)(Math.atan2(par1, par5) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(par1, par5) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(par3, var7) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(par3, var7) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch; prevRotationPitch = rotationPitch;
prevRotationYaw = rotationYaw; prevRotationYaw = rotationYaw;
this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch); this.setLocationAndAngles(posX, posY, posZ, rotationYaw, rotationPitch);
@ -153,7 +151,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
while (i.hasNext()) while (i.hasNext())
{ {
EntityPlayer e = (EntityPlayer)i.next(); EntityPlayer e = (EntityPlayer) i.next();
double distance = e.getDistanceToEntity(this); double distance = e.getDistanceToEntity(this);
if (distance < closestDistance) if (distance < closestDistance)
@ -171,8 +169,8 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F) if (prevRotationPitch == 0.0F && prevRotationYaw == 0.0F)
{ {
float var1 = MathHelper.sqrt_double(motionX * motionX + motionZ * motionZ); float var1 = MathHelper.sqrt_double(motionX * motionX + motionZ * motionZ);
prevRotationYaw = rotationYaw = (float)(Math.atan2(motionX, motionZ) * 180.0D / Math.PI); prevRotationYaw = rotationYaw = (float) (Math.atan2(motionX, motionZ) * 180.0D / Math.PI);
prevRotationPitch = rotationPitch = (float)(Math.atan2(motionY, var1) * 180.0D / Math.PI); prevRotationPitch = rotationPitch = (float) (Math.atan2(motionY, var1) * 180.0D / Math.PI);
} }
int var16 = worldObj.getBlockId(xTile, yTile, zTile); int var16 = worldObj.getBlockId(xTile, yTile, zTile);
@ -198,8 +196,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
// this.groundImpact(); // this.groundImpact();
// this.setDead(); // this.setDead();
} }
} } else
else
{ {
++ticksInAir; ++ticksInAir;
@ -232,7 +229,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
while (var9.hasNext()) while (var9.hasNext())
{ {
Entity var10 = (Entity)var9.next(); Entity var10 = (Entity) var9.next();
if (var10.canBeCollidedWith() && (var10 != shootingEntity || ticksInAir >= 5)) if (var10.canBeCollidedWith() && (var10 != shootingEntity || ticksInAir >= 5))
{ {
@ -290,12 +287,12 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
@Override @Override
public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound) public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound)
{ {
par1NBTTagCompound.setShort("xTile", (short)xTile); par1NBTTagCompound.setShort("xTile", (short) xTile);
par1NBTTagCompound.setShort("yTile", (short)yTile); par1NBTTagCompound.setShort("yTile", (short) yTile);
par1NBTTagCompound.setShort("zTile", (short)zTile); par1NBTTagCompound.setShort("zTile", (short) zTile);
par1NBTTagCompound.setByte("inTile", (byte)inTile); par1NBTTagCompound.setByte("inTile", (byte) inTile);
par1NBTTagCompound.setByte("inData", (byte)inData); par1NBTTagCompound.setByte("inData", (byte) inData);
par1NBTTagCompound.setByte("inGround", (byte)(inGround ? 1 : 0)); par1NBTTagCompound.setByte("inGround", (byte) (inGround ? 1 : 0));
} }
/** /**
@ -355,11 +352,10 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
if (par1) if (par1)
{ {
dataWatcher.updateObject(16, Byte.valueOf((byte)(var2 | 1))); dataWatcher.updateObject(16, Byte.valueOf((byte) (var2 | 1)));
} } else
else
{ {
dataWatcher.updateObject(16, Byte.valueOf((byte)(var2 & -2))); dataWatcher.updateObject(16, Byte.valueOf((byte) (var2 & -2)));
} }
} }
@ -383,8 +379,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
this.groundImpact(mop.sideHit); this.groundImpact(mop.sideHit);
worldObj.createExplosion(shootingEntity, posX, posY, posZ, 2, false); worldObj.createExplosion(shootingEntity, posX, posY, posZ, 2, false);
@ -397,8 +392,7 @@ public class EntityEnergyBazookaSecondaryProjectile extends EnergyBlastProjectil
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
doDamage(this.damage + d6(), mop); doDamage(this.damage + d6(), mop);
worldObj.createExplosion(shootingEntity, posX, posY, posZ, 2, false); worldObj.createExplosion(shootingEntity, posX, posY, posZ, 2, false);

View file

@ -1,15 +1,9 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorRegistry; import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorRegistry;
import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
@ -46,8 +40,7 @@ public class EntityMeteor extends EnergyBlastProjectile
if (mop.typeOfHit == EnumMovingObjectType.ENTITY && mop.entityHit != null) if (mop.typeOfHit == EnumMovingObjectType.ENTITY && mop.entityHit != null)
{ {
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
MeteorRegistry.createMeteorImpact(worldObj, mop.blockX, mop.blockY, mop.blockZ, this.meteorID); MeteorRegistry.createMeteorImpact(worldObj, mop.blockX, mop.blockY, mop.blockZ, this.meteorID);
} }
@ -62,10 +55,9 @@ public class EntityMeteor extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
MeteorRegistry.createMeteorImpact(worldObj, (int)this.posX, (int)this.posY, (int)this.posZ, meteorID); MeteorRegistry.createMeteorImpact(worldObj, (int) this.posX, (int) this.posY, (int) this.posZ, meteorID);
} }
this.setDead(); this.setDead();

View file

@ -2,10 +2,7 @@ package WayofTime.alchemicalWizardry.common.entity.projectile;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
@ -53,10 +50,9 @@ public class ExplosionProjectile extends EnergyBlastProjectile
return; return;
} }
worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(2), causesEnvDamage); worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float) (2), causesEnvDamage);
//this.onImpact(mop.entityHit); //this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
// for(int i=-1;i<=1;i++) // for(int i=-1;i<=1;i++)
// { // {
@ -71,7 +67,7 @@ public class ExplosionProjectile extends EnergyBlastProjectile
// } // }
// } // }
// } // }
worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(2), causesEnvDamage); worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float) (2), causesEnvDamage);
} }
this.setDead(); this.setDead();
@ -84,8 +80,7 @@ public class ExplosionProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -93,11 +88,10 @@ public class ExplosionProjectile extends EnergyBlastProjectile
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2)); //((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
//((EntityLivingBase)mop).setFire(50); //((EntityLivingBase)mop).setFire(50);
//((EntityLivingBase)mop).setRevengeTarget(shootingEntity); //((EntityLivingBase)mop).setRevengeTarget(shootingEntity);
if (((EntityLivingBase)mop).isImmuneToFire()) if (((EntityLivingBase) mop).isImmuneToFire())
{ {
doDamage((int)(projectileDamage), mop); doDamage((int) (projectileDamage), mop);
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
} }
@ -106,7 +100,7 @@ public class ExplosionProjectile extends EnergyBlastProjectile
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
} }
if (worldObj.isAirBlock((int)this.posX, (int)this.posY, (int)this.posZ)) if (worldObj.isAirBlock((int) this.posX, (int) this.posY, (int) this.posZ))
{ {
//worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID); //worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID);
} }

View file

@ -3,12 +3,9 @@ package WayofTime.alchemicalWizardry.common.entity.projectile;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
@ -36,7 +33,7 @@ public class FireProjectile extends EnergyBlastProjectile
public FireProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir) public FireProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir)
{ {
super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir); super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir);
} }
@Override @Override
@ -56,8 +53,7 @@ public class FireProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
for (int i = -1; i <= 1; i++) for (int i = -1; i <= 1; i++)
{ {
@ -65,9 +61,9 @@ public class FireProjectile extends EnergyBlastProjectile
{ {
for (int k = -1; k <= 1; k++) for (int k = -1; k <= 1; k++)
{ {
if (worldObj.isAirBlock((int)this.posX + i, (int)this.posY + j, (int)this.posZ + k)) if (worldObj.isAirBlock((int) this.posX + i, (int) this.posY + j, (int) this.posZ + k))
{ {
worldObj.setBlock((int)this.posX + i, (int)this.posY + j, (int)this.posZ + k, Block.fire.blockID); worldObj.setBlock((int) this.posX + i, (int) this.posY + j, (int) this.posZ + k, Block.fire.blockID);
} }
} }
} }
@ -86,33 +82,31 @@ public class FireProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
{ {
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2)); //((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
((EntityLivingBase)mop).setFire(50); ((EntityLivingBase) mop).setFire(50);
((EntityLivingBase)mop).setRevengeTarget(shootingEntity); ((EntityLivingBase) mop).setRevengeTarget(shootingEntity);
if (((EntityLivingBase)mop).isPotionActive(Potion.fireResistance) || ((EntityLivingBase)mop).isImmuneToFire()) if (((EntityLivingBase) mop).isPotionActive(Potion.fireResistance) || ((EntityLivingBase) mop).isImmuneToFire())
{ {
((EntityLivingBase)mop).attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); ((EntityLivingBase) mop).attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
((EntityLivingBase)mop).hurtResistantTime = 0; ((EntityLivingBase) mop).hurtResistantTime = 0;
} }
} }
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
} }
if (worldObj.isAirBlock((int)this.posX, (int)this.posY, (int)this.posZ)) if (worldObj.isAirBlock((int) this.posX, (int) this.posY, (int) this.posZ))
{ {
worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ, Block.fire.blockID); worldObj.setBlock((int) this.posX, (int) this.posY, (int) this.posZ, Block.fire.blockID);
} }
spawnHitParticles("magicCrit", 8); spawnHitParticles("magicCrit", 8);

View file

@ -4,7 +4,6 @@ import WayofTime.alchemicalWizardry.common.PacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
@ -34,7 +33,7 @@ public class HolyProjectile extends EnergyBlastProjectile
public HolyProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir) public HolyProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir)
{ {
super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir); super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir);
} }
@Override @Override
@ -54,8 +53,7 @@ public class HolyProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
// for(int i=-1;i<=1;i++) // for(int i=-1;i<=1;i++)
// { // {
@ -82,8 +80,7 @@ public class HolyProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -91,11 +88,10 @@ public class HolyProjectile extends EnergyBlastProjectile
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2)); //((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
//((EntityLivingBase)mop).setFire(50); //((EntityLivingBase)mop).setFire(50);
//((EntityLivingBase)mop).setRevengeTarget(shootingEntity); //((EntityLivingBase)mop).setRevengeTarget(shootingEntity);
if (((EntityLivingBase)mop).isEntityUndead()) if (((EntityLivingBase) mop).isEntityUndead())
{ {
doDamage((int)(projectileDamage * 2), mop); doDamage((int) (projectileDamage * 2), mop);
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
} }
@ -104,7 +100,7 @@ public class HolyProjectile extends EnergyBlastProjectile
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
} }
if (worldObj.isAirBlock((int)this.posX, (int)this.posY, (int)this.posZ)) if (worldObj.isAirBlock((int) this.posX, (int) this.posY, (int) this.posZ))
{ {
//worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID); //worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID);
} }

View file

@ -3,10 +3,8 @@ package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityIceDemon; import WayofTime.alchemicalWizardry.common.entity.mob.EntityIceDemon;
import cpw.mods.fml.common.network.PacketDispatcher; import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.block.Block;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
@ -35,6 +33,7 @@ public class IceProjectile extends EnergyBlastProjectile
{ {
super(par1World, par2EntityPlayer, damage, maxTicksInAir, posX, posY, posZ, rotationYaw, rotationPitch); super(par1World, par2EntityPlayer, damage, maxTicksInAir, posX, posY, posZ, rotationYaw, rotationPitch);
} }
public IceProjectile(World worldObj, EntityIceDemon entityIceDemon, EntityLivingBase par1EntityLivingBase, float f, float g, int i, int j) public IceProjectile(World worldObj, EntityIceDemon entityIceDemon, EntityLivingBase par1EntityLivingBase, float f, float g, int i, int j)
{ {
super(worldObj, entityIceDemon, par1EntityLivingBase, f, g, i, j); super(worldObj, entityIceDemon, par1EntityLivingBase, f, g, i, j);
@ -57,8 +56,7 @@ public class IceProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
// for(int i=-1;i<=1;i++) // for(int i=-1;i<=1;i++)
// { // {
@ -86,8 +84,7 @@ public class IceProjectile extends EnergyBlastProjectile
{ {
shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1); shootingEntity.attackEntityFrom(DamageSource.causeMobDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -95,12 +92,11 @@ public class IceProjectile extends EnergyBlastProjectile
//((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2)); //((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.weakness.id, 60,2));
//((EntityLivingBase)mop).setFire(50); //((EntityLivingBase)mop).setFire(50);
//((EntityLivingBase)mop).setRevengeTarget(shootingEntity); //((EntityLivingBase)mop).setRevengeTarget(shootingEntity);
if (((EntityLivingBase)mop).isImmuneToFire()) if (((EntityLivingBase) mop).isImmuneToFire())
{ {
doDamage((int)(projectileDamage * 2), mop); doDamage((int) (projectileDamage * 2), mop);
((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 200, 2)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 200, 2));
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 1)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 1));
@ -110,7 +106,7 @@ public class IceProjectile extends EnergyBlastProjectile
//worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true); //worldObj.createExplosion(this, this.posX, this.posY, this.posZ, (float)(0.1), true);
} }
if (worldObj.isAirBlock((int)this.posX, (int)this.posY, (int)this.posZ)) if (worldObj.isAirBlock((int) this.posX, (int) this.posY, (int) this.posZ))
{ {
//worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID); //worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ,Block.fire.blockID);
} }

View file

@ -1,17 +1,15 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.effect.EntityLightningBolt; import net.minecraft.entity.effect.EntityLightningBolt;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
public class LightningBoltProjectile extends EnergyBlastProjectile public class LightningBoltProjectile extends EnergyBlastProjectile
{ {
@ -56,8 +54,7 @@ public class LightningBoltProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
if (causeLightning) if (causeLightning)
{ {
@ -75,8 +72,7 @@ public class LightningBoltProjectile extends EnergyBlastProjectile
{ {
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1); //shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -93,9 +89,8 @@ public class LightningBoltProjectile extends EnergyBlastProjectile
// } // }
if (causeLightning) if (causeLightning)
{ {
this.worldObj.addWeatherEffect(new EntityLightningBolt(this.worldObj, ((EntityLivingBase)mop).posX, ((EntityLivingBase)mop).posY, ((EntityLivingBase)mop).posZ)); this.worldObj.addWeatherEffect(new EntityLightningBolt(this.worldObj, ((EntityLivingBase) mop).posX, ((EntityLivingBase) mop).posY, ((EntityLivingBase) mop).posZ));
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
} }

View file

@ -1,9 +1,9 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
@ -11,7 +11,6 @@ import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
public class MudProjectile extends EnergyBlastProjectile public class MudProjectile extends EnergyBlastProjectile
{ {
@ -41,7 +40,7 @@ public class MudProjectile extends EnergyBlastProjectile
public MudProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir, boolean flag) public MudProjectile(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5, int damage, int maxTicksInAir, boolean flag)
{ {
super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir); super(par1World, par2EntityLivingBase, par3EntityLivingBase, par4, par5, damage, maxTicksInAir);
doesBlindness = flag; doesBlindness = flag;
} }
@ -62,8 +61,7 @@ public class MudProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
} }
@ -77,8 +75,7 @@ public class MudProjectile extends EnergyBlastProjectile
{ {
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1); //shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -95,11 +92,10 @@ public class MudProjectile extends EnergyBlastProjectile
// } // }
if (doesBlindness) if (doesBlindness)
{ {
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.blindness.id, 100, 0)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.blindness.id, 100, 0));
} } else
else
{ {
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 2)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 100, 2));
} }
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);

View file

@ -2,21 +2,17 @@ package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.spell.simple.SpellTeleport; import WayofTime.alchemicalWizardry.common.spell.simple.SpellTeleport;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.EnderTeleportEvent; import net.minecraftforge.event.entity.living.EnderTeleportEvent;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.common.network.Player;
public class TeleportProjectile extends EnergyBlastProjectile public class TeleportProjectile extends EnergyBlastProjectile
{ {
@ -73,14 +69,13 @@ public class TeleportProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
if (isEntityTeleport) if (isEntityTeleport)
{ {
if (shootingEntity != null && shootingEntity instanceof EntityPlayerMP) if (shootingEntity != null && shootingEntity instanceof EntityPlayerMP)
{ {
EntityPlayerMP entityplayermp = (EntityPlayerMP)shootingEntity; EntityPlayerMP entityplayermp = (EntityPlayerMP) shootingEntity;
if (!entityplayermp.playerNetServerHandler.connectionClosed && entityplayermp.worldObj == this.worldObj) if (!entityplayermp.playerNetServerHandler.connectionClosed && entityplayermp.worldObj == this.worldObj)
{ {
@ -90,7 +85,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
{ {
if (shootingEntity.isRiding()) if (shootingEntity.isRiding())
{ {
shootingEntity.mountEntity((Entity)null); shootingEntity.mountEntity((Entity) null);
} }
shootingEntity.setPositionAndUpdate(event.targetX, event.targetY, event.targetZ); shootingEntity.setPositionAndUpdate(event.targetX, event.targetY, event.targetZ);
@ -112,8 +107,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
{ {
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1); //shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -132,7 +126,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
{ {
if (shootingEntity != null && shootingEntity instanceof EntityPlayerMP) if (shootingEntity != null && shootingEntity instanceof EntityPlayerMP)
{ {
EntityPlayerMP entityplayermp = (EntityPlayerMP)shootingEntity; EntityPlayerMP entityplayermp = (EntityPlayerMP) shootingEntity;
if (!entityplayermp.playerNetServerHandler.connectionClosed && entityplayermp.worldObj == this.worldObj) if (!entityplayermp.playerNetServerHandler.connectionClosed && entityplayermp.worldObj == this.worldObj)
{ {
@ -142,7 +136,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
{ {
if (shootingEntity.isRiding()) if (shootingEntity.isRiding())
{ {
shootingEntity.mountEntity((Entity)null); shootingEntity.mountEntity((Entity) null);
} }
shootingEntity.setPositionAndUpdate(event.targetX, event.targetY, event.targetZ); shootingEntity.setPositionAndUpdate(event.targetX, event.targetY, event.targetZ);
@ -151,8 +145,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
} }
} }
} }
} } else
else
{ {
// int x = (int)this.posX + mop.worldObj.rand.nextInt(100) - mop.worldObj.rand.nextInt(100); // int x = (int)this.posX + mop.worldObj.rand.nextInt(100) - mop.worldObj.rand.nextInt(100);
// int y = (int)this.posY + mop.worldObj.rand.nextInt(10) - mop.worldObj.rand.nextInt(10); // int y = (int)this.posY + mop.worldObj.rand.nextInt(10) - mop.worldObj.rand.nextInt(10);
@ -175,7 +168,7 @@ public class TeleportProjectile extends EnergyBlastProjectile
// i++; // i++;
// } // }
// } // }
SpellTeleport.teleportRandomly((EntityLivingBase)mop, 64); SpellTeleport.teleportRandomly((EntityLivingBase) mop, 64);
} }
//doDamage(projectileDamage, mop); //doDamage(projectileDamage, mop);

View file

@ -2,16 +2,14 @@ package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.effect.EntityLightningBolt;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
public class WaterProjectile extends EnergyBlastProjectile public class WaterProjectile extends EnergyBlastProjectile
{ {
@ -52,8 +50,7 @@ public class WaterProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
} }
@ -67,8 +64,7 @@ public class WaterProjectile extends EnergyBlastProjectile
{ {
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1); //shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -83,15 +79,14 @@ public class WaterProjectile extends EnergyBlastProjectile
// { // {
// doDamage(projectileDamage, mop); // doDamage(projectileDamage, mop);
// } // }
if (((EntityLivingBase)mop).isImmuneToFire()) if (((EntityLivingBase) mop).isImmuneToFire())
{ {
doDamage(projectileDamage * 2, mop); doDamage(projectileDamage * 2, mop);
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 1)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 1));
} } else
else
{ {
doDamage(projectileDamage, mop); doDamage(projectileDamage, mop);
((EntityLivingBase)mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 0)); ((EntityLivingBase) mop).addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionDrowning.id, 80, 0));
} }
//((EntityLivingBase)mop).setVelocity(this.motionX*2, ((EntityLivingBase)mop).motionY+1.5, this.motionZ*2); //((EntityLivingBase)mop).setVelocity(this.motionX*2, ((EntityLivingBase)mop).motionY+1.5, this.motionZ*2);

View file

@ -1,14 +1,13 @@
package WayofTime.alchemicalWizardry.common.entity.projectile; package WayofTime.alchemicalWizardry.common.entity.projectile;
import WayofTime.alchemicalWizardry.common.PacketHandler; import WayofTime.alchemicalWizardry.common.PacketHandler;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.util.EnumMovingObjectType; import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.MovingObjectPosition; import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World; import net.minecraft.world.World;
import cpw.mods.fml.common.network.PacketDispatcher;
public class WindGustProjectile extends EnergyBlastProjectile public class WindGustProjectile extends EnergyBlastProjectile
{ {
@ -49,8 +48,7 @@ public class WindGustProjectile extends EnergyBlastProjectile
} }
this.onImpact(mop.entityHit); this.onImpact(mop.entityHit);
} } else if (mop.typeOfHit == EnumMovingObjectType.TILE)
else if (mop.typeOfHit == EnumMovingObjectType.TILE)
{ {
// for(int i=-1;i<=1;i++) // for(int i=-1;i<=1;i++)
// { // {
@ -77,8 +75,7 @@ public class WindGustProjectile extends EnergyBlastProjectile
{ {
//shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1); //shootingEntity.attackEntityFrom(DamageSource.causePlayerDamage(shootingEntity), 1);
this.setDead(); this.setDead();
} } else
else
{ {
//doDamage(8 + d6(), mop); //doDamage(8 + d6(), mop);
if (mop instanceof EntityLivingBase) if (mop instanceof EntityLivingBase)
@ -93,9 +90,9 @@ public class WindGustProjectile extends EnergyBlastProjectile
// { // {
// doDamage(projectileDamage, mop); // doDamage(projectileDamage, mop);
// } // }
((EntityLivingBase)mop).motionX = this.motionX * 2; ((EntityLivingBase) mop).motionX = this.motionX * 2;
((EntityLivingBase)mop).motionY = 1.5; ((EntityLivingBase) mop).motionY = 1.5;
((EntityLivingBase)mop).motionZ = this.motionZ * 2; ((EntityLivingBase) mop).motionZ = this.motionZ * 2;
//((EntityLivingBase)mop).setVelocity(this.motionX*2, ((EntityLivingBase)mop).motionY+1.5, this.motionZ*2); //((EntityLivingBase)mop).setVelocity(this.motionX*2, ((EntityLivingBase)mop).motionY+1.5, this.motionZ*2);
} }

View file

@ -1,12 +1,13 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ModItems;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item; import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import java.util.List;
public class AWBaseItems extends Item public class AWBaseItems extends Item
{ {
@ -19,19 +20,16 @@ public class AWBaseItems extends Item
public void registerIcons(IconRegister iconRegister) public void registerIcons(IconRegister iconRegister)
{ {
if (this.itemID == AlchemicalWizardry.blankSlate.itemID) if (this.itemID == ModItems.blankSlate.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:BlankSlate"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:BlankSlate");
} } else if (this.itemID == ModItems.reinforcedSlate.itemID)
else if (this.itemID == AlchemicalWizardry.reinforcedSlate.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:ReinforcedSlate"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:ReinforcedSlate");
} } else if (this.itemID == ModItems.imbuedSlate.itemID)
else if (this.itemID == AlchemicalWizardry.imbuedSlate.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:InfusedSlate"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:InfusedSlate");
} } else if (this.itemID == ModItems.demonicSlate.itemID)
else if (this.itemID == AlchemicalWizardry.demonicSlate.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DemonSlate"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DemonSlate");
} }

View file

@ -1,7 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs; import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
@ -10,17 +12,13 @@ import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.util.MathHelper; import net.minecraft.util.MathHelper;
import net.minecraft.world.World; import net.minecraft.world.World;
import org.lwjgl.input.Keyboard; import org.lwjgl.input.Keyboard;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import java.util.List;
import WayofTime.alchemicalWizardry.common.alchemy.AlchemyRecipeRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class ActivationCrystal extends EnergyItems public class ActivationCrystal extends EnergyItems
{ {
private static final String[] ACTIVATION_CRYSTAL_NAMES = new String[] { "Weak", "Awakened"}; private static final String[] ACTIVATION_CRYSTAL_NAMES = new String[]{"Weak", "Awakened"};
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private Icon[] icons; private Icon[] icons;
@ -69,7 +67,7 @@ public class ActivationCrystal extends EnergyItems
{ {
par3List.add(EnumChatFormatting.BLUE + "Recipe:"); par3List.add(EnumChatFormatting.BLUE + "Recipe:");
for (ItemStack item: recipe) for (ItemStack item : recipe)
{ {
if (item != null) if (item != null)
{ {
@ -77,8 +75,7 @@ public class ActivationCrystal extends EnergyItems
} }
} }
} }
} } else
else
{ {
par3List.add("-Press " + EnumChatFormatting.BLUE + "shift" + EnumChatFormatting.GRAY + " for Recipe-"); par3List.add("-Press " + EnumChatFormatting.BLUE + "shift" + EnumChatFormatting.GRAY + " for Recipe-");
} }

View file

@ -1,10 +1,10 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item;
public class AirInk extends Item public class AirInk extends Item
{ {

View file

@ -1,8 +1,8 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import net.minecraft.client.renderer.texture.IconRegister;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
public class ArchmageBloodOrb extends EnergyBattery public class ArchmageBloodOrb extends EnergyBattery
{ {

View file

@ -1,7 +1,8 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
@ -10,9 +11,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import java.util.List;
import cpw.mods.fml.relauncher.SideOnly;
public class ArmourInhibitor extends EnergyItems public class ArmourInhibitor extends EnergyItems
{ {
@ -40,8 +40,7 @@ public class ArmourInhibitor extends EnergyItems
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }
@ -72,8 +71,7 @@ public class ArmourInhibitor extends EnergyItems
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -86,8 +84,7 @@ public class ArmourInhibitor extends EnergyItems
if (par1 == 1) if (par1 == 1)
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -131,14 +128,13 @@ public class ArmourInhibitor extends EnergyItems
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
par1ItemStack.setItemDamage(1); par1ItemStack.setItemDamage(1);
tag.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % tickDelay); tag.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % tickDelay);
if (!par3EntityPlayer.capabilities.isCreativeMode) if (!par3EntityPlayer.capabilities.isCreativeMode)
{ {
//EnergyItems.syphonBatteries(par1ItemStack, par3EntityPlayer, getEnergyUsed()); //EnergyItems.syphonBatteries(par1ItemStack, par3EntityPlayer, getEnergyUsed());
} }
} } else
else
{ {
par1ItemStack.setItemDamage(par1ItemStack.getMaxDamage()); par1ItemStack.setItemDamage(par1ItemStack.getMaxDamage());
} }
@ -154,7 +150,7 @@ public class ArmourInhibitor extends EnergyItems
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {

View file

@ -1,7 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
@ -9,10 +11,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.DimensionManager; import net.minecraftforge.common.DimensionManager;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart; import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlankSpell extends EnergyItems public class BlankSpell extends EnergyItems
{ {
@ -71,28 +71,24 @@ public class BlankSpell extends EnergyItems
if (tileEntity instanceof TEHomHeart) if (tileEntity instanceof TEHomHeart)
{ {
TEHomHeart homHeart = (TEHomHeart)tileEntity; TEHomHeart homHeart = (TEHomHeart) tileEntity;
if (homHeart.canCastSpell(par1ItemStack, par2World, par3EntityPlayer)) if (homHeart.canCastSpell(par1ItemStack, par2World, par3EntityPlayer))
{ {
EnergyItems.syphonBatteries(par1ItemStack, par3EntityPlayer, homHeart.castSpell(par1ItemStack, par2World, par3EntityPlayer)); EnergyItems.syphonBatteries(par1ItemStack, par3EntityPlayer, homHeart.castSpell(par1ItemStack, par2World, par3EntityPlayer));
} } else
else
{ {
return par1ItemStack; return par1ItemStack;
} }
} } else
else
{ {
return par1ItemStack; return par1ItemStack;
} }
} } else
else
{ {
return par1ItemStack; return par1ItemStack;
} }
} } else
else
{ {
return par1ItemStack; return par1ItemStack;
} }

View file

@ -1,14 +1,15 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade;
import WayofTime.alchemicalWizardry.common.ModItems;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item; import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BloodShard extends Item implements ArmourUpgrade public class BloodShard extends Item implements ArmourUpgrade
{ {
@ -24,13 +25,13 @@ public class BloodShard extends Item implements ArmourUpgrade
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
public void registerIcons(IconRegister iconRegister) public void registerIcons(IconRegister iconRegister)
{ {
if (this.itemID == AlchemicalWizardry.weakBloodShard.itemID) if (this.itemID == ModItems.weakBloodShard.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:WeakBloodShard"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:WeakBloodShard");
return; return;
} }
if (this.itemID == AlchemicalWizardry.demonBloodShard.itemID) if (this.itemID == ModItems.demonBloodShard.itemID)
{ {
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DemonBloodShard"); this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:DemonBloodShard");
return; return;
@ -39,11 +40,10 @@ public class BloodShard extends Item implements ArmourUpgrade
public int getBloodShardLevel() public int getBloodShardLevel()
{ {
if (this.itemID == AlchemicalWizardry.weakBloodShard.itemID) if (this.itemID == ModItems.weakBloodShard.itemID)
{ {
return 1; return 1;
} } else if (this.itemID == ModItems.demonBloodShard.itemID)
else if (this.itemID == AlchemicalWizardry.demonBloodShard.itemID)
{ {
return 2; return 2;
} }

View file

@ -1,7 +1,8 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -9,9 +10,8 @@ import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import java.util.List;
import cpw.mods.fml.relauncher.SideOnly;
public class BloodboundSword extends EnergyItems public class BloodboundSword extends EnergyItems
{ {
@ -40,9 +40,9 @@ public class BloodboundSword extends EnergyItems
{ {
if (par3EntityLivingBase instanceof EntityPlayer) if (par3EntityLivingBase instanceof EntityPlayer)
{ {
EnergyItems.checkAndSetItemOwner(par1ItemStack, (EntityPlayer)par3EntityLivingBase); EnergyItems.checkAndSetItemOwner(par1ItemStack, (EntityPlayer) par3EntityLivingBase);
if (!this.syphonBatteries(par1ItemStack, (EntityPlayer)par3EntityLivingBase, this.getEnergyUsed())) if (!this.syphonBatteries(par1ItemStack, (EntityPlayer) par3EntityLivingBase, this.getEnergyUsed()))
{ {
//this.damagePlayer(null, (EntityPlayer)par3EntityLivingBase, (this.getEnergyUsed() + 99) / 100); //this.damagePlayer(null, (EntityPlayer)par3EntityLivingBase, (this.getEnergyUsed() + 99) / 100);
} }
@ -81,8 +81,7 @@ public class BloodboundSword extends EnergyItems
if (par2Block.blockID == Block.web.blockID) if (par2Block.blockID == Block.web.blockID)
{ {
return 15.0F; return 15.0F;
} } else
else
{ {
Material material = par2Block.blockMaterial; Material material = par2Block.blockMaterial;
return material != Material.plants && material != Material.vine && material != Material.coral && material != Material.leaves && material != Material.pumpkin ? 1.0F : 1.5F; return material != Material.plants && material != Material.vine && material != Material.coral && material != Material.leaves && material != Material.pumpkin ? 1.0F : 1.5F;

View file

@ -1,7 +1,11 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade;
import WayofTime.alchemicalWizardry.common.IBindable;
import WayofTime.alchemicalWizardry.common.ModItems;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EntityLivingBase;
@ -18,11 +22,8 @@ import net.minecraft.world.World;
import net.minecraftforge.common.ISpecialArmor; import net.minecraftforge.common.ISpecialArmor;
import thaumcraft.api.IGoggles; import thaumcraft.api.IGoggles;
import thaumcraft.api.nodes.IRevealer; import thaumcraft.api.nodes.IRevealer;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import java.util.List;
import WayofTime.alchemicalWizardry.common.IBindable;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer, IGoggles, IBindable public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer, IGoggles, IBindable
{ {
@ -54,22 +55,22 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
public Icon getIconFromDamage(int par1) public Icon getIconFromDamage(int par1)
{ {
if (this.itemID == AlchemicalWizardry.boundHelmet.itemID) if (this.itemID == ModItems.boundHelmet.itemID)
{ {
return this.helmetIcon; return this.helmetIcon;
} }
if (this.itemID == AlchemicalWizardry.boundPlate.itemID) if (this.itemID == ModItems.boundPlate.itemID)
{ {
return this.plateIcon; return this.plateIcon;
} }
if (this.itemID == AlchemicalWizardry.boundLeggings.itemID) if (this.itemID == ModItems.boundLeggings.itemID)
{ {
return this.leggingsIcon; return this.leggingsIcon;
} }
if (this.itemID == AlchemicalWizardry.boundBoots.itemID) if (this.itemID == ModItems.boundBoots.itemID)
{ {
return this.bootsIcon; return this.bootsIcon;
} }
@ -82,6 +83,7 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
{ {
return false; return false;
} }
@Override @Override
public ArmorProperties getProperties(EntityLivingBase player, ItemStack armor, DamageSource source, double damage, int slot) public ArmorProperties getProperties(EntityLivingBase player, ItemStack armor, DamageSource source, double damage, int slot)
{ {
@ -95,8 +97,7 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
if (isImmuneToVoid(armor)) if (isImmuneToVoid(armor))
{ {
return new ArmorProperties(-1, 3, 100000); return new ArmorProperties(-1, 3, 100000);
} } else
else
{ {
return new ArmorProperties(-1, 0, 0); return new ArmorProperties(-1, 0, 0);
} }
@ -112,7 +113,7 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
return new ArmorProperties(-1, 0, 0); return new ArmorProperties(-1, 0, 0);
} }
if (helmet.itemID == AlchemicalWizardry.boundHelmet.itemID || plate.itemID == AlchemicalWizardry.boundPlate.itemID || leggings.itemID == AlchemicalWizardry.boundLeggings.itemID || boots.itemID == AlchemicalWizardry.boundBoots.itemID) if (helmet.itemID == ModItems.boundHelmet.itemID || plate.itemID == ModItems.boundPlate.itemID || leggings.itemID == ModItems.boundLeggings.itemID || boots.itemID == ModItems.boundBoots.itemID)
{ {
if (source.isUnblockable()) if (source.isUnblockable())
{ {
@ -128,22 +129,22 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
@Override @Override
public int getArmorDisplay(EntityPlayer player, ItemStack armor, int slot) public int getArmorDisplay(EntityPlayer player, ItemStack armor, int slot)
{ {
if (armor.itemID == AlchemicalWizardry.boundHelmet.itemID) if (armor.itemID == ModItems.boundHelmet.itemID)
{ {
return 3; return 3;
} }
if (armor.itemID == AlchemicalWizardry.boundPlate.itemID) if (armor.itemID == ModItems.boundPlate.itemID)
{ {
return 8; return 8;
} }
if (armor.itemID == AlchemicalWizardry.boundLeggings.itemID) if (armor.itemID == ModItems.boundLeggings.itemID)
{ {
return 6; return 6;
} }
if (armor.itemID == AlchemicalWizardry.boundBoots.itemID) if (armor.itemID == ModItems.boundBoots.itemID)
{ {
return 3; return 3;
} }
@ -156,9 +157,9 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
{ {
if (entity instanceof EntityPlayer) if (entity instanceof EntityPlayer)
{ {
EnergyItems.checkAndSetItemOwner(stack, (EntityPlayer)entity); EnergyItems.checkAndSetItemOwner(stack, (EntityPlayer) entity);
if (((EntityPlayer)entity).capabilities.isCreativeMode) if (((EntityPlayer) entity).capabilities.isCreativeMode)
{ {
return; return;
} }
@ -204,30 +205,29 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
//TODO Make the armour invisible when the player has Invisibility on. //TODO Make the armour invisible when the player has Invisibility on.
if (entity instanceof EntityLivingBase) if (entity instanceof EntityLivingBase)
{ {
if (((EntityLivingBase)entity).isPotionActive(Potion.invisibility.id)) if (((EntityLivingBase) entity).isPotionActive(Potion.invisibility.id))
{ {
if (itemID == AlchemicalWizardry.boundHelmet.itemID || itemID == AlchemicalWizardry.boundPlate.itemID || itemID == AlchemicalWizardry.boundBoots.itemID) if (itemID == ModItems.boundHelmet.itemID || itemID == ModItems.boundPlate.itemID || itemID == ModItems.boundBoots.itemID)
{ {
return "alchemicalwizardry:models/armor/boundArmour_invisible_layer_1.png"; return "alchemicalwizardry:models/armor/boundArmour_invisible_layer_1.png";
} }
if (itemID == AlchemicalWizardry.boundLeggings.itemID) if (itemID == ModItems.boundLeggings.itemID)
{ {
return "alchemicalwizardry:models/armor/boundArmour_invisible_layer_2.png"; return "alchemicalwizardry:models/armor/boundArmour_invisible_layer_2.png";
} }
} }
} }
if (itemID == AlchemicalWizardry.boundHelmet.itemID || itemID == AlchemicalWizardry.boundPlate.itemID || itemID == AlchemicalWizardry.boundBoots.itemID) if (itemID == ModItems.boundHelmet.itemID || itemID == ModItems.boundPlate.itemID || itemID == ModItems.boundBoots.itemID)
{ {
return "alchemicalwizardry:models/armor/boundArmour_layer_1.png"; return "alchemicalwizardry:models/armor/boundArmour_layer_1.png";
} }
if (itemID == AlchemicalWizardry.boundLeggings.itemID) if (itemID == ModItems.boundLeggings.itemID)
{ {
return "alchemicalwizardry:models/armor/boundArmour_layer_2.png"; return "alchemicalwizardry:models/armor/boundArmour_layer_2.png";
} } else
else
{ {
return null; return null;
} }
@ -314,9 +314,9 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
if (inv[i].getItem() instanceof ArmourUpgrade && blood > 0) if (inv[i].getItem() instanceof ArmourUpgrade && blood > 0)
{ {
if (((ArmourUpgrade)inv[i].getItem()).isUpgrade()) if (((ArmourUpgrade) inv[i].getItem()).isUpgrade())
{ {
((ArmourUpgrade)inv[i].getItem()).onArmourUpdate(par2World, par3Entity, inv[i]); ((ArmourUpgrade) inv[i].getItem()).onArmourUpdate(par2World, par3Entity, inv[i]);
blood--; blood--;
} }
@ -324,7 +324,7 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
{ {
if (getUpgradeCostMultiplier(par1ItemStack) > 0.02f) if (getUpgradeCostMultiplier(par1ItemStack) > 0.02f)
{ {
EnergyItems.syphonBatteries(par1ItemStack, par3Entity, (int)(((ArmourUpgrade)inv[i].getItem()).getEnergyForTenSeconds() * getUpgradeCostMultiplier(par1ItemStack))); EnergyItems.syphonBatteries(par1ItemStack, par3Entity, (int) (((ArmourUpgrade) inv[i].getItem()).getEnergyForTenSeconds() * getUpgradeCostMultiplier(par1ItemStack)));
} }
} }
} }
@ -348,12 +348,12 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
if (itemStack != null) if (itemStack != null)
{ {
if (itemStack.itemID == AlchemicalWizardry.weakBloodShard.itemID) if (itemStack.itemID == ModItems.weakBloodShard.itemID)
{ {
max = Math.max(max, 1); max = Math.max(max, 1);
} }
if (itemStack.itemID == AlchemicalWizardry.demonBloodShard.itemID) if (itemStack.itemID == ModItems.demonBloodShard.itemID)
{ {
max = Math.max(max, 2); max = Math.max(max, 2);
} }
@ -481,7 +481,7 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
continue; continue;
} }
if (item.itemID == AlchemicalWizardry.voidSigil.itemID) if (item.itemID == ModItems.voidSigil.itemID)
{ {
return true; return true;
} }
@ -556,27 +556,27 @@ public class BoundArmour extends ItemArmor implements ISpecialArmor, IRevealer,
continue; continue;
} }
if (item.itemID == AlchemicalWizardry.weakBloodOrb.itemID) if (item.itemID == ModItems.weakBloodOrb.itemID)
{ {
return 0.75f; return 0.75f;
} }
if (item.itemID == AlchemicalWizardry.apprenticeBloodOrb.itemID) if (item.itemID == ModItems.apprenticeBloodOrb.itemID)
{ {
return 0.50f; return 0.50f;
} }
if (item.itemID == AlchemicalWizardry.magicianBloodOrb.itemID) if (item.itemID == ModItems.magicianBloodOrb.itemID)
{ {
return 0.25f; return 0.25f;
} }
if (item.itemID == AlchemicalWizardry.masterBloodOrb.itemID) if (item.itemID == ModItems.masterBloodOrb.itemID)
{ {
return 0.0f; return 0.0f;
} }
if (item.itemID == AlchemicalWizardry.archmageBloodOrb.itemID) if (item.itemID == ModItems.archmageBloodOrb.itemID)
{ {
return 0.0f; return 0.0f;
} }

View file

@ -1,8 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.ArrayList; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import java.util.List; import WayofTime.alchemicalWizardry.common.IBindable;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.BlockLeavesBase; import net.minecraft.block.BlockLeavesBase;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -18,19 +19,22 @@ import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.ForgeHooks; import net.minecraftforge.common.ForgeHooks;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable; import java.util.ArrayList;
import cpw.mods.fml.relauncher.Side; import java.util.List;
import cpw.mods.fml.relauncher.SideOnly;
public class BoundAxe extends ItemAxe implements IBindable public class BoundAxe extends ItemAxe implements IBindable
{ {
/** Array of blocks the tool has extra effect against. */ /**
public static final Block[] blocksEffectiveAgainst = new Block[] {Block.planks, Block.bookShelf, Block.wood, Block.chest, Block.stoneDoubleSlab, Block.stoneSingleSlab, Block.pumpkin, Block.pumpkinLantern}; * Array of blocks the tool has extra effect against.
*/
public static final Block[] blocksEffectiveAgainst = new Block[]{Block.planks, Block.bookShelf, Block.wood, Block.chest, Block.stoneDoubleSlab, Block.stoneSingleSlab, Block.pumpkin, Block.pumpkinLantern};
public float efficiencyOnProperMaterial = 12.0F; public float efficiencyOnProperMaterial = 12.0F;
/** Damage versus entities. */ /**
* Damage versus entities.
*/
public float damageVsEntity; public float damageVsEntity;
private static Icon activeIcon; private static Icon activeIcon;
@ -69,8 +73,7 @@ public class BoundAxe extends ItemAxe implements IBindable
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }
@ -104,8 +107,7 @@ public class BoundAxe extends ItemAxe implements IBindable
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -119,7 +121,7 @@ public class BoundAxe extends ItemAxe implements IBindable
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
this.setActivated(par1ItemStack, !getActivated(par1ItemStack)); this.setActivated(par1ItemStack, !getActivated(par1ItemStack));
par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % 200); par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % 200);
return par1ItemStack; return par1ItemStack;
} }
@ -133,9 +135,9 @@ public class BoundAxe extends ItemAxe implements IBindable
return par1ItemStack; return par1ItemStack;
} }
int posX = (int)par3EntityPlayer.posX; int posX = (int) par3EntityPlayer.posX;
int posY = (int)par3EntityPlayer.posY; int posY = (int) par3EntityPlayer.posY;
int posZ = (int)par3EntityPlayer.posZ; int posZ = (int) par3EntityPlayer.posZ;
boolean silkTouch = false; boolean silkTouch = false;
int so = Enchantment.silkTouch.effectId; int so = Enchantment.silkTouch.effectId;
int fortune = Enchantment.fortune.effectId; int fortune = Enchantment.fortune.effectId;
@ -146,9 +148,9 @@ public class BoundAxe extends ItemAxe implements IBindable
{ {
for (int i = 0; i < enchants.tagCount(); i++) for (int i = 0; i < enchants.tagCount(); i++)
{ {
if (enchants.tagAt(i)instanceof NBTTagCompound) if (enchants.tagAt(i) instanceof NBTTagCompound)
{ {
NBTTagCompound nbt = (NBTTagCompound)enchants.tagAt(i); NBTTagCompound nbt = (NBTTagCompound) enchants.tagAt(i);
int id = nbt.getShort("id"); int id = nbt.getShort("id");
if (id == so) if (id == so)
@ -188,8 +190,7 @@ public class BoundAxe extends ItemAxe implements IBindable
{ {
par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem)); par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem));
} }
} } else
else
{ {
ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl); ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl);
@ -224,7 +225,7 @@ public class BoundAxe extends ItemAxe implements IBindable
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {
@ -303,7 +304,7 @@ public class BoundAxe extends ItemAxe implements IBindable
public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase) public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase)
{ {
if ((double)Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D) if ((double) Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D)
{ {
//par1ItemStack.damageItem(1, par7EntityLivingBase); //par1ItemStack.damageItem(1, par7EntityLivingBase);
} }
@ -338,7 +339,9 @@ public class BoundAxe extends ItemAxe implements IBindable
// return true; // return true;
// } // }
/** FORGE: Overridden to allow custom tool effectiveness */ /**
* FORGE: Overridden to allow custom tool effectiveness
*/
@Override @Override
public float getStrVsBlock(ItemStack stack, Block block, int meta) public float getStrVsBlock(ItemStack stack, Block block, int meta)
{ {

View file

@ -1,8 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.ArrayList; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import java.util.List; import WayofTime.alchemicalWizardry.common.IBindable;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -18,19 +19,22 @@ import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.ForgeHooks; import net.minecraftforge.common.ForgeHooks;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable; import java.util.ArrayList;
import cpw.mods.fml.relauncher.Side; import java.util.List;
import cpw.mods.fml.relauncher.SideOnly;
public class BoundPickaxe extends ItemPickaxe implements IBindable public class BoundPickaxe extends ItemPickaxe implements IBindable
{ {
/** Array of blocks the tool has extra effect against. */ /**
public static final Block[] blocksEffectiveAgainst = new Block[] {Block.cobblestone, Block.stoneDoubleSlab, Block.stoneSingleSlab, Block.stone, Block.sandStone, Block.cobblestoneMossy, Block.oreIron, Block.blockIron, Block.oreCoal, Block.blockGold, Block.oreGold, Block.oreDiamond, Block.blockDiamond, Block.ice, Block.netherrack, Block.oreLapis, Block.blockLapis, Block.oreRedstone, Block.oreRedstoneGlowing, Block.rail, Block.railDetector, Block.railPowered, Block.railActivator}; * Array of blocks the tool has extra effect against.
*/
public static final Block[] blocksEffectiveAgainst = new Block[]{Block.cobblestone, Block.stoneDoubleSlab, Block.stoneSingleSlab, Block.stone, Block.sandStone, Block.cobblestoneMossy, Block.oreIron, Block.blockIron, Block.oreCoal, Block.blockGold, Block.oreGold, Block.oreDiamond, Block.blockDiamond, Block.ice, Block.netherrack, Block.oreLapis, Block.blockLapis, Block.oreRedstone, Block.oreRedstoneGlowing, Block.rail, Block.railDetector, Block.railPowered, Block.railActivator};
public float efficiencyOnProperMaterial = 12.0F; public float efficiencyOnProperMaterial = 12.0F;
/** Damage versus entities. */ /**
* Damage versus entities.
*/
public float damageVsEntity; public float damageVsEntity;
private static Icon activeIcon; private static Icon activeIcon;
@ -70,8 +74,7 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }
@ -105,8 +108,7 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -120,7 +122,7 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
this.setActivated(par1ItemStack, !getActivated(par1ItemStack)); this.setActivated(par1ItemStack, !getActivated(par1ItemStack));
par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % 200); par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % 200);
return par1ItemStack; return par1ItemStack;
} }
@ -134,9 +136,9 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
return par1ItemStack; return par1ItemStack;
} }
int posX = (int)par3EntityPlayer.posX; int posX = (int) par3EntityPlayer.posX;
int posY = (int)par3EntityPlayer.posY; int posY = (int) par3EntityPlayer.posY;
int posZ = (int)par3EntityPlayer.posZ; int posZ = (int) par3EntityPlayer.posZ;
boolean silkTouch = false; boolean silkTouch = false;
int so = Enchantment.silkTouch.effectId; int so = Enchantment.silkTouch.effectId;
int fortune = Enchantment.fortune.effectId; int fortune = Enchantment.fortune.effectId;
@ -147,9 +149,9 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
{ {
for (int i = 0; i < enchants.tagCount(); i++) for (int i = 0; i < enchants.tagCount(); i++)
{ {
if (enchants.tagAt(i)instanceof NBTTagCompound) if (enchants.tagAt(i) instanceof NBTTagCompound)
{ {
NBTTagCompound nbt = (NBTTagCompound)enchants.tagAt(i); NBTTagCompound nbt = (NBTTagCompound) enchants.tagAt(i);
int id = nbt.getShort("id"); int id = nbt.getShort("id");
if (id == so) if (id == so)
@ -189,8 +191,7 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
{ {
par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem)); par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem));
} }
} } else
else
{ {
ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl); ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl);
@ -225,7 +226,7 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {
@ -305,14 +306,14 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
@Override @Override
public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase) public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase)
{ {
if ((double)Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D) if ((double) Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D)
{ {
//par1ItemStack.damageItem(1, par7EntityLivingBase); //par1ItemStack.damageItem(1, par7EntityLivingBase);
} }
if (par7EntityLivingBase instanceof EntityPlayer) if (par7EntityLivingBase instanceof EntityPlayer)
{ {
EnergyItems.syphonBatteries(par1ItemStack, (EntityPlayer)par7EntityLivingBase, getEnergyUsed()); EnergyItems.syphonBatteries(par1ItemStack, (EntityPlayer) par7EntityLivingBase, getEnergyUsed());
} }
//TODO Possibly add better functionality for the items? //TODO Possibly add better functionality for the items?
@ -347,7 +348,9 @@ public class BoundPickaxe extends ItemPickaxe implements IBindable
// return false; // return false;
// } // }
/** FORGE: Overridden to allow custom tool effectiveness */ /**
* FORGE: Overridden to allow custom tool effectiveness
*/
@Override @Override
public float getStrVsBlock(ItemStack stack, Block block, int meta) public float getStrVsBlock(ItemStack stack, Block block, int meta)
{ {

View file

@ -1,8 +1,10 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.ArrayList; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import java.util.List; import WayofTime.alchemicalWizardry.common.IBindable;
import com.google.common.collect.Multimap;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.enchantment.Enchantment; import net.minecraft.enchantment.Enchantment;
@ -19,22 +21,22 @@ import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.ForgeHooks; import net.minecraftforge.common.ForgeHooks;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable;
import com.google.common.collect.Multimap; import java.util.ArrayList;
import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BoundShovel extends ItemSpade implements IBindable public class BoundShovel extends ItemSpade implements IBindable
{ {
/** Array of blocks the tool has extra effect against. */ /**
public static final Block[] blocksEffectiveAgainst = new Block[] {Block.grass, Block.dirt, Block.sand, Block.gravel, Block.snow, Block.blockSnow, Block.blockClay, Block.tilledField, Block.slowSand, Block.mycelium}; * Array of blocks the tool has extra effect against.
*/
public static final Block[] blocksEffectiveAgainst = new Block[]{Block.grass, Block.dirt, Block.sand, Block.gravel, Block.snow, Block.blockSnow, Block.blockClay, Block.tilledField, Block.slowSand, Block.mycelium};
public float efficiencyOnProperMaterial = 12.0F; public float efficiencyOnProperMaterial = 12.0F;
/** Damage versus entities. */ /**
* Damage versus entities.
*/
public float damageVsEntity; public float damageVsEntity;
private static Icon activeIcon; private static Icon activeIcon;
@ -73,8 +75,7 @@ public class BoundShovel extends ItemSpade implements IBindable
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }
@ -108,8 +109,7 @@ public class BoundShovel extends ItemSpade implements IBindable
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -123,7 +123,7 @@ public class BoundShovel extends ItemSpade implements IBindable
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
this.setActivated(par1ItemStack, !getActivated(par1ItemStack)); this.setActivated(par1ItemStack, !getActivated(par1ItemStack));
par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % 200); par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % 200);
return par1ItemStack; return par1ItemStack;
} }
@ -137,9 +137,9 @@ public class BoundShovel extends ItemSpade implements IBindable
return par1ItemStack; return par1ItemStack;
} }
int posX = (int)par3EntityPlayer.posX; int posX = (int) par3EntityPlayer.posX;
int posY = (int)par3EntityPlayer.posY; int posY = (int) par3EntityPlayer.posY;
int posZ = (int)par3EntityPlayer.posZ; int posZ = (int) par3EntityPlayer.posZ;
boolean silkTouch = false; boolean silkTouch = false;
int so = Enchantment.silkTouch.effectId; int so = Enchantment.silkTouch.effectId;
int fortune = Enchantment.fortune.effectId; int fortune = Enchantment.fortune.effectId;
@ -150,9 +150,9 @@ public class BoundShovel extends ItemSpade implements IBindable
{ {
for (int i = 0; i < enchants.tagCount(); i++) for (int i = 0; i < enchants.tagCount(); i++)
{ {
if (enchants.tagAt(i)instanceof NBTTagCompound) if (enchants.tagAt(i) instanceof NBTTagCompound)
{ {
NBTTagCompound nbt = (NBTTagCompound)enchants.tagAt(i); NBTTagCompound nbt = (NBTTagCompound) enchants.tagAt(i);
int id = nbt.getShort("id"); int id = nbt.getShort("id");
if (id == so) if (id == so)
@ -192,8 +192,7 @@ public class BoundShovel extends ItemSpade implements IBindable
{ {
par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem)); par2World.spawnEntityInWorld(new EntityItem(par2World, posX, posY + par3EntityPlayer.getEyeHeight(), posZ, droppedItem));
} }
} } else
else
{ {
ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl); ArrayList<ItemStack> itemDropList = block.getBlockDropped(par2World, posX + i, posY + j, posZ + k, meta, fortuneLvl);
@ -228,7 +227,7 @@ public class BoundShovel extends ItemSpade implements IBindable
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {
@ -307,7 +306,7 @@ public class BoundShovel extends ItemSpade implements IBindable
public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase) public boolean onBlockDestroyed(ItemStack par1ItemStack, World par2World, int par3, int par4, int par5, int par6, EntityLivingBase par7EntityLivingBase)
{ {
if ((double)Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D) if ((double) Block.blocksList[par3].getBlockHardness(par2World, par4, par5, par6) != 0.0D)
{ {
//par1ItemStack.damageItem(1, par7EntityLivingBase); //par1ItemStack.damageItem(1, par7EntityLivingBase);
} }
@ -340,16 +339,17 @@ public class BoundShovel extends ItemSpade implements IBindable
// { // {
// return false; // return false;
// } // }
@Override @Override
public Multimap getItemAttributeModifiers() public Multimap getItemAttributeModifiers()
{ {
Multimap multimap = super.getItemAttributeModifiers(); Multimap multimap = super.getItemAttributeModifiers();
multimap.put(SharedMonsterAttributes.attackDamage.getAttributeUnlocalizedName(), new AttributeModifier(field_111210_e, "Tool modifier", (double)this.damageVsEntity, 0)); multimap.put(SharedMonsterAttributes.attackDamage.getAttributeUnlocalizedName(), new AttributeModifier(field_111210_e, "Tool modifier", (double) this.damageVsEntity, 0));
return multimap; return multimap;
} }
/** FORGE: Overridden to allow custom tool effectiveness */ /**
* FORGE: Overridden to allow custom tool effectiveness
*/
@Override @Override
public float getStrVsBlock(ItemStack stack, Block block, int meta) public float getStrVsBlock(ItemStack stack, Block block, int meta)
{ {

View file

@ -1,7 +1,13 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable;
import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item; import net.minecraft.item.Item;
@ -11,14 +17,8 @@ import net.minecraft.server.MinecraftServer;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.FakePlayer; import net.minecraftforge.common.FakePlayer;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable; import java.util.List;
import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class CheatyItem extends Item implements IBindable public class CheatyItem extends Item implements IBindable
{ {
@ -65,6 +65,7 @@ public class CheatyItem extends Item implements IBindable
//par3List.add("LP: " + par2EntityPlayer.getEntityData().getInteger("currentEssence")); //par3List.add("LP: " + par2EntityPlayer.getEntityData().getInteger("currentEssence"));
} }
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{ {
EnergyItems.checkAndSetItemOwner(par1ItemStack, par3EntityPlayer); EnergyItems.checkAndSetItemOwner(par1ItemStack, par3EntityPlayer);
@ -80,8 +81,8 @@ public class CheatyItem extends Item implements IBindable
double posX = par3EntityPlayer.posX; double posX = par3EntityPlayer.posX;
double posY = par3EntityPlayer.posY; double posY = par3EntityPlayer.posY;
double posZ = par3EntityPlayer.posZ; double posZ = par3EntityPlayer.posZ;
world.playSoundEffect((double)((float)posX + 0.5F), (double)((float)posY + 0.5F), (double)((float)posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) posX + 0.5F), (double) ((float) posY + 0.5F), (double) ((float) posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short)4)); PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short) 4));
} }
if (!par3EntityPlayer.worldObj.isRemote) if (!par3EntityPlayer.worldObj.isRemote)
@ -99,8 +100,7 @@ public class CheatyItem extends Item implements IBindable
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
PacketDispatcher.sendPacketToServer(PacketHandler.getCreativeCheatPacket(itemTag.getString("ownerName"), false)); PacketDispatcher.sendPacketToServer(PacketHandler.getCreativeCheatPacket(itemTag.getString("ownerName"), false));
} } else
else
{ {
PacketDispatcher.sendPacketToServer(PacketHandler.getCreativeCheatPacket(itemTag.getString("ownerName"), true)); PacketDispatcher.sendPacketToServer(PacketHandler.getCreativeCheatPacket(itemTag.getString("ownerName"), true));
} }
@ -139,8 +139,8 @@ public class CheatyItem extends Item implements IBindable
double posX = player.posX; double posX = player.posX;
double posY = player.posY; double posY = player.posY;
double posZ = player.posZ; double posZ = player.posZ;
world.playSoundEffect((double)((float)posX + 0.5F), (double)((float)posY + 0.5F), (double)((float)posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) posX + 0.5F), (double) ((float) posY + 0.5F), (double) ((float) posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
float f = (float)1.0F; float f = (float) 1.0F;
float f1 = f * 0.6F + 0.4F; float f1 = f * 0.6F + 0.4F;
float f2 = f * f * 0.7F - 0.5F; float f2 = f * f * 0.7F - 0.5F;
float f3 = f * f * 0.6F - 0.7F; float f3 = f * f * 0.6F - 0.7F;
@ -234,7 +234,7 @@ public class CheatyItem extends Item implements IBindable
String owner = itemTag.getString("ownerName"); String owner = itemTag.getString("ownerName");
World worldSave = MinecraftServer.getServer().worldServers[0]; World worldSave = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)worldSave.loadItemData(LifeEssenceNetwork.class, owner); LifeEssenceNetwork data = (LifeEssenceNetwork) worldSave.loadItemData(LifeEssenceNetwork.class, owner);
if (data == null) if (data == null)
{ {

View file

@ -1,7 +1,11 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import com.google.common.collect.Multimap;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block; import net.minecraft.block.Block;
import net.minecraft.block.material.Material; import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
@ -21,18 +25,13 @@ import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import com.google.common.collect.Multimap; import java.util.List;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class DaggerOfSacrifice extends EnergyItems public class DaggerOfSacrifice extends EnergyItems
{ {
private float weaponDamage; private float weaponDamage;
public DaggerOfSacrifice(int id) public DaggerOfSacrifice(int id)
{ {
super(id); super(id);
@ -80,7 +79,7 @@ public class DaggerOfSacrifice extends EnergyItems
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short)1)); PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short) 1));
} }
par2EntityLivingBase.setHealth(-1); par2EntityLivingBase.setHealth(-1);
@ -99,7 +98,7 @@ public class DaggerOfSacrifice extends EnergyItems
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short)1)); PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short) 1));
} }
par2EntityLivingBase.setHealth(-1); par2EntityLivingBase.setHealth(-1);
@ -118,7 +117,7 @@ public class DaggerOfSacrifice extends EnergyItems
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short)1)); PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short) 1));
} }
par2EntityLivingBase.setHealth(-1); par2EntityLivingBase.setHealth(-1);
@ -137,7 +136,7 @@ public class DaggerOfSacrifice extends EnergyItems
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short)1)); PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short) 1));
} }
par2EntityLivingBase.setHealth(-1); par2EntityLivingBase.setHealth(-1);
@ -154,7 +153,7 @@ public class DaggerOfSacrifice extends EnergyItems
for (int i = 0; i < 8; i++) for (int i = 0; i < 8; i++)
{ {
PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short)1)); PacketDispatcher.sendPacketToAllPlayers(TEAltar.getParticlePacket(posX, posY, posZ, (short) 1));
} }
par2EntityLivingBase.setHealth(-1); par2EntityLivingBase.setHealth(-1);
@ -183,8 +182,7 @@ public class DaggerOfSacrifice extends EnergyItems
if (par2Block.blockID == Block.web.blockID) if (par2Block.blockID == Block.web.blockID)
{ {
return 15.0F; return 15.0F;
} } else
else
{ {
Material material = par2Block.blockMaterial; Material material = par2Block.blockMaterial;
return material != Material.plants && material != Material.vine && material != Material.coral && material != Material.leaves && material != Material.pumpkin ? 1.0F : 1.5F; return material != Material.plants && material != Material.vine && material != Material.coral && material != Material.leaves && material != Material.pumpkin ? 1.0F : 1.5F;
@ -208,9 +206,9 @@ public class DaggerOfSacrifice extends EnergyItems
public boolean findAndFillAltar(World world, EntityLivingBase sacrifice, int amount) public boolean findAndFillAltar(World world, EntityLivingBase sacrifice, int amount)
{ {
int posX = (int)Math.round(sacrifice.posX - 0.5f); int posX = (int) Math.round(sacrifice.posX - 0.5f);
int posY = (int)sacrifice.posY; int posY = (int) sacrifice.posY;
int posZ = (int)Math.round(sacrifice.posZ - 0.5f); int posZ = (int) Math.round(sacrifice.posZ - 0.5f);
TEAltar altarEntity = this.getAltar(world, posX, posY, posZ); TEAltar altarEntity = this.getAltar(world, posX, posY, posZ);
if (altarEntity == null) if (altarEntity == null)
@ -237,25 +235,25 @@ public class DaggerOfSacrifice extends EnergyItems
if ((tileEntity instanceof TEAltar)) if ((tileEntity instanceof TEAltar))
{ {
return (TEAltar)tileEntity; return (TEAltar) tileEntity;
} }
} }
if ((tileEntity instanceof TEAltar)) if ((tileEntity instanceof TEAltar))
{ {
return (TEAltar)tileEntity; return (TEAltar) tileEntity;
} }
} }
if ((tileEntity instanceof TEAltar)) if ((tileEntity instanceof TEAltar))
{ {
return (TEAltar)tileEntity; return (TEAltar) tileEntity;
} }
} }
if ((tileEntity instanceof TEAltar)) if ((tileEntity instanceof TEAltar))
{ {
return (TEAltar)tileEntity; return (TEAltar) tileEntity;
} }
return null; return null;

View file

@ -1,30 +1,22 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityEggInfo;
import net.minecraft.entity.EntityList;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumMovingObjectType;
import net.minecraft.util.Facing;
import net.minecraft.util.Icon;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon; import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon;
import WayofTime.alchemicalWizardry.common.summoning.SummoningRegistry; import WayofTime.alchemicalWizardry.common.summoning.SummoningRegistry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.*;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.*;
import net.minecraft.world.World;
import java.util.List;
public class DemonPlacer extends Item public class DemonPlacer extends Item
{ {
@ -56,7 +48,7 @@ public class DemonPlacer extends Item
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
public int getColorFromItemStack(ItemStack par1ItemStack, int par2) public int getColorFromItemStack(ItemStack par1ItemStack, int par2)
{ {
EntityEggInfo entityegginfo = (EntityEggInfo)EntityList.entityEggs.get(Integer.valueOf(par1ItemStack.getItemDamage())); EntityEggInfo entityegginfo = (EntityEggInfo) EntityList.entityEggs.get(Integer.valueOf(par1ItemStack.getItemDamage()));
return entityegginfo != null ? (par2 == 0 ? entityegginfo.primaryColor : entityegginfo.secondaryColor) : 16777215; return entityegginfo != null ? (par2 == 0 ? entityegginfo.primaryColor : entityegginfo.secondaryColor) : 16777215;
} }
@ -69,8 +61,7 @@ public class DemonPlacer extends Item
if (par3World.isRemote) if (par3World.isRemote)
{ {
return true; return true;
} } else
else
{ {
int i1 = par3World.getBlockId(par4, par5, par6); int i1 = par3World.getBlockId(par4, par5, par6);
par4 += Facing.offsetsXForSide[par7]; par4 += Facing.offsetsXForSide[par7];
@ -83,13 +74,13 @@ public class DemonPlacer extends Item
d0 = 0.5D; d0 = 0.5D;
} }
Entity entity = spawnCreature(par3World, par1ItemStack.getItemDamage(), (double)par4 + 0.5D, (double)par5 + d0, (double)par6 + 0.5D, par1ItemStack); Entity entity = spawnCreature(par3World, par1ItemStack.getItemDamage(), (double) par4 + 0.5D, (double) par5 + d0, (double) par6 + 0.5D, par1ItemStack);
if (entity != null) if (entity != null)
{ {
if (entity instanceof EntityLivingBase && par1ItemStack.hasDisplayName()) if (entity instanceof EntityLivingBase && par1ItemStack.hasDisplayName())
{ {
((EntityLiving)entity).setCustomNameTag(par1ItemStack.getDisplayName()); ((EntityLiving) entity).setCustomNameTag(par1ItemStack.getDisplayName());
} }
if (!par2EntityPlayer.capabilities.isCreativeMode) if (!par2EntityPlayer.capabilities.isCreativeMode)
@ -110,16 +101,14 @@ public class DemonPlacer extends Item
if (par2World.isRemote) if (par2World.isRemote)
{ {
return par1ItemStack; return par1ItemStack;
} } else
else
{ {
MovingObjectPosition movingobjectposition = this.getMovingObjectPositionFromPlayer(par2World, par3EntityPlayer, true); MovingObjectPosition movingobjectposition = this.getMovingObjectPositionFromPlayer(par2World, par3EntityPlayer, true);
if (movingobjectposition == null) if (movingobjectposition == null)
{ {
return par1ItemStack; return par1ItemStack;
} } else
else
{ {
if (movingobjectposition.typeOfHit == EnumMovingObjectType.TILE) if (movingobjectposition.typeOfHit == EnumMovingObjectType.TILE)
{ {
@ -139,13 +128,13 @@ public class DemonPlacer extends Item
if (par2World.getBlockMaterial(i, j, k) == Material.water) if (par2World.getBlockMaterial(i, j, k) == Material.water)
{ {
Entity entity = spawnCreature(par2World, par1ItemStack.getItemDamage(), (double)i, (double)j, (double)k, par1ItemStack); Entity entity = spawnCreature(par2World, par1ItemStack.getItemDamage(), (double) i, (double) j, (double) k, par1ItemStack);
if (entity != null) if (entity != null)
{ {
if (entity instanceof EntityLivingBase && par1ItemStack.hasDisplayName()) if (entity instanceof EntityLivingBase && par1ItemStack.hasDisplayName())
{ {
((EntityLiving)entity).setCustomNameTag(par1ItemStack.getDisplayName()); ((EntityLiving) entity).setCustomNameTag(par1ItemStack.getDisplayName());
} }
if (!par3EntityPlayer.capabilities.isCreativeMode) if (!par3EntityPlayer.capabilities.isCreativeMode)
@ -181,7 +170,7 @@ public class DemonPlacer extends Item
if (entity != null && entity instanceof EntityLivingBase) if (entity != null && entity instanceof EntityLivingBase)
{ {
EntityLiving entityliving = (EntityLiving)entity; EntityLiving entityliving = (EntityLiving) entity;
entity.setLocationAndAngles(par2, par4, par6, MathHelper.wrapAngleTo180_float(par0World.rand.nextFloat() * 360.0F), 0.0F); entity.setLocationAndAngles(par2, par4, par6, MathHelper.wrapAngleTo180_float(par0World.rand.nextFloat() * 360.0F), 0.0F);
entityliving.rotationYawHead = entityliving.rotationYaw; entityliving.rotationYawHead = entityliving.rotationYaw;
entityliving.renderYawOffset = entityliving.rotationYaw; entityliving.renderYawOffset = entityliving.rotationYaw;
@ -189,11 +178,11 @@ public class DemonPlacer extends Item
//entityliving.onSpawnWithEgg((EntityLivingData)null); //entityliving.onSpawnWithEgg((EntityLivingData)null);
if (entityliving instanceof EntityDemon) if (entityliving instanceof EntityDemon)
{ {
((EntityDemon)entityliving).setOwner(DemonPlacer.getOwnerName(itemStack)); ((EntityDemon) entityliving).setOwner(DemonPlacer.getOwnerName(itemStack));
if (!DemonPlacer.getOwnerName(itemStack).equals("")) if (!DemonPlacer.getOwnerName(itemStack).equals(""))
{ {
((EntityDemon)entityliving).setTamed(true); ((EntityDemon) entityliving).setTamed(true);
} }
} }

View file

@ -1,13 +1,13 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import java.util.List;
public class DemonicTelepositionFocus extends TelepositionFocus public class DemonicTelepositionFocus extends TelepositionFocus
{ {

View file

@ -1,8 +1,8 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import net.minecraft.client.renderer.texture.IconRegister;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
public class DuskScribeTool extends ScribeTool public class DuskScribeTool extends ScribeTool
{ {

View file

@ -1,10 +1,10 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly; import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item;
public class EarthInk extends Item public class EarthInk extends Item
{ {

View file

@ -1,7 +1,10 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.*;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.entity.player.EntityPlayerMP;
@ -12,15 +15,8 @@ import net.minecraft.server.MinecraftServer;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.common.FakePlayer; import net.minecraftforge.common.FakePlayer;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.ArmourUpgrade; import java.util.List;
import WayofTime.alchemicalWizardry.common.IBindable;
import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class EnergyBattery extends Item implements ArmourUpgrade, IBindable public class EnergyBattery extends Item implements ArmourUpgrade, IBindable
{ {
@ -65,6 +61,7 @@ public class EnergyBattery extends Item implements ArmourUpgrade, IBindable
//par3List.add("LP: " + par2EntityPlayer.getEntityData().getInteger("currentEssence")); //par3List.add("LP: " + par2EntityPlayer.getEntityData().getInteger("currentEssence"));
} }
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer) public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{ {
EnergyItems.checkAndSetItemOwner(par1ItemStack, par3EntityPlayer); EnergyItems.checkAndSetItemOwner(par1ItemStack, par3EntityPlayer);
@ -80,8 +77,8 @@ public class EnergyBattery extends Item implements ArmourUpgrade, IBindable
double posX = par3EntityPlayer.posX; double posX = par3EntityPlayer.posX;
double posY = par3EntityPlayer.posY; double posY = par3EntityPlayer.posY;
double posZ = par3EntityPlayer.posZ; double posZ = par3EntityPlayer.posZ;
world.playSoundEffect((double)((float)posX + 0.5F), (double)((float)posY + 0.5F), (double)((float)posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) posX + 0.5F), (double) ((float) posY + 0.5F), (double) ((float) posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short)4)); PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short) 4));
} }
if (!par3EntityPlayer.worldObj.isRemote && !(par3EntityPlayer.getClass().equals(EntityPlayerMP.class))) if (!par3EntityPlayer.worldObj.isRemote && !(par3EntityPlayer.getClass().equals(EntityPlayerMP.class)))
@ -135,8 +132,8 @@ public class EnergyBattery extends Item implements ArmourUpgrade, IBindable
double posX = player.posX; double posX = player.posX;
double posY = player.posY; double posY = player.posY;
double posZ = player.posZ; double posZ = player.posZ;
world.playSoundEffect((double)((float)posX + 0.5F), (double)((float)posY + 0.5F), (double)((float)posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) posX + 0.5F), (double) ((float) posY + 0.5F), (double) ((float) posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
float f = (float)1.0F; float f = (float) 1.0F;
float f1 = f * 0.6F + 0.4F; float f1 = f * 0.6F + 0.4F;
float f2 = f * f * 0.7F - 0.5F; float f2 = f * f * 0.7F - 0.5F;
float f3 = f * f * 0.6F - 0.7F; float f3 = f * f * 0.6F - 0.7F;
@ -230,7 +227,7 @@ public class EnergyBattery extends Item implements ArmourUpgrade, IBindable
String owner = itemTag.getString("ownerName"); String owner = itemTag.getString("ownerName");
World worldSave = MinecraftServer.getServer().worldServers[0]; World worldSave = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)worldSave.loadItemData(LifeEssenceNetwork.class, owner); LifeEssenceNetwork data = (LifeEssenceNetwork) worldSave.loadItemData(LifeEssenceNetwork.class, owner);
if (data == null) if (data == null)
{ {

View file

@ -1,7 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
@ -10,10 +12,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.util.Vec3; import net.minecraft.util.Vec3;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.entity.projectile.EntityEnergyBazookaMainProjectile; import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class EnergyBazooka extends EnergyItems public class EnergyBazooka extends EnergyItems
{ {
@ -22,6 +22,7 @@ public class EnergyBazooka extends EnergyItems
private static int damage; private static int damage;
//private static int delay; //private static int delay;
private static final int maxDelay = 150; private static final int maxDelay = 150;
public EnergyBazooka(int id) public EnergyBazooka(int id)
{ {
super(id); super(id);
@ -56,8 +57,7 @@ public class EnergyBazooka extends EnergyItems
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -71,7 +71,7 @@ public class EnergyBazooka extends EnergyItems
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
this.setActivated(par1ItemStack, !getActivated(par1ItemStack)); this.setActivated(par1ItemStack, !getActivated(par1ItemStack));
par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % 100); par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % 100);
return par1ItemStack; return par1ItemStack;
} }
@ -104,7 +104,7 @@ public class EnergyBazooka extends EnergyItems
par3EntityPlayer.motionX = -vec.xCoord * wantedVelocity; par3EntityPlayer.motionX = -vec.xCoord * wantedVelocity;
par3EntityPlayer.motionY = -vec.yCoord * wantedVelocity; par3EntityPlayer.motionY = -vec.yCoord * wantedVelocity;
par3EntityPlayer.motionZ = -vec.zCoord * wantedVelocity; par3EntityPlayer.motionZ = -vec.zCoord * wantedVelocity;
par2World.playSoundEffect((double)((float)par3EntityPlayer.posX + 0.5F), (double)((float)par3EntityPlayer.posY + 0.5F), (double)((float)par3EntityPlayer.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (par2World.rand.nextFloat() - par2World.rand.nextFloat()) * 0.8F); par2World.playSoundEffect((double) ((float) par3EntityPlayer.posX + 0.5F), (double) ((float) par3EntityPlayer.posY + 0.5F), (double) ((float) par3EntityPlayer.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (par2World.rand.nextFloat() - par2World.rand.nextFloat()) * 0.8F);
par3EntityPlayer.fallDistance = 0; par3EntityPlayer.fallDistance = 0;
return par1ItemStack; return par1ItemStack;
} }
@ -117,7 +117,7 @@ public class EnergyBazooka extends EnergyItems
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {
@ -157,8 +157,7 @@ public class EnergyBazooka extends EnergyItems
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }

View file

@ -1,7 +1,9 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import java.util.List; import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
@ -9,10 +11,8 @@ import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.Icon; import net.minecraft.util.Icon;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile; import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class EnergyBlast extends EnergyItems public class EnergyBlast extends EnergyItems
{ {
@ -21,6 +21,7 @@ public class EnergyBlast extends EnergyItems
private static int damage; private static int damage;
//private static int delay; //private static int delay;
private static final int maxDelay = 15; private static final int maxDelay = 15;
public EnergyBlast(int id) public EnergyBlast(int id)
{ {
super(id); super(id);
@ -56,8 +57,7 @@ public class EnergyBlast extends EnergyItems
if (tag.getBoolean("isActive")) if (tag.getBoolean("isActive"))
{ {
return this.activeIcon; return this.activeIcon;
} } else
else
{ {
return this.passiveIcon; return this.passiveIcon;
} }
@ -71,7 +71,7 @@ public class EnergyBlast extends EnergyItems
if (par3EntityPlayer.isSneaking()) if (par3EntityPlayer.isSneaking())
{ {
this.setActivated(par1ItemStack, !getActivated(par1ItemStack)); this.setActivated(par1ItemStack, !getActivated(par1ItemStack));
par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int)(par2World.getWorldTime() - 1) % 100); par1ItemStack.stackTagCompound.setInteger("worldTimeDelay", (int) (par2World.getWorldTime() - 1) % 100);
return par1ItemStack; return par1ItemStack;
} }
@ -110,7 +110,7 @@ public class EnergyBlast extends EnergyItems
return; return;
} }
EntityPlayer par3EntityPlayer = (EntityPlayer)par3Entity; EntityPlayer par3EntityPlayer = (EntityPlayer) par3Entity;
if (par1ItemStack.stackTagCompound == null) if (par1ItemStack.stackTagCompound == null)
{ {
@ -152,8 +152,7 @@ public class EnergyBlast extends EnergyItems
if (par1ItemStack.stackTagCompound.getBoolean("isActive")) if (par1ItemStack.stackTagCompound.getBoolean("isActive"))
{ {
par3List.add("Activated"); par3List.add("Activated");
} } else
else
{ {
par3List.add("Deactivated"); par3List.add("Deactivated");
} }

View file

@ -1,5 +1,11 @@
package WayofTime.alchemicalWizardry.common.items; package WayofTime.alchemicalWizardry.common.items;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable;
import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item; import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
@ -7,12 +13,6 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.server.MinecraftServer; import net.minecraft.server.MinecraftServer;
import net.minecraft.util.DamageSource; import net.minecraft.util.DamageSource;
import net.minecraft.world.World; import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.common.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.IBindable;
import WayofTime.alchemicalWizardry.common.LifeEssenceNetwork;
import WayofTime.alchemicalWizardry.common.PacketHandler;
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
import cpw.mods.fml.common.network.PacketDispatcher;
public class EnergyItems extends Item implements IBindable public class EnergyItems extends Item implements IBindable
{ {
@ -43,8 +43,8 @@ public class EnergyItems extends Item implements IBindable
double posX = player.posX; double posX = player.posX;
double posY = player.posY; double posY = player.posY;
double posZ = player.posZ; double posZ = player.posZ;
world.playSoundEffect((double)((float)posX + 0.5F), (double)((float)posY + 0.5F), (double)((float)posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) posX + 0.5F), (double) ((float) posY + 0.5F), (double) ((float) posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
float f = (float)1.0F; float f = (float) 1.0F;
float f1 = f * 0.6F + 0.4F; float f1 = f * 0.6F + 0.4F;
float f2 = f * f * 0.7F - 0.5F; float f2 = f * f * 0.7F - 0.5F;
float f3 = f * f * 0.6F - 0.7F; float f3 = f * f * 0.6F - 0.7F;
@ -88,8 +88,8 @@ public class EnergyItems extends Item implements IBindable
if (particles) if (particles)
{ {
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short)4)); PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short) 4));
world.playSoundEffect((double)((float)player.posX + 0.5F), (double)((float)player.posY + 0.5F), (double)((float)player.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) player.posX + 0.5F), (double) ((float) player.posY + 0.5F), (double) ((float) player.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
} }
} }
@ -100,8 +100,7 @@ public class EnergyItems extends Item implements IBindable
PacketDispatcher.sendPacketToServer(PacketHandler.getPacket(itemTag.getString("ownerName"), -damageToBeDone, 0)); PacketDispatcher.sendPacketToServer(PacketHandler.getPacket(itemTag.getString("ownerName"), -damageToBeDone, 0));
return true; return true;
} } else
else
{ {
return true; return true;
} }
@ -112,8 +111,7 @@ public class EnergyItems extends Item implements IBindable
if (!player.worldObj.isRemote) if (!player.worldObj.isRemote)
{ {
return syphonAndDamageWhileInContainer(ist, player, damageToBeDone); return syphonAndDamageWhileInContainer(ist, player, damageToBeDone);
} } else
else
{ {
World world = player.worldObj; World world = player.worldObj;
@ -124,8 +122,8 @@ public class EnergyItems extends Item implements IBindable
double posZ = player.posZ; double posZ = player.posZ;
//if(particles) //if(particles)
{ {
PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short)4)); PacketDispatcher.sendPacketToAllAround(posX, posY, posZ, 20, world.provider.dimensionId, TEAltar.getParticlePacket(posX, posY, posZ, (short) 4));
world.playSoundEffect((double)((float)player.posX + 0.5F), (double)((float)player.posY + 0.5F), (double)((float)player.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F); world.playSoundEffect((double) ((float) player.posX + 0.5F), (double) ((float) player.posY + 0.5F), (double) ((float) player.posZ + 0.5F), "random.fizz", 0.5F, 2.6F + (world.rand.nextFloat() - world.rand.nextFloat()) * 0.8F);
} }
} }
} }
@ -146,7 +144,7 @@ public class EnergyItems extends Item implements IBindable
} }
World world = MinecraftServer.getServer().worldServers[0]; World world = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)world.loadItemData(LifeEssenceNetwork.class, ownerName); LifeEssenceNetwork data = (LifeEssenceNetwork) world.loadItemData(LifeEssenceNetwork.class, ownerName);
if (data == null) if (data == null)
{ {
@ -187,7 +185,7 @@ public class EnergyItems extends Item implements IBindable
} }
World world = MinecraftServer.getServer().worldServers[0]; World world = MinecraftServer.getServer().worldServers[0];
LifeEssenceNetwork data = (LifeEssenceNetwork)world.loadItemData(LifeEssenceNetwork.class, ownerName); LifeEssenceNetwork data = (LifeEssenceNetwork) world.loadItemData(LifeEssenceNetwork.class, ownerName);
if (data == null) if (data == null)
{ {
@ -221,11 +219,10 @@ public class EnergyItems extends Item implements IBindable
if (user.getHealth() <= 0.1f) if (user.getHealth() <= 0.1f)
{ {
user.onDeath(DamageSource.generic); user.onDeath(DamageSource.generic);
} }
} }
} } else if (energySyphoned >= 100)
else if (energySyphoned >= 100)
{ {
if (!user.capabilities.isCreativeMode) if (!user.capabilities.isCreativeMode)
{ {

Some files were not shown because too many files have changed in this diff Show more