Way being picky.

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

View file

@ -6,7 +6,8 @@ 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;
public class TestingBlock extends Block { public class TestingBlock extends Block
{
public TestingBlock(int id, Material material) public TestingBlock(int id, Material material)
{ {
super(id, material); super(id, material);

View file

@ -21,7 +21,8 @@ import cpw.mods.fml.client.registry.RenderingRegistry;
import net.minecraft.world.World; import net.minecraft.world.World;
import net.minecraftforge.client.MinecraftForgeClient; import net.minecraftforge.client.MinecraftForgeClient;
public class ClientProxy extends CommonProxy { public class ClientProxy extends CommonProxy
{
public static int renderPass; public static int renderPass;
public static int altarRenderType; public static int altarRenderType;

View file

@ -57,7 +57,8 @@ import java.lang.reflect.Modifier;
@Mod(modid = "AWWayofTime", name = "AlchemicalWizardry", version = "v0.7.2") @Mod(modid = "AWWayofTime", name = "AlchemicalWizardry", version = "v0.7.2")
@NetworkMod(clientSideRequired = true, serverSideRequired = false, channels = {"BloodAltar", "particle", "SetLifeEssence", "GetLifeEssence", "Ritual", "GetAltarEssence", "TESocket", "TEWritingTable", "CustomParticle", "SetPlayerVel", "SetPlayerPos", "TEPedestal", "TEPlinth", "TETeleposer", "InfiniteLPPath", "TEOrientor"}, packetHandler = PacketHandler.class) @NetworkMod(clientSideRequired = true, serverSideRequired = false, channels = {"BloodAltar", "particle", "SetLifeEssence", "GetLifeEssence", "Ritual", "GetAltarEssence", "TESocket", "TEWritingTable", "CustomParticle", "SetPlayerVel", "SetPlayerPos", "TEPedestal", "TEPlinth", "TETeleposer", "InfiniteLPPath", "TEOrientor"}, packetHandler = PacketHandler.class)
public class AlchemicalWizardry { public class AlchemicalWizardry
{
public static boolean doMeteorsDestroyBlocks = true; public static boolean doMeteorsDestroyBlocks = true;
public static String[] diamondMeteorArray; public static String[] diamondMeteorArray;
public static int diamondMeteorRadius; public static int diamondMeteorRadius;
@ -84,7 +85,8 @@ public class AlchemicalWizardry {
public static boolean isThaumcraftLoaded; public static boolean isThaumcraftLoaded;
public static CreativeTabs tabBloodMagic = new CreativeTabs("tabBloodMagic") { public static CreativeTabs tabBloodMagic = new CreativeTabs("tabBloodMagic")
{
public ItemStack getIconItemStack() public ItemStack getIconItemStack()
{ {
return new ItemStack(ModItems.weakBloodOrb, 1, 0); return new ItemStack(ModItems.weakBloodOrb, 1, 0);

View file

@ -18,7 +18,8 @@ import net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent;
import java.util.*; 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();

View file

@ -9,7 +9,8 @@ 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;
public class AlchemicalWizardryFuelHandler implements IFuelHandler { public class AlchemicalWizardryFuelHandler implements IFuelHandler
{
@Override @Override
public int getBurnTime(ItemStack fuel) public int getBurnTime(ItemStack fuel)
{ {

View file

@ -9,7 +9,8 @@ import net.minecraft.server.MinecraftServer;
import java.util.EnumSet; import java.util.EnumSet;
public class AlchemicalWizardryTickHandler implements ITickHandler { public class AlchemicalWizardryTickHandler implements ITickHandler
{
public void tickStart(EnumSet<TickType> type, Object... tickData) public void tickStart(EnumSet<TickType> type, Object... tickData)
{ {
} }

View file

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public class ArmourComponent { public class ArmourComponent
{
private int xOff; private int xOff;
private int zOff; private int zOff;

View file

@ -4,7 +4,8 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.world.World; import net.minecraft.world.World;
public interface ArmourUpgrade { public interface ArmourUpgrade
{
//Called when the armour ticks //Called when the armour ticks
public void onArmourUpdate(World world, EntityPlayer player, ItemStack thisItemStack); public void onArmourUpdate(World world, EntityPlayer player, ItemStack thisItemStack);

View file

@ -14,7 +14,8 @@ import java.util.logging.Level;
* Date: 17/01/14 * Date: 17/01/14
* Time: 19:50 * Time: 19:50
*/ */
public class BloodMagicConfiguration { public class BloodMagicConfiguration
{
public static Configuration config; public static Configuration config;

View file

@ -7,7 +7,8 @@ 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; import net.minecraft.world.World;
public class CommonProxy { public class CommonProxy
{
public static String ITEMS_PNG = "/WayofTime/alchemicalWizardry/items.png"; public static String ITEMS_PNG = "/WayofTime/alchemicalWizardry/items.png";
public static String BLOCK_PNG = "/WayofTime/alchemicalWizardry/block.png"; public static String BLOCK_PNG = "/WayofTime/alchemicalWizardry/block.png";

View file

@ -1,4 +1,5 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public class EntityAIFly { public class EntityAIFly
{
} }

View file

@ -3,7 +3,8 @@ package WayofTime.alchemicalWizardry.common;
import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon; import WayofTime.alchemicalWizardry.common.entity.mob.EntityDemon;
import net.minecraft.entity.ai.EntityAINearestAttackableTarget; import net.minecraft.entity.ai.EntityAINearestAttackableTarget;
public class EntityAITargetAggro extends EntityAINearestAttackableTarget { public class EntityAITargetAggro extends EntityAINearestAttackableTarget
{
private EntityDemon theCreature; private EntityDemon theCreature;
public EntityAITargetAggro(EntityDemon par1EntityDemon, Class par2Class, int par3, boolean par4) public EntityAITargetAggro(EntityDemon par1EntityDemon, Class par2Class, int par3, boolean par4)

View file

@ -10,7 +10,8 @@ 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;
public class EntityAirElemental extends EntityElemental implements IMob { public class EntityAirElemental extends EntityElemental implements IMob
{
public EntityAirElemental(World world) public EntityAirElemental(World world)
{ {
super(world, AlchemicalWizardry.entityAirElementalID); super(world, AlchemicalWizardry.entityAirElementalID);

View file

@ -1,4 +1,5 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public class EnumToolMaterialBoundBlood { public class EnumToolMaterialBoundBlood
{
} }

View file

@ -1,4 +1,5 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public interface IBindable { public interface IBindable
{
} }

View file

@ -1,5 +1,6 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public interface IBindingAgent { public interface IBindingAgent
{
public abstract float getSuccessRateForPotionNumber(int potionEffects); public abstract float getSuccessRateForPotionNumber(int potionEffects);
} }

View file

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common; 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

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public interface IDemon { public interface IDemon
{
public abstract void setSummonedConditions(); public abstract void setSummonedConditions();
public boolean isAggro(); public boolean isAggro();

View file

@ -1,5 +1,6 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public interface IFillingAgent { public interface IFillingAgent
{
public abstract int getFilledAmountForPotionNumber(int potionEffects); public abstract int getFilledAmountForPotionNumber(int potionEffects);
} }

View file

@ -7,7 +7,8 @@ import net.minecraftforge.event.Event.Result;
import net.minecraftforge.event.ForgeSubscribe; import net.minecraftforge.event.ForgeSubscribe;
import net.minecraftforge.event.entity.player.FillBucketEvent; import net.minecraftforge.event.entity.player.FillBucketEvent;
public class LifeBucketHandler { public class LifeBucketHandler
{
@ForgeSubscribe @ForgeSubscribe
public void onBucketFill(FillBucketEvent event) public void onBucketFill(FillBucketEvent event)
{ {

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraftforge.fluids.Fluid; import net.minecraftforge.fluids.Fluid;
public class LifeEssence extends Fluid { public class LifeEssence extends Fluid
{
public LifeEssence(String fluidName) public LifeEssence(String fluidName)
{ {
super(fluidName); super(fluidName);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.nbt.NBTTagCompound; 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)

View file

@ -12,7 +12,8 @@ import net.minecraft.creativetab.CreativeTabs;
* Date: 17/01/14 * Date: 17/01/14
* Time: 19:48 * Time: 19:48
*/ */
public class ModBlocks { public class ModBlocks
{
public static Block testingBlock; public static Block testingBlock;
public static Block bloodStoneBrick; public static Block bloodStoneBrick;

View file

@ -11,7 +11,8 @@ import net.minecraft.item.Item;
* Date: 17/01/14 * Date: 17/01/14
* Time: 19:48 * Time: 19:48
*/ */
public class ModItems { public class ModItems
{
public static Item orbOfTesting; public static Item orbOfTesting;

View file

@ -6,7 +6,8 @@ import net.minecraft.potion.PotionEffect;
import net.minecraftforge.event.ForgeSubscribe; import net.minecraftforge.event.ForgeSubscribe;
import net.minecraftforge.event.entity.living.LivingDropsEvent; import net.minecraftforge.event.entity.living.LivingDropsEvent;
public class ModLivingDropsEvent { public class ModLivingDropsEvent
{
public static double rand; public static double rand;
@ForgeSubscribe @ForgeSubscribe

View file

@ -21,7 +21,8 @@ import net.minecraftforge.fluids.FluidStack;
import java.io.*; import java.io.*;
import java.util.Random; import java.util.Random;
public class PacketHandler implements IPacketHandler { public class PacketHandler implements IPacketHandler
{
@Override @Override
public void onPacketData(INetworkManager manager, Packet250CustomPayload packet, Player player) public void onPacketData(INetworkManager manager, Packet250CustomPayload packet, Player player)
{ {

View file

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common; package WayofTime.alchemicalWizardry.common;
public class PlinthComponent { public class PlinthComponent
{
public int xOffset; public int xOffset;
public int yOffset; public int yOffset;
public int zOffset; public int zOffset;

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionBoost extends Potion { public class PotionBoost extends Potion
{
protected PotionBoost(int par1, boolean par2, int par3) protected PotionBoost(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionDrowning extends Potion { public class PotionDrowning extends Potion
{
protected PotionDrowning(int par1, boolean par2, int par3) protected PotionDrowning(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionFlight extends Potion { public class PotionFlight extends Potion
{
protected PotionFlight(int par1, boolean par2, int par3) protected PotionFlight(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionInhibit extends Potion { public class PotionInhibit extends Potion
{
protected PotionInhibit(int par1, boolean par2, int par3) protected PotionInhibit(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionProjectileProtect extends Potion { public class PotionProjectileProtect extends Potion
{
protected PotionProjectileProtect(int par1, boolean par2, int par3) protected PotionProjectileProtect(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common;
import net.minecraft.potion.Potion; import net.minecraft.potion.Potion;
public class PotionReciprocation extends Potion { public class PotionReciprocation extends Potion
{
protected PotionReciprocation(int par1, boolean par2, int par3) protected PotionReciprocation(int par1, boolean par2, int par3)
{ {
super(par1, par2, par3); super(par1, par2, par3);

View file

@ -8,7 +8,8 @@ import net.minecraft.potion.Potion;
import java.util.ArrayList; import java.util.ArrayList;
public class AlchemicalPotionCreationHandler { public class AlchemicalPotionCreationHandler
{
public static ArrayList<AlchemyPotionHandlerComponent> registeredPotionEffects = new ArrayList(); public static ArrayList<AlchemyPotionHandlerComponent> registeredPotionEffects = new ArrayList();
public static void initializePotions() public static void initializePotions()

View file

@ -3,7 +3,8 @@ package WayofTime.alchemicalWizardry.common.alchemy;
import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
public class AlchemyPotionHandlerComponent { public class AlchemyPotionHandlerComponent
{
private ItemStack itemStack; private ItemStack itemStack;
private int potionID; private int potionID;
private int tickDuration; private int tickDuration;

View file

@ -4,7 +4,8 @@ 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;
public class AlchemyPotionHelper { public class AlchemyPotionHelper
{
private int potionID; private int potionID;
private int tickDuration; private int tickDuration;
private int concentration; private int concentration;

View file

@ -4,7 +4,8 @@ import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary; import net.minecraftforge.oredict.OreDictionary;
public class AlchemyRecipe { public class AlchemyRecipe
{
private ItemStack output; private ItemStack output;
private ItemStack[] recipe; private ItemStack[] recipe;
private int bloodOrbLevel; private int bloodOrbLevel;

View file

@ -6,7 +6,8 @@ import net.minecraft.item.ItemStack;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
public class AlchemyRecipeRegistry { public class AlchemyRecipeRegistry
{
public static List<AlchemyRecipe> recipes = new ArrayList(); public static List<AlchemyRecipe> recipes = new ArrayList();
public static void registerRecipe(ItemStack output, int amountNeeded, ItemStack[] recipe, int bloodOrbLevel) public static void registerRecipe(ItemStack output, int amountNeeded, ItemStack[] recipe, int bloodOrbLevel)

View file

@ -25,7 +25,8 @@ import net.minecraft.world.World;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
public class ArmourForge extends Block { public class ArmourForge extends Block
{
public static List<ArmourComponent> helmetList = new ArrayList(); public static List<ArmourComponent> helmetList = new ArrayList();
public static List<ArmourComponent> plateList = new ArrayList(); public static List<ArmourComponent> plateList = new ArrayList();
public static List<ArmourComponent> leggingsList = new ArrayList(); public static List<ArmourComponent> leggingsList = new ArrayList();

View file

@ -24,7 +24,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class BlockAltar extends BlockContainer { public class BlockAltar extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -13,7 +13,8 @@ import net.minecraft.world.World;
import java.util.List; import java.util.List;
import java.util.Random; import java.util.Random;
public class BlockBloodLightSource extends Block { public class BlockBloodLightSource extends Block
{
public BlockBloodLightSource(int par1) public BlockBloodLightSource(int par1)
{ {
super(par1, Material.cloth); super(par1, Material.cloth);

View file

@ -13,7 +13,8 @@ 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;
public class BlockConduit extends BlockContainer { public class BlockConduit extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -16,7 +16,8 @@ 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;
public class BlockHomHeart extends BlockContainer { public class BlockHomHeart extends BlockContainer
{
public Icon bottomIcon; public Icon bottomIcon;
public Icon topIcon; public Icon topIcon;
public Icon sideIcon; public Icon sideIcon;

View file

@ -14,7 +14,8 @@ 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;
public class BlockMasterStone extends BlockContainer { public class BlockMasterStone extends BlockContainer
{
public BlockMasterStone(int id) public BlockMasterStone(int id)
{ {
super(id, Material.iron); super(id, Material.iron);

View file

@ -20,7 +20,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class BlockPedestal extends BlockContainer { public class BlockPedestal extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -20,7 +20,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class BlockPlinth extends BlockContainer { public class BlockPlinth extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -19,7 +19,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class BlockSocket extends BlockContainer { public class BlockSocket extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -21,7 +21,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class BlockTeleposer extends BlockContainer { public class BlockTeleposer extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -21,7 +21,8 @@ import net.minecraft.world.World;
import java.util.List; import java.util.List;
import java.util.Random; import java.util.Random;
public class BlockWritingTable extends BlockContainer { public class BlockWritingTable extends BlockContainer
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon topIcon; private static Icon topIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -13,7 +13,8 @@ import net.minecraft.util.Icon;
import java.util.List; import java.util.List;
public class BloodRune extends Block { public class BloodRune extends Block
{
//private Icon bloodRuneIcon; //private Icon bloodRuneIcon;
private Icon altarCapacityRuneIcon; private Icon altarCapacityRuneIcon;
private Icon dislocationRuneIcon; private Icon dislocationRuneIcon;

View file

@ -7,7 +7,8 @@ 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;
public class BloodStoneBrick extends Block { public class BloodStoneBrick extends Block
{
public BloodStoneBrick(int par1) public BloodStoneBrick(int par1)
{ {
super(par1, Material.iron); super(par1, Material.iron);

View file

@ -5,7 +5,8 @@ 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;
public class EfficiencyRune extends BloodRune { public class EfficiencyRune extends BloodRune
{
public EfficiencyRune(int id) public EfficiencyRune(int id)
{ {
super(id); super(id);

View file

@ -7,7 +7,8 @@ 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;
public class EmptySocket extends Block { public class EmptySocket extends Block
{
public EmptySocket(int par1) public EmptySocket(int par1)
{ {
super(par1, Material.iron); super(par1, Material.iron);

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common.block;
import net.minecraftforge.common.ForgeDirection; import net.minecraftforge.common.ForgeDirection;
public interface IOrientable { public interface IOrientable
{
public ForgeDirection getInputDirection(); public ForgeDirection getInputDirection();
public ForgeDirection getOutputDirection(); public ForgeDirection getOutputDirection();

View file

@ -15,7 +15,8 @@ import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect; import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World; import net.minecraft.world.World;
public class ImperfectRitualStone extends Block { public class ImperfectRitualStone extends Block
{
public ImperfectRitualStone(int id) public ImperfectRitualStone(int id)
{ {
super(id, Material.iron); super(id, Material.iron);

View file

@ -7,7 +7,8 @@ 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;
public class LargeBloodStoneBrick extends Block { public class LargeBloodStoneBrick extends Block
{
public LargeBloodStoneBrick(int par1) public LargeBloodStoneBrick(int par1)
{ {
super(par1, Material.iron); super(par1, Material.iron);

View file

@ -10,7 +10,8 @@ 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;
public class LifeEssenceBlock extends BlockFluidClassic { public class LifeEssenceBlock extends BlockFluidClassic
{
public LifeEssenceBlock(int id) public LifeEssenceBlock(int id)
{ {
super(id, AlchemicalWizardry.lifeEssenceFluid, Material.water); super(id, AlchemicalWizardry.lifeEssenceFluid, Material.water);

View file

@ -8,7 +8,8 @@ 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;
public class LifeEssenceFlowing extends BlockFlowing { public class LifeEssenceFlowing extends BlockFlowing
{
protected LifeEssenceFlowing(int par1) protected LifeEssenceFlowing(int par1)
{ {
super(par1, Material.water); super(par1, Material.water);

View file

@ -7,7 +7,8 @@ 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;
public class LifeEssenceStill extends BlockStationary { public class LifeEssenceStill extends BlockStationary
{
protected LifeEssenceStill(int par1) protected LifeEssenceStill(int par1)
{ {
super(par1, Material.water); super(par1, Material.water);

View file

@ -13,7 +13,8 @@ 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;
public class RitualStone extends Block { public class RitualStone extends Block
{
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
private static Icon blankIcon; private static Icon blankIcon;
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)

View file

@ -5,7 +5,8 @@ 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;
public class RuneOfSacrifice extends BloodRune { public class RuneOfSacrifice extends BloodRune
{
public RuneOfSacrifice(int id) public RuneOfSacrifice(int id)
{ {
super(id); super(id);

View file

@ -5,7 +5,8 @@ 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;
public class RuneOfSelfSacrifice extends BloodRune { public class RuneOfSelfSacrifice extends BloodRune
{
public RuneOfSelfSacrifice(int id) public RuneOfSelfSacrifice(int id)
{ {
super(id); super(id);

View file

@ -12,7 +12,8 @@ import net.minecraft.world.World;
import java.util.Random; import java.util.Random;
public class SpectralBlock extends Block { public class SpectralBlock extends Block
{
public SpectralBlock(int par1) public SpectralBlock(int par1)
{ {
super(par1, Material.rock); super(par1, Material.rock);

View file

@ -5,7 +5,8 @@ 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;
public class SpeedRune extends BloodRune { public class SpeedRune extends BloodRune
{
public SpeedRune(int id) public SpeedRune(int id)
{ {
super(id); super(id);

View file

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade; package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade;
public class AltarComponent { public class AltarComponent
{
private int x; private int x;
private int y; private int y;
private int z; private int z;

View file

@ -1,6 +1,7 @@
package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade; package WayofTime.alchemicalWizardry.common.bloodAltarUpgrade;
public class AltarUpgradeComponent { public class AltarUpgradeComponent
{
private int speedUpgrades; private int speedUpgrades;
private int efficiencyUpgrades; private int efficiencyUpgrades;
private int sacrificeUpgrades; private int sacrificeUpgrades;

View file

@ -9,7 +9,8 @@ import net.minecraft.world.World;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
public class UpgradedAltars { public class UpgradedAltars
{
public static List<AltarComponent> secondTierAltar = new ArrayList(); public static List<AltarComponent> secondTierAltar = new ArrayList();
public static List<AltarComponent> thirdTierAltar = new ArrayList(); public static List<AltarComponent> thirdTierAltar = new ArrayList();
public static List<AltarComponent> fourthTierAltar = new ArrayList(); public static List<AltarComponent> fourthTierAltar = new ArrayList();

View file

@ -23,7 +23,8 @@ 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;
public class EntityBileDemon extends EntityDemon { public class EntityBileDemon extends EntityDemon
{
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false); private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);
private static float maxTamedHealth = 100.0F; private static float maxTamedHealth = 100.0F;

View file

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

View file

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

View file

@ -9,7 +9,8 @@ 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;
public class EntityEarthElemental extends EntityElemental implements IMob { public class EntityEarthElemental extends EntityElemental implements IMob
{
public EntityEarthElemental(World world) public EntityEarthElemental(World world)
{ {
super(world, AlchemicalWizardry.entityEarthElementalID); super(world, AlchemicalWizardry.entityEarthElementalID);

View file

@ -28,7 +28,8 @@ import net.minecraft.world.World;
import java.util.List; 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);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false); private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

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

View file

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

View file

@ -9,7 +9,8 @@ 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;
public class EntityHolyElemental extends EntityElemental implements IMob { public class EntityHolyElemental extends EntityElemental implements IMob
{
public EntityHolyElemental(World world) public EntityHolyElemental(World world)
{ {
super(world, AlchemicalWizardry.entityHolyElementalID); super(world, AlchemicalWizardry.entityHolyElementalID);

View file

@ -23,7 +23,8 @@ 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;
public class EntityIceDemon extends EntityDemon implements IRangedAttackMob { public class EntityIceDemon extends EntityDemon implements IRangedAttackMob
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 30, 50, 15.0F); private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 30, 50, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false); private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

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

View file

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

View file

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

View file

@ -23,7 +23,8 @@ 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;
public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player { public class EntitySmallEarthGolem extends EntityDemon implements IRangedAttackMob, Player
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 25, 25, 15.0F); private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 25, 25, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false); private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

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

View file

@ -23,7 +23,8 @@ 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;
public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player { public class EntityWingedFireDemon extends EntityDemon implements IRangedAttackMob, Player
{
private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F); private EntityAIArrowAttack aiArrowAttack = new EntityAIArrowAttack(this, 1.0D, 40, 40, 15.0F);
private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false); private EntityAIAttackOnCollide aiAttackOnCollide = new EntityAIAttackOnCollide(this, EntityPlayer.class, 1.2D, false);

View file

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

View file

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

View file

@ -7,7 +7,8 @@ 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;
public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile { public class EntityEnergyBazookaMainProjectile extends EnergyBlastProjectile
{
public EntityEnergyBazookaMainProjectile(World par1World) public EntityEnergyBazookaMainProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

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

View file

@ -7,7 +7,8 @@ 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;
public class EntityMeteor extends EnergyBlastProjectile { public class EntityMeteor extends EnergyBlastProjectile
{
private int meteorID; private int meteorID;
public EntityMeteor(World par1World) public EntityMeteor(World par1World)

View file

@ -8,7 +8,8 @@ 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;
public class ExplosionProjectile extends EnergyBlastProjectile { public class ExplosionProjectile extends EnergyBlastProjectile
{
protected boolean causesEnvDamage; protected boolean causesEnvDamage;
public ExplosionProjectile(World par1World) public ExplosionProjectile(World par1World)

View file

@ -9,7 +9,8 @@ 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;
public class FireProjectile extends EnergyBlastProjectile { public class FireProjectile extends EnergyBlastProjectile
{
public FireProjectile(World par1World) public FireProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

@ -9,7 +9,8 @@ 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;
public class HolyProjectile extends EnergyBlastProjectile { public class HolyProjectile extends EnergyBlastProjectile
{
public HolyProjectile(World par1World) public HolyProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

@ -12,7 +12,8 @@ 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;
public class IceProjectile extends EnergyBlastProjectile { public class IceProjectile extends EnergyBlastProjectile
{
public IceProjectile(World par1World) public IceProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

@ -11,7 +11,8 @@ 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;
public class LightningBoltProjectile extends EnergyBlastProjectile { public class LightningBoltProjectile extends EnergyBlastProjectile
{
private boolean causeLightning; private boolean causeLightning;
public LightningBoltProjectile(World par1World) public LightningBoltProjectile(World par1World)

View file

@ -12,7 +12,8 @@ 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;
public class MudProjectile extends EnergyBlastProjectile { public class MudProjectile extends EnergyBlastProjectile
{
private boolean doesBlindness; //True for when it applies blindness, false for slowness private boolean doesBlindness; //True for when it applies blindness, false for slowness
public MudProjectile(World par1World) public MudProjectile(World par1World)

View file

@ -14,7 +14,8 @@ 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;
public class TeleportProjectile extends EnergyBlastProjectile { public class TeleportProjectile extends EnergyBlastProjectile
{
private boolean isEntityTeleport; //True if the entity firing teleports on hit private boolean isEntityTeleport; //True if the entity firing teleports on hit
public TeleportProjectile(World par1World) public TeleportProjectile(World par1World)

View file

@ -11,7 +11,8 @@ 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;
public class WaterProjectile extends EnergyBlastProjectile { public class WaterProjectile extends EnergyBlastProjectile
{
public WaterProjectile(World par1World) public WaterProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

@ -9,7 +9,8 @@ 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;
public class WindGustProjectile extends EnergyBlastProjectile { public class WindGustProjectile extends EnergyBlastProjectile
{
public WindGustProjectile(World par1World) public WindGustProjectile(World par1World)
{ {
super(par1World); super(par1World);

View file

@ -9,7 +9,8 @@ import net.minecraft.item.ItemStack;
import java.util.List; import java.util.List;
public class AWBaseItems extends Item { public class AWBaseItems extends Item
{
public AWBaseItems(int id) public AWBaseItems(int id)
{ {
super(id); super(id);

View file

@ -16,7 +16,8 @@ import org.lwjgl.input.Keyboard;
import java.util.List; import java.util.List;
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)

View file

@ -6,7 +6,8 @@ import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item; import net.minecraft.item.Item;
public class AirInk extends Item { public class AirInk extends Item
{
public AirInk(int id) public AirInk(int id)
{ {
super(id); super(id);

View file

@ -4,7 +4,8 @@ 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;
public class AirScribeTool extends ScribeTool { public class AirScribeTool extends ScribeTool
{
public AirScribeTool(int id) public AirScribeTool(int id)
{ {
super(id, 4); super(id, 4);

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