Working on Spell Testing

This commit is contained in:
WayofTime 2014-01-18 21:27:08 -05:00
parent e11b3812dd
commit dc775435bf
7 changed files with 84 additions and 7 deletions

View file

@ -254,6 +254,7 @@ public class AlchemicalWizardry
public static int itemKeyOfDiabloItemID;
public static int energyBazookaItemID;
public static int itemBloodLightSigilItemID;
public static int itemComplexSpellCrystalItemID;
public static int testingBlockBlockID;
public static int lifeEssenceFlowingBlockID;

View file

@ -103,6 +103,7 @@ public class ModItems
public static Item itemKeyOfDiablo;
public static Item energyBazooka;
public static Item itemBloodLightSigil;
public static Item itemComplexSpellCrystal;
public static void init()
{
@ -182,7 +183,6 @@ public class ModItems
itemKeyOfDiablo = new ItemDiabloKey(AlchemicalWizardry.itemKeyOfDiabloItemID).setUnlocalizedName("itemDiabloKey");
energyBazooka = new EnergyBazooka(AlchemicalWizardry.energyBazookaItemID).setUnlocalizedName("energyBazooka");
itemBloodLightSigil = new ItemBloodLightSigil(AlchemicalWizardry.itemBloodLightSigilItemID).setUnlocalizedName("bloodLightSigil");
itemComplexSpellCrystal = new ItemComplexSpellCrystal(AlchemicalWizardry.itemComplexSpellCrystalItemID).setUnlocalizedName("itemComplexSpellCrystal");
}
}

View file

@ -169,6 +169,7 @@ public class BloodMagicConfiguration
AlchemicalWizardry.focusBloodBlastItemID = config.getItem("FocusBloodBlast", 17076).getInt();
AlchemicalWizardry.focusGravityWellItemID = config.getItem("FocusGravityWell", 17077).getInt();
AlchemicalWizardry.sigilOfMagnetismItemID = config.getItem("SigilOfMagnetism", 17080).getInt();
AlchemicalWizardry.itemComplexSpellCrystalItemID = config.getItem("ComplexSpellCrystal",17081).getInt();
} catch (Exception e)

View file

@ -0,0 +1,62 @@
package WayofTime.alchemicalWizardry.common.items;
import java.util.List;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigm;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmSelf;
import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffectFire;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class ItemComplexSpellCrystal extends EnergyItems
{
public ItemComplexSpellCrystal(int id)
{
super(id);
this.maxStackSize = 1;
//setMaxDamage(1000);
setEnergyUsed(50);
setCreativeTab(AlchemicalWizardry.tabBloodMagic);
}
@Override
public void addInformation(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4)
{
par3List.add("I feel lighter already...");
if (!(par1ItemStack.stackTagCompound == null))
{
par3List.add("Current owner: " + par1ItemStack.stackTagCompound.getString("ownerName"));
}
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister iconRegister)
{
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:AirSigil");
}
@Override
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
EnergyItems.checkAndSetItemOwner(par1ItemStack, par3EntityPlayer);
if (par3EntityPlayer.isSneaking())
{
return par1ItemStack;
}
SpellParadigm parad = new SpellParadigmSelf();
parad.addBufferedEffect(new SpellEffectFire());
parad.castSpell(par2World, par3EntityPlayer, par1ItemStack);
return par1ItemStack;
}
}

View file

@ -49,6 +49,6 @@ public class SpellParadigmSelf extends SpellParadigm
@Override
public int getDefaultCost()
{
return 0;
return 100;
}
}

View file

@ -3,6 +3,7 @@ package WayofTime.alchemicalWizardry.common.spell.complex.effect;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmMelee;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmProjectile;
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmSelf;
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.SelfDefaultFire;
public class SpellEffectFire extends SpellEffect
{
@ -10,7 +11,7 @@ public class SpellEffectFire extends SpellEffect
@Override
public void defaultModificationProjectile(SpellParadigmProjectile parad)
{
}
@Override
@ -37,8 +38,7 @@ public class SpellEffectFire extends SpellEffect
@Override
public void defaultModificationSelf(SpellParadigmSelf parad)
{
// TODO Auto-generated method stub
parad.addSelfSpellEffect(new SelfDefaultFire());
}
@Override
@ -122,7 +122,7 @@ public class SpellEffectFire extends SpellEffect
protected int getCostForDefaultSelf()
{
// TODO Auto-generated method stub
return 0;
return 1000;
}
@Override

View file

@ -0,0 +1,13 @@
package WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public class SelfDefaultFire implements ISelfSpellEffect
{
@Override
public void onSelfUse(World world, EntityPlayer player)
{
player.setFire(500);
}
}