From 92e097eaa29513f2b353bae1c4188fe8a81fb92b Mon Sep 17 00:00:00 2001 From: WayofTime Date: Sun, 9 Feb 2014 12:20:02 -0500 Subject: [PATCH] Working away at the spell blocks --- .../AlchemicalWizardry.java | 2 + .../common/block/BlockSpellEffect.java | 2 +- .../TESpellEffectBlockItemRenderer.java | 2 + .../renderer/model/ModelSpellEffectBlock.java | 273 ++++++++++-------- .../spell/complex/EntitySpellProjectile.java | 13 + .../complex/effect/SpellEffectEarth.java | 176 +++++++++++ .../spell/complex/effect/SpellEffectWind.java | 176 +++++++++++ .../common/tileEntity/TESpellEffectBlock.java | 7 +- .../textures/models/SpellEffectFire.png | Bin 1258 -> 1718 bytes .../textures/models/SpellEffectWind.png | Bin 0 -> 1210 bytes 10 files changed, 535 insertions(+), 116 deletions(-) create mode 100644 BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectEarth.java create mode 100644 BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectWind.java create mode 100644 resources/assets/alchemicalwizardry/textures/models/SpellEffectWind.png diff --git a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java index c102848d..55d672ab 100644 --- a/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java +++ b/BM_src/WayofTime/alchemicalWizardry/AlchemicalWizardry.java @@ -718,6 +718,8 @@ public class AlchemicalWizardry GameRegistry.registerBlock(ModBlocks.blockSpellEffect, ItemSpellEffectBlock.class,"AlchemicalWizardry" + (ModBlocks.blockSpellEffect.getUnlocalizedName())); LanguageRegistry.addName(new ItemStack(ModBlocks.blockSpellEffect, 1, 0), "Crucible of Fire"); LanguageRegistry.addName(new ItemStack(ModBlocks.blockSpellEffect, 1, 1), "Ice Maker"); + LanguageRegistry.addName(new ItemStack(ModBlocks.blockSpellEffect, 1, 2), "Wind Generator"); + LanguageRegistry.addName(new ItemStack(ModBlocks.blockSpellEffect, 1, 3), "Earth Former"); GameRegistry.registerBlock(ModBlocks.speedRune, "speedRune"); LanguageRegistry.addName(ModBlocks.speedRune, "Speed Rune"); diff --git a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSpellEffect.java b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSpellEffect.java index 2130e46c..079104f0 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSpellEffect.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/block/BlockSpellEffect.java @@ -49,7 +49,7 @@ public class BlockSpellEffect extends BlockOrientable { if (this.blockID == ModBlocks.blockSpellEffect.blockID) { - for(int i=0; i<2; i++) + for(int i=0; i<4; i++) { par3List.add(new ItemStack(par1, 1, i)); } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java index d313a2bc..b400c142 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/renderer/block/itemRender/TESpellEffectBlockItemRenderer.java @@ -101,6 +101,8 @@ public class TESpellEffectBlockItemRenderer implements IItemRenderer { case 0: return "alchemicalwizardry:textures/models/SpellEffectFire.png"; case 1: return "alchemicalwizardry:textures/models/SpellEffectIce.png"; + case 2: return "alchemicalwizardry:textures/models/SpellEffectWind.png"; + case 3: return "alchemicalwizardry:textures/models/SpellEffectEarth.png"; } return ""; } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/renderer/model/ModelSpellEffectBlock.java b/BM_src/WayofTime/alchemicalWizardry/common/renderer/model/ModelSpellEffectBlock.java index af9f1d6a..75621bca 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/renderer/model/ModelSpellEffectBlock.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/renderer/model/ModelSpellEffectBlock.java @@ -27,126 +27,161 @@ public class ModelSpellEffectBlock extends ModelBase ModelRenderer inputSpacer3; ModelRenderer inputSpacer4; ModelRenderer outputFace; + ModelRenderer outputPlug; + ModelRenderer outputSpacer1; + ModelRenderer outputSpacer2; + ModelRenderer outputSpacer3; + ModelRenderer outputSpacer4; public ModelSpellEffectBlock() { textureWidth = 64; textureHeight = 64; - core = new ModelRenderer(this, 0, 0); - core.addBox(-3F, -3F, -3F, 6, 6, 6); - core.setRotationPoint(0F, 16F, 0F); - core.setTextureSize(64, 64); - core.mirror = true; - setRotation(core, 0F, 0F, 0F); - frame1 = new ModelRenderer(this, 16, 18); - frame1.addBox(3F, -3F, -5F, 2, 6, 2); - frame1.setRotationPoint(0F, 16F, 0F); - frame1.setTextureSize(64, 64); - frame1.mirror = true; - setRotation(frame1, 0F, 0F, 0F); - frame2 = new ModelRenderer(this, 0, 18); - frame2.addBox(-5F, -3F, -5F, 2, 6, 2); - frame2.setRotationPoint(0F, 16F, 0F); - frame2.setTextureSize(64, 64); - frame2.mirror = true; - setRotation(frame2, 0F, 0F, 0F); - frame3 = new ModelRenderer(this, 0, 13); - frame3.addBox(-5F, -5F, -5F, 10, 2, 2); - frame3.setRotationPoint(0F, 16F, 0F); - frame3.setTextureSize(64, 64); - frame3.mirror = true; - setRotation(frame3, 0F, 0F, 0F); - frame4 = new ModelRenderer(this, 0, 27); - frame4.addBox(-5F, 3F, -5F, 10, 2, 2); - frame4.setRotationPoint(0F, 16F, 0F); - frame4.setTextureSize(64, 64); - frame4.mirror = true; - setRotation(frame4, 0F, 0F, 0F); - frame5 = new ModelRenderer(this, 0, 34); - frame5.addBox(-5F, -5F, 3F, 10, 2, 2); - frame5.setRotationPoint(0F, 16F, 0F); - frame5.setTextureSize(64, 64); - frame5.mirror = true; - setRotation(frame5, 0F, 0F, 0F); - frame6 = new ModelRenderer(this, 0, 48); - frame6.addBox(-5F, 3F, 3F, 10, 2, 2); - frame6.setRotationPoint(0F, 16F, 0F); - frame6.setTextureSize(64, 64); - frame6.mirror = true; - setRotation(frame6, 0F, 0F, 0F); - frame7 = new ModelRenderer(this, 16, 39); - frame7.addBox(-5F, -3F, 3F, 2, 6, 2); - frame7.setRotationPoint(0F, 16F, 0F); - frame7.setTextureSize(64, 64); - frame7.mirror = true; - setRotation(frame7, 0F, 0F, 0F); - frame8 = new ModelRenderer(this, 0, 39); - frame8.addBox(3F, -3F, 3F, 2, 6, 2); - frame8.setRotationPoint(0F, 16F, 0F); - frame8.setTextureSize(64, 64); - frame8.mirror = true; - setRotation(frame8, 0F, 0F, 0F); - frame9 = new ModelRenderer(this, 25, 9); - frame9.addBox(-5F, 3F, -3F, 2, 2, 6); - frame9.setRotationPoint(0F, 16F, 0F); - frame9.setTextureSize(64, 64); - frame9.mirror = true; - setRotation(frame9, 0F, 0F, 0F); - frame10 = new ModelRenderer(this, 25, 0); - frame10.addBox(-5F, -5F, -3F, 2, 2, 6); - frame10.setRotationPoint(0F, 16F, 0F); - frame10.setTextureSize(64, 64); - frame10.mirror = true; - setRotation(frame10, 0F, 0F, 0F); - frame11 = new ModelRenderer(this, 42, 0); - frame11.addBox(3F, -5F, -3F, 2, 2, 6); - frame11.setRotationPoint(0F, 16F, 0F); - frame11.setTextureSize(64, 64); - frame11.mirror = true; - setRotation(frame11, 0F, 0F, 0F); - frame12 = new ModelRenderer(this, 42, 9); - frame12.addBox(3F, 3F, -3F, 2, 2, 6); - frame12.setRotationPoint(0F, 16F, 0F); - frame12.setTextureSize(64, 64); - frame12.mirror = true; - setRotation(frame12, 0F, 0F, 0F); - inputSpacer1 = new ModelRenderer(this, 25, 27); - inputSpacer1.addBox(3F, -5F, -8F, 2, 2, 2); - inputSpacer1.setRotationPoint(0F, 16F, 0F); - inputSpacer1.setTextureSize(64, 64); - inputSpacer1.mirror = true; - setRotation(inputSpacer1, 0F, 0F, 0F); - inputFace = new ModelRenderer(this, 34, 27); - inputFace.addBox(-2F, -2F, -8F, 4, 4, 2); - inputFace.setRotationPoint(0F, 16F, 0F); - inputFace.setTextureSize(64, 64); - inputFace.mirror = true; - setRotation(inputFace, 0F, 0F, 0F); - inputSpacer2 = new ModelRenderer(this, 25, 27); - inputSpacer2.addBox(-5F, -5F, -8F, 2, 2, 2); - inputSpacer2.setRotationPoint(0F, 16F, 0F); - inputSpacer2.setTextureSize(64, 64); - inputSpacer2.mirror = true; - setRotation(inputSpacer2, 0F, 0F, 0F); - inputSpacer3 = new ModelRenderer(this, 25, 27); - inputSpacer3.addBox(3F, 3F, -8F, 2, 2, 2); - inputSpacer3.setRotationPoint(0F, 16F, 0F); - inputSpacer3.setTextureSize(64, 64); - inputSpacer3.mirror = true; - setRotation(inputSpacer3, 0F, 0F, 0F); - inputSpacer4 = new ModelRenderer(this, 25, 27); - inputSpacer4.addBox(-5F, 3F, -8F, 2, 2, 2); - inputSpacer4.setRotationPoint(0F, 16F, 0F); - inputSpacer4.setTextureSize(64, 64); - inputSpacer4.mirror = true; - setRotation(inputSpacer4, 0F, 0F, 0F); - outputFace = new ModelRenderer(this, 34, 34); - outputFace.addBox(6F, -2F, -2F, 2, 4, 4); - outputFace.setRotationPoint(0F, 16F, 0F); - outputFace.setTextureSize(64, 64); - outputFace.mirror = true; - setRotation(outputFace, 0F, 0F, 0F); + core = new ModelRenderer(this, 0, 0); + core.addBox(-3F, -3F, -3F, 6, 6, 6); + core.setRotationPoint(0F, 16F, 0F); + core.setTextureSize(64, 64); + core.mirror = true; + setRotation(core, 0F, 0F, 0F); + frame1 = new ModelRenderer(this, 16, 18); + frame1.addBox(3F, -3F, -5F, 2, 6, 2); + frame1.setRotationPoint(0F, 16F, 0F); + frame1.setTextureSize(64, 64); + frame1.mirror = true; + setRotation(frame1, 0F, 0F, 0F); + frame2 = new ModelRenderer(this, 0, 18); + frame2.addBox(-5F, -3F, -5F, 2, 6, 2); + frame2.setRotationPoint(0F, 16F, 0F); + frame2.setTextureSize(64, 64); + frame2.mirror = true; + setRotation(frame2, 0F, 0F, 0F); + frame3 = new ModelRenderer(this, 0, 13); + frame3.addBox(-5F, -5F, -5F, 10, 2, 2); + frame3.setRotationPoint(0F, 16F, 0F); + frame3.setTextureSize(64, 64); + frame3.mirror = true; + setRotation(frame3, 0F, 0F, 0F); + frame4 = new ModelRenderer(this, 0, 27); + frame4.addBox(-5F, 3F, -5F, 10, 2, 2); + frame4.setRotationPoint(0F, 16F, 0F); + frame4.setTextureSize(64, 64); + frame4.mirror = true; + setRotation(frame4, 0F, 0F, 0F); + frame5 = new ModelRenderer(this, 0, 34); + frame5.addBox(-5F, -5F, 3F, 10, 2, 2); + frame5.setRotationPoint(0F, 16F, 0F); + frame5.setTextureSize(64, 64); + frame5.mirror = true; + setRotation(frame5, 0F, 0F, 0F); + frame6 = new ModelRenderer(this, 0, 48); + frame6.addBox(-5F, 3F, 3F, 10, 2, 2); + frame6.setRotationPoint(0F, 16F, 0F); + frame6.setTextureSize(64, 64); + frame6.mirror = true; + setRotation(frame6, 0F, 0F, 0F); + frame7 = new ModelRenderer(this, 16, 39); + frame7.addBox(-5F, -3F, 3F, 2, 6, 2); + frame7.setRotationPoint(0F, 16F, 0F); + frame7.setTextureSize(64, 64); + frame7.mirror = true; + setRotation(frame7, 0F, 0F, 0F); + frame8 = new ModelRenderer(this, 0, 39); + frame8.addBox(3F, -3F, 3F, 2, 6, 2); + frame8.setRotationPoint(0F, 16F, 0F); + frame8.setTextureSize(64, 64); + frame8.mirror = true; + setRotation(frame8, 0F, 0F, 0F); + frame9 = new ModelRenderer(this, 25, 9); + frame9.addBox(-5F, 3F, -3F, 2, 2, 6); + frame9.setRotationPoint(0F, 16F, 0F); + frame9.setTextureSize(64, 64); + frame9.mirror = true; + setRotation(frame9, 0F, 0F, 0F); + frame10 = new ModelRenderer(this, 25, 0); + frame10.addBox(-5F, -5F, -3F, 2, 2, 6); + frame10.setRotationPoint(0F, 16F, 0F); + frame10.setTextureSize(64, 64); + frame10.mirror = true; + setRotation(frame10, 0F, 0F, 0F); + frame11 = new ModelRenderer(this, 42, 0); + frame11.addBox(3F, -5F, -3F, 2, 2, 6); + frame11.setRotationPoint(0F, 16F, 0F); + frame11.setTextureSize(64, 64); + frame11.mirror = true; + setRotation(frame11, 0F, 0F, 0F); + frame12 = new ModelRenderer(this, 42, 9); + frame12.addBox(3F, 3F, -3F, 2, 2, 6); + frame12.setRotationPoint(0F, 16F, 0F); + frame12.setTextureSize(64, 64); + frame12.mirror = true; + setRotation(frame12, 0F, 0F, 0F); + inputSpacer1 = new ModelRenderer(this, 25, 27); + inputSpacer1.addBox(3F, -5F, -8F, 2, 2, 3); + inputSpacer1.setRotationPoint(0F, 16F, 0F); + inputSpacer1.setTextureSize(64, 64); + inputSpacer1.mirror = true; + setRotation(inputSpacer1, 0F, 0F, 0F); + inputFace = new ModelRenderer(this, 38, 27); + inputFace.addBox(-2F, -2F, -8F, 4, 4, 5); + inputFace.setRotationPoint(0F, 16F, 0F); + inputFace.setTextureSize(64, 64); + inputFace.mirror = true; + setRotation(inputFace, 0F, 0F, 0F); + inputSpacer2 = new ModelRenderer(this, 25, 27); + inputSpacer2.addBox(-5F, -5F, -8F, 2, 2, 3); + inputSpacer2.setRotationPoint(0F, 16F, 0F); + inputSpacer2.setTextureSize(64, 64); + inputSpacer2.mirror = true; + setRotation(inputSpacer2, 0F, 0F, 0F); + inputSpacer3 = new ModelRenderer(this, 25, 27); + inputSpacer3.addBox(3F, 3F, -8F, 2, 2, 3); + inputSpacer3.setRotationPoint(0F, 16F, 0F); + inputSpacer3.setTextureSize(64, 64); + inputSpacer3.mirror = true; + setRotation(inputSpacer3, 0F, 0F, 0F); + inputSpacer4 = new ModelRenderer(this, 25, 27); + inputSpacer4.addBox(-5F, 3F, -8F, 2, 2, 3); + inputSpacer4.setRotationPoint(0F, 16F, 0F); + inputSpacer4.setTextureSize(64, 64); + inputSpacer4.mirror = true; + setRotation(inputSpacer4, 0F, 0F, 0F); + outputFace = new ModelRenderer(this, 38, 37); + outputFace.addBox(6F, -2F, -2F, 2, 4, 4); + outputFace.setRotationPoint(0F, 16F, 0F); + outputFace.setTextureSize(64, 64); + outputFace.mirror = true; + setRotation(outputFace, 0F, 0F, 0F); + outputPlug = new ModelRenderer(this, 36, 48); + outputPlug.addBox(3F, -3F, -3F, 2, 6, 6); + outputPlug.setRotationPoint(0F, 16F, 0F); + outputPlug.setTextureSize(64, 64); + outputPlug.mirror = true; + setRotation(outputPlug, 0F, 0F, 0F); + outputSpacer1 = new ModelRenderer(this, 25, 48); + outputSpacer1.addBox(5F, -5F, -5F, 3, 2, 2); + outputSpacer1.setRotationPoint(0F, 16F, 0F); + outputSpacer1.setTextureSize(64, 64); + outputSpacer1.mirror = true; + setRotation(outputSpacer1, 0F, 0F, 0F); + outputSpacer2 = new ModelRenderer(this, 25, 48); + outputSpacer2.addBox(5F, -5F, 3F, 3, 2, 2); + outputSpacer2.setRotationPoint(0F, 16F, 0F); + outputSpacer2.setTextureSize(64, 64); + outputSpacer2.mirror = true; + setRotation(outputSpacer2, 0F, 0F, 0F); + outputSpacer3 = new ModelRenderer(this, 25, 48); + outputSpacer3.addBox(5F, 3F, -5F, 3, 2, 2); + outputSpacer3.setRotationPoint(0F, 16F, 0F); + outputSpacer3.setTextureSize(64, 64); + outputSpacer3.mirror = true; + setRotation(outputSpacer3, 0F, 0F, 0F); + outputSpacer4 = new ModelRenderer(this, 25, 48); + outputSpacer4.addBox(5F, 3F, 3F, 3, 2, 2); + outputSpacer4.setRotationPoint(0F, 16F, 0F); + outputSpacer4.setTextureSize(64, 64); + outputSpacer4.mirror = true; + setRotation(outputSpacer4, 0F, 0F, 0F); } public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5, ForgeDirection input, ForgeDirection output) @@ -250,6 +285,11 @@ public class ModelSpellEffectBlock extends ModelBase this.setRotation(inputSpacer2, xInputRot, yInputRot, zInputRot); this.setRotation(inputSpacer3, xInputRot, yInputRot, zInputRot); this.setRotation(inputSpacer4, xInputRot, yInputRot, zInputRot); + this.setRotation(outputPlug, xOutputRot, yOutputRot, zOutputRot); + this.setRotation(outputSpacer1, xOutputRot, yOutputRot, zOutputRot); + this.setRotation(outputSpacer2, xOutputRot, yOutputRot, zOutputRot); + this.setRotation(outputSpacer3, xOutputRot, yOutputRot, zOutputRot); + this.setRotation(outputSpacer4, xOutputRot, yOutputRot, zOutputRot); core.render(f5); frame1.render(f5); @@ -270,6 +310,11 @@ public class ModelSpellEffectBlock extends ModelBase inputSpacer3.render(f5); inputSpacer4.render(f5); outputFace.render(f5); + outputPlug.render(f5); + outputSpacer1.render(f5); + outputSpacer2.render(f5); + outputSpacer3.render(f5); + outputSpacer4.render(f5); } private void setRotation(ModelRenderer model, float x, float y, float z) diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/EntitySpellProjectile.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/EntitySpellProjectile.java index b4dcd944..33d7baab 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/EntitySpellProjectile.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/EntitySpellProjectile.java @@ -46,6 +46,7 @@ public class EntitySpellProjectile extends Entity implements IProjectile private boolean penetration = false; public List updateEffectList = new ArrayList(); public List spellEffectList = new LinkedList(); + private int blocksBroken = 0; public EntitySpellProjectile(World par1World) { @@ -286,6 +287,7 @@ public class EntitySpellProjectile extends Entity implements IProjectile // } par1NBTTagCompound.setTag("Effects", effectList); + par1NBTTagCompound.setInteger("blocksBroken", blocksBroken); } /** @@ -300,6 +302,7 @@ public class EntitySpellProjectile extends Entity implements IProjectile inTile = par1NBTTagCompound.getByte("inTile") & 255; inData = par1NBTTagCompound.getByte("inData") & 255; inGround = par1NBTTagCompound.getByte("inGround") == 1; + blocksBroken = par1NBTTagCompound.getInteger("blocksBroken"); NBTTagList tagList = par1NBTTagCompound.getTagList("Effects"); @@ -567,4 +570,14 @@ public class EntitySpellProjectile extends Entity implements IProjectile { this.spellEffectList = list; } + + public int getBlocksBroken() + { + return this.blocksBroken; + } + + public void setBlocksBroken(int blocksBroken) + { + this.blocksBroken = blocksBroken; + } } diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectEarth.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectEarth.java new file mode 100644 index 00000000..ee98c2d2 --- /dev/null +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectEarth.java @@ -0,0 +1,176 @@ +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; + +public class SpellEffectEarth extends SpellEffect +{ + @Override + public void defaultModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defaultModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defaultModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + protected int getCostForDefaultProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefaultSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefaultMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentMelee() + { + // TODO Auto-generated method stub + return 0; + } +} diff --git a/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectWind.java b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectWind.java new file mode 100644 index 00000000..0b9f2623 --- /dev/null +++ b/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/effect/SpellEffectWind.java @@ -0,0 +1,176 @@ +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; + +public class SpellEffectWind extends SpellEffect +{ + @Override + public void defaultModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationProjectile(SpellParadigmProjectile parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defaultModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationSelf(SpellParadigmSelf parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defaultModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void offensiveModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void defensiveModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + public void environmentalModificationMelee(SpellParadigmMelee parad) + { + // TODO Auto-generated method stub + + } + + @Override + protected int getCostForDefaultProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentProjectile() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefaultSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentSelf() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefaultMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForOffenseMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForDefenseMelee() + { + // TODO Auto-generated method stub + return 0; + } + + @Override + protected int getCostForEnvironmentMelee() + { + // TODO Auto-generated method stub + return 0; + } +} diff --git a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellEffectBlock.java b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellEffectBlock.java index 389d3399..a2b9a4be 100644 --- a/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellEffectBlock.java +++ b/BM_src/WayofTime/alchemicalWizardry/common/tileEntity/TESpellEffectBlock.java @@ -1,10 +1,11 @@ package WayofTime.alchemicalWizardry.common.tileEntity; -import net.minecraft.util.ResourceLocation; import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigm; import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffect; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffectEarth; import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffectFire; import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffectIce; +import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellEffectWind; public class TESpellEffectBlock extends TESpellBlock { @@ -21,6 +22,8 @@ public class TESpellEffectBlock extends TESpellBlock { case 0: return new SpellEffectFire(); case 1: return new SpellEffectIce(); + case 2: return new SpellEffectWind(); + case 3: return new SpellEffectEarth(); } return new SpellEffectFire(); } @@ -32,6 +35,8 @@ public class TESpellEffectBlock extends TESpellBlock { case 0: return "alchemicalwizardry:textures/models/SpellEffectFire.png"; case 1: return "alchemicalwizardry:textures/models/SpellEffectIce.png"; + case 2: return "alchemicalwizardry:textures/models/SpellEffectWind.png"; + case 3: return "alchemicalwizardry:textures/models/SpellEffectEarth.png"; } return ""; } diff --git a/resources/assets/alchemicalwizardry/textures/models/SpellEffectFire.png b/resources/assets/alchemicalwizardry/textures/models/SpellEffectFire.png index ea5baeffe9833577d1fd9d2319b8fcbead6287d2..767fb339f418d25edb6806f59ef8a8696a6e41a3 100644 GIT binary patch delta 1696 zcmV;R24DH=3APQ8Du3euTL1v|-p3&T000SaNLh0L01m?d01m?e$8V@)00007bV*G` z2i^h*5EL4eejzUa00u)zL_t(|+U=XmZyQw<#(y&&KVs+6CXJesrUa-cv=SRoH)VrZ zMDnmL0>Ppxts-Tgzaslcl~5Id0Euo`Fa=bhb`LB-6#_)nlz))YN8&nm?D#RB%i_)? zo||#}Olr42QWW30kI6lc?|k?8Mk7GPX=YL<_+IE>6d^YT0~>&VQXI+&Ic|6r3WHD@ zfvGRhXi}1*w|9l|~A1xBq7Cjyly3_gk=Qn_fZ*9^269KBti$FjF#HFEvQRiIL4R@NH#s|;>un4$Rz5ARA$G^EB9DAOX4K;Dlv%@Q`}Z zwazZ9DeY(x2pea1 z+&^|t0%2hq3d4~2S9*ed7$&}H9@!5x1auohC295OUozf98QB@i$P{M}K;ki^-+=fX zh-|tW&q8Pwh(Pu=2CuGD?~W$DK!hRk2nv(Z zTa0x{p`4K&CSk`wXb`SIB?83+=njnkSUUu|fe0C+KkuF(U<^oWPyrCbOfkkr{3kNL zaeqUMYqxp)Oi``RjEfU+kc(k$AE57z?^CNh=ba0v?dp{P9Fq&BpvpN zkZQ?VoLfB$sN=l;sS5$%cL`SBmZ0g)-{m2flsU(DKCazB=tWs^Di1^9hW{+m3gET` zf{mUTYW25zmT)4FJ0)w9P)pMNfZ zdCTu9mH;$-V|>M#dDm417tHs#x@J*03bPsc-p`&`6kmYLTdgTTuijLn^?+t;10O6Q zZknb@nzw}N2`fvQNSda&SqDr#xoDVNG~{MKU$@YU5Kh5WyEWov?2c8-BQS2$vy?j3 zQVEZ5{C>!yW%)d=JR`rb4Herch<_Xe(n=*;fhWdUnj{=$GyXifp!9^jS6>ZP|%7De~8 zOa(L>j0`Zi_t?Qdp>PyL6c}nF1nQ-?gDi|XQTe6og~4EhRJY$hV{+BD5PvNMw4qwQ zUJh54FiY?s=&c(_h#HV%$J}|x-F4Y1vbyi_wI}cwVw>`SW{63(5)RU1w%0oEDR%cJ zTM4_a0l@{OJ?}p8h>*EYHAkb?S>SmoiW>BYsNpo#q3G(GdcZ;eefBVB7w`r=Zxw6} zm0qf;X1YO&S}R30D)UPF=6@dFL|N|orjPWr<`P|76y3|SwiQsN;8rom=;oNO6#|~+ zeId{)CM<(Unx;sardS4{wi~fj&^)i*^(C=>QS>>NmWrZ{T%`$0ODjtV@s<1H55ZXg z?Ik$zEeCR)Ca@&d2~yH%-!AP>Bd^yzO(v*bj%xHUcrrHD!nocpfTH6RM&AGvt|E!+hdu-_7NX{woc z-Y*R3nG}`W@8fW{ZnPFdT&}tfSDl%fRgBha3aBTY`nS2R6))RVU&CqVI!^zVSU&`M qOgw&39RknlMee@zr5P{#FaHBprCnpj`1BJ100001TXux4eAMyDu3(%q5z`yL)vQq000SaNLh0L01m?d01m?e$8V@)00007bV*G` z2i^h)0}D9HM`J1g00ehQL_t(|+U=UnZyQAz#((=^uRr2Av56Fvq(o5h5hRZM0~{*F zXHHx=AXVzUXL|2F61QHsz=g|3{U3k>sHy-F#Sj85Ew1CQ_o=)&TAVCf!N_r=@yTL33dzWc}SiB0@^9)q@~^RF*KK;orSG0F_;j$ zg@WjB@4N1m&tZ=Ee5H{G(}U_dIL8os2ECSi_{=jfJJK+IN~AGzwaOnM1Rzep_Mo)} zM%y2hghn26KYu_s3)KzS_-gV9D8hjEwz>K_MnwSi9GG1=eFN-QgMFQZeD9ecOo&A| z3hYrGy*P9oSo&LrdwUgDo%i1G5d~TVS7p*dc8^r9R1*-zyXbKXBcNA7I)! zOeD9hDJ1xzQ-S(x&@rL*7A*e+Ru!77k`%K)%F(fUw0}9kKKcYvI)HLo5?<^jG!DV3 zLeBy(0m&n9O3-){lK+5JhHehTvd;-UsK%+)cEF1PX{c{PFDBI?VCp^JJLkNn>}R!q z-*sm)$LI*i0VVnH&P(X5L1n|2x&!Fu!LuR$T=GIE0p<6gnE|^k7X_et8(Ob}*#M_@ zrW6aU0)M4Dh}IHVC9qB*Q35XumA4`DE2RH|@;hKOz^Qfl@1KQ#;x|cz&24Bd zL;4RH3EnEKe=|9=U+ESwJ+Ru+>&`E7zgrdAX;q}ec}YmWfbs{BI)Hf1fAA_;$3Psa z??S8rh5%uKZGabnM98kLL*@|TK&%PobEw>g?0@$Vt3fXzH;QuvsjOsty99|MIDbMj z2O8UWfUZfQWA}ZZx?a^IcbqXP0k*?=y9SZ0enC#i3#4A^B@GoJ7w(lQua z9DhAR-2GZgN5S__(U+4zP>w!#32Xwp;?v=>6lO2ZA`zMv1F7&AACJC)i~6FS2t67+ zOpHUY5J4maUQ`p5fSqTR#QblGP=84GU#kdfrxDe9z_ba)ERvdez`XGhpn6WlI8RPH ze(n*_pN;LgE^0drhK<{EqamAyT2oUou7Ach?Rd=ri?9Iq3Wb5hL2ZXkXNS$BNiZUE zs1qU8lcREO^(>&;1^ru}4k5qKe8SxH+Yc_V39za3KbS44UWx?6o*5#O2&rBj6#>KS z#zoA&>lzPzsl3lazuuIi63qT{e%N}zb*c?43`5T?0)Mm) zXc?3UN@L^XO(npK$Zx7U3nQ7c-U8Q2-onCGJwHzWRRy@q@Q4ZK9hwj=+F@uC?_Q>e zs%3Bj84RE%O=mYOW-5dBsI!1Birx^|qt5gFzwBJ59uRi?+))IvTPTR#LO~QksO>PJ zKWtpkUU(8L>Z0h)hAxWgqNqL%4oUaqMMcptrL#pp158DN*Xge`M*p9q!bHHR+CWqz u!JO1p diff --git a/resources/assets/alchemicalwizardry/textures/models/SpellEffectWind.png b/resources/assets/alchemicalwizardry/textures/models/SpellEffectWind.png new file mode 100644 index 0000000000000000000000000000000000000000..e3d75155adae472016881033fffdc69e346e9439 GIT binary patch literal 1210 zcmV;r1V#IaP)VGd000McNliru-U0{$0}hmh2HF4s1V>3k zK~#9!?V3MtBSjd-f3w-O9Xm1c#lBdOd;vZHSJ4J3sgWp=K#D|jRch$3f{yM={?xWm zYMT21oJ5601UiUwan9KB-yMqAo3+=w&Teca>tr4&if8=JXlLGM-uIbztq6hskWbXn zvtIz%DuZP~rw!e<7}y!G)}Vjo4|@Jekq`%mhkCMIuhs5+4lA@*v4!nGeiH_LS*&Hr zAAs$EZNt+KAXi|OVTZ2&H-5x+e!$7V*VdD%|UI;~K?%-V@Xy<*u_c^n{@5}MM zV|U#CW{!=A-N5%@W9~W##=SGFj1UTXHHraYb~iDmUaP4Wh*yt!F)p|qkLl+*Tg}+` z#hIY(^`kF^3D)F2KW;tXA=L&_BU0{-0VWTaG$`;&V>hL@U;s?|E-p6Wq|9X>frpgd zVoTwm=WojY!3+?^7;oNCL6o-3P!jLnrig0NV1hL0At;*s2i8kXgLdRyz!XIv2kfY# z=H#25B%V(?{@ypBzTb#^y;a|D#CqKvIxb;hQm@^nh-zS9U|?WiU|?WiV30Qa Y55)yHzEITXx&QzG07*qoM6N<$f^