Working away at the spell blocks

This commit is contained in:
WayofTime 2014-02-09 12:20:02 -05:00
parent 0716155b7d
commit 92e097eaa2
10 changed files with 535 additions and 116 deletions

View file

@ -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 "";
}