Ice spell effect solidly 9/12 done
Added some models to the spell effect blocks. Texturing needs work.
This commit is contained in:
parent
456d4990bf
commit
1fbaf9a3f4
|
@ -32,6 +32,7 @@ import WayofTime.alchemicalWizardry.common.PotionBoost;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionDrowning;
|
import WayofTime.alchemicalWizardry.common.PotionDrowning;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionFlameCloak;
|
import WayofTime.alchemicalWizardry.common.PotionFlameCloak;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionFlight;
|
import WayofTime.alchemicalWizardry.common.PotionFlight;
|
||||||
|
import WayofTime.alchemicalWizardry.common.PotionIceCloak;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionInhibit;
|
import WayofTime.alchemicalWizardry.common.PotionInhibit;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionProjectileProtect;
|
import WayofTime.alchemicalWizardry.common.PotionProjectileProtect;
|
||||||
import WayofTime.alchemicalWizardry.common.PotionReciprocation;
|
import WayofTime.alchemicalWizardry.common.PotionReciprocation;
|
||||||
|
@ -131,6 +132,7 @@ public class AlchemicalWizardry
|
||||||
public static Potion customPotionFlight;
|
public static Potion customPotionFlight;
|
||||||
public static Potion customPotionReciprocation;
|
public static Potion customPotionReciprocation;
|
||||||
public static Potion customPotionFlameCloak;
|
public static Potion customPotionFlameCloak;
|
||||||
|
public static Potion customPotionIceCloak;
|
||||||
|
|
||||||
public static int customPotionDrowningID;
|
public static int customPotionDrowningID;
|
||||||
public static int customPotionBoostID;
|
public static int customPotionBoostID;
|
||||||
|
@ -139,6 +141,7 @@ public class AlchemicalWizardry
|
||||||
public static int customPotionFlightID;
|
public static int customPotionFlightID;
|
||||||
public static int customPotionReciprocationID;
|
public static int customPotionReciprocationID;
|
||||||
public static int customPotionFlameCloakID;
|
public static int customPotionFlameCloakID;
|
||||||
|
public static int customPotionIceCloakID;
|
||||||
|
|
||||||
public static boolean isThaumcraftLoaded;
|
public static boolean isThaumcraftLoaded;
|
||||||
public static boolean isForestryLoaded;
|
public static boolean isForestryLoaded;
|
||||||
|
@ -557,6 +560,7 @@ public class AlchemicalWizardry
|
||||||
customPotionFlight = (new PotionFlight(customPotionFlightID, false, 0)).setIconIndex(0, 0).setPotionName("Flight");
|
customPotionFlight = (new PotionFlight(customPotionFlightID, false, 0)).setIconIndex(0, 0).setPotionName("Flight");
|
||||||
customPotionReciprocation = (new PotionReciprocation(customPotionReciprocationID, false, 0xFFFFFF)).setIconIndex(0, 0).setPotionName("Reciprocation");
|
customPotionReciprocation = (new PotionReciprocation(customPotionReciprocationID, false, 0xFFFFFF)).setIconIndex(0, 0).setPotionName("Reciprocation");
|
||||||
customPotionFlameCloak = (new PotionFlameCloak(customPotionFlameCloakID,false,0).setIconIndex(0,0).setPotionName("Flame Cloak"));
|
customPotionFlameCloak = (new PotionFlameCloak(customPotionFlameCloakID,false,0).setIconIndex(0,0).setPotionName("Flame Cloak"));
|
||||||
|
customPotionIceCloak = (new PotionIceCloak(customPotionIceCloakID,false,0).setIconIndex(0,0).setPotionName("Ice Cloak"));
|
||||||
//All items registered go here
|
//All items registered go here
|
||||||
//LanguageRegistry.addName(orbOfTesting, "Orb of Testing");
|
//LanguageRegistry.addName(orbOfTesting, "Orb of Testing");
|
||||||
LanguageRegistry.addName(ModItems.weakBloodOrb, "Weak Blood Orb");
|
LanguageRegistry.addName(ModItems.weakBloodOrb, "Weak Blood Orb");
|
||||||
|
|
|
@ -45,6 +45,7 @@ public class BloodMagicConfiguration
|
||||||
AlchemicalWizardry.customPotionFlightID = config.get("Potion ID", "Flight", 104).getInt();
|
AlchemicalWizardry.customPotionFlightID = config.get("Potion ID", "Flight", 104).getInt();
|
||||||
AlchemicalWizardry.customPotionReciprocationID = config.get("Potion ID", "Reciprocation", 105).getInt();
|
AlchemicalWizardry.customPotionReciprocationID = config.get("Potion ID", "Reciprocation", 105).getInt();
|
||||||
AlchemicalWizardry.customPotionFlameCloakID = config.get("Potion ID","FlameCloak",106).getInt();
|
AlchemicalWizardry.customPotionFlameCloakID = config.get("Potion ID","FlameCloak",106).getInt();
|
||||||
|
AlchemicalWizardry.customPotionIceCloakID = config.get("Potion ID","IceCloak",107).getInt();
|
||||||
|
|
||||||
MeteorParadigm.maxChance = config.get("meteor", "maxChance", 1000).getInt();
|
MeteorParadigm.maxChance = config.get("meteor", "maxChance", 1000).getInt();
|
||||||
AlchemicalWizardry.doMeteorsDestroyBlocks = config.get("meteor", "doMeteorsDestroyBlocks", true).getBoolean(true);
|
AlchemicalWizardry.doMeteorsDestroyBlocks = config.get("meteor", "doMeteorsDestroyBlocks", true).getBoolean(true);
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
package WayofTime.alchemicalWizardry.common;
|
package WayofTime.alchemicalWizardry.common;
|
||||||
|
|
||||||
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
|
import java.util.ArrayList;
|
||||||
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile;
|
import java.util.HashMap;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellHelper;
|
import java.util.Iterator;
|
||||||
import cpw.mods.fml.common.ObfuscationReflectionHelper;
|
import java.util.List;
|
||||||
import cpw.mods.fml.relauncher.ReflectionHelper;
|
import java.util.Map;
|
||||||
|
|
||||||
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;
|
||||||
|
@ -14,12 +15,16 @@ import net.minecraft.entity.projectile.EntityArrow;
|
||||||
import net.minecraft.potion.Potion;
|
import net.minecraft.potion.Potion;
|
||||||
import net.minecraft.util.AxisAlignedBB;
|
import net.minecraft.util.AxisAlignedBB;
|
||||||
import net.minecraft.util.DamageSource;
|
import net.minecraft.util.DamageSource;
|
||||||
|
import net.minecraft.util.Vec3;
|
||||||
import net.minecraftforge.event.ForgeSubscribe;
|
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 WayofTime.alchemicalWizardry.AlchemicalWizardry;
|
||||||
import java.util.*;
|
import WayofTime.alchemicalWizardry.common.entity.projectile.EnergyBlastProjectile;
|
||||||
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.SpellHelper;
|
||||||
|
import cpw.mods.fml.common.ObfuscationReflectionHelper;
|
||||||
|
import cpw.mods.fml.relauncher.ReflectionHelper;
|
||||||
|
|
||||||
public class AlchemicalWizardryEventHooks
|
public class AlchemicalWizardryEventHooks
|
||||||
{
|
{
|
||||||
|
@ -81,6 +86,11 @@ public class AlchemicalWizardryEventHooks
|
||||||
double x = entityLiving.posX;
|
double x = entityLiving.posX;
|
||||||
double y = entityLiving.posY;
|
double y = entityLiving.posY;
|
||||||
double z = entityLiving.posZ;
|
double z = entityLiving.posZ;
|
||||||
|
|
||||||
|
Vec3 blockVector = SpellHelper.getEntityBlockVector(entityLiving);
|
||||||
|
int xPos = (int)(blockVector.xCoord);
|
||||||
|
int yPos = (int)(blockVector.yCoord);
|
||||||
|
int zPos = (int)(blockVector.zCoord);
|
||||||
|
|
||||||
if (entityLiving instanceof EntityPlayer && entityLiving.worldObj.isRemote)
|
if (entityLiving instanceof EntityPlayer && entityLiving.worldObj.isRemote)
|
||||||
{
|
{
|
||||||
|
@ -248,6 +258,29 @@ public class AlchemicalWizardryEventHooks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(entityLiving.isPotionActive(AlchemicalWizardry.customPotionIceCloak))
|
||||||
|
{
|
||||||
|
if(entityLiving.worldObj.getWorldTime()%2==0)
|
||||||
|
entityLiving.worldObj.spawnParticle("reddust", x+SpellHelper.gaussian(1),y-1.3+SpellHelper.gaussian(0.3),z+SpellHelper.gaussian(1), 0x74,0xbb,0xfb);
|
||||||
|
|
||||||
|
int r = event.entityLiving.getActivePotionEffect(AlchemicalWizardry.customPotionIceCloak).getAmplifier();
|
||||||
|
int horizRange = r+1;
|
||||||
|
int vertRange = 1;
|
||||||
|
|
||||||
|
if(!entityLiving.worldObj.isRemote)
|
||||||
|
{
|
||||||
|
for(int i=-horizRange; i<=horizRange;i++)
|
||||||
|
{
|
||||||
|
for(int k=-horizRange; k<=horizRange;k++)
|
||||||
|
{
|
||||||
|
for(int j=-vertRange-1; j<=vertRange-1; j++)
|
||||||
|
{
|
||||||
|
SpellHelper.freezeWaterBlock(entityLiving.worldObj, xPos+i, yPos+j, zPos+k);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
package WayofTime.alchemicalWizardry.common;
|
||||||
|
|
||||||
|
import net.minecraft.potion.Potion;
|
||||||
|
|
||||||
|
public class PotionIceCloak extends Potion
|
||||||
|
{
|
||||||
|
public PotionIceCloak(int par1, boolean par2, int par3)
|
||||||
|
{
|
||||||
|
super(par1, par2, par3);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Potion setIconIndex(int par1, int par2)
|
||||||
|
{
|
||||||
|
super.setIconIndex(par1, par2);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
|
@ -42,7 +42,7 @@ public class TEConduitItemRenderer implements IItemRenderer
|
||||||
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
||||||
//GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F);
|
//GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F);
|
||||||
//A reference to your Model file. Again, very important.
|
//A reference to your Model file. Again, very important.
|
||||||
this.modelConduit.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.UP, ForgeDirection.DOWN);
|
this.modelConduit.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.DOWN, ForgeDirection.UP);
|
||||||
//Tell it to stop rendering for both the PushMatrix's
|
//Tell it to stop rendering for both the PushMatrix's
|
||||||
GL11.glPopMatrix();
|
GL11.glPopMatrix();
|
||||||
GL11.glPopMatrix();
|
GL11.glPopMatrix();
|
||||||
|
|
|
@ -41,7 +41,7 @@ public class TESpellEffectBlockItemRenderer implements IItemRenderer
|
||||||
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
|
||||||
//GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F);
|
//GL11.glRotatef(90F, 0.0F, 0.0F, 1.0F);
|
||||||
//A reference to your Model file. Again, very important.
|
//A reference to your Model file. Again, very important.
|
||||||
this.modelSpellBlock.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.UP, ForgeDirection.DOWN);
|
this.modelSpellBlock.render((Entity) null, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0625F, ForgeDirection.DOWN, ForgeDirection.UP);
|
||||||
//Tell it to stop rendering for both the PushMatrix's
|
//Tell it to stop rendering for both the PushMatrix's
|
||||||
GL11.glPopMatrix();
|
GL11.glPopMatrix();
|
||||||
GL11.glPopMatrix();
|
GL11.glPopMatrix();
|
||||||
|
|
|
@ -3,12 +3,14 @@ package WayofTime.alchemicalWizardry.common.spell.complex.effect;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmMelee;
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmMelee;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmProjectile;
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmProjectile;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmSelf;
|
import WayofTime.alchemicalWizardry.common.spell.complex.SpellParadigmSelf;
|
||||||
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeDefaultIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeDefensiveIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeDefensiveIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeOffensiveIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.MeleeOffensiveIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileDefensiveIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileDefensiveIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileEnvironmentalIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileEnvironmentalIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileOffensiveIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.ProjectileOffensiveIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfDefaultIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfDefaultIce;
|
||||||
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfDefensiveIce;
|
||||||
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfEnvironmentalIce;
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice.SelfEnvironmentalIce;
|
||||||
|
|
||||||
public class SpellEffectIce extends SpellEffect
|
public class SpellEffectIce extends SpellEffect
|
||||||
|
@ -56,7 +58,7 @@ public class SpellEffectIce extends SpellEffect
|
||||||
@Override
|
@Override
|
||||||
public void defensiveModificationSelf(SpellParadigmSelf parad)
|
public void defensiveModificationSelf(SpellParadigmSelf parad)
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
parad.addSelfSpellEffect(new SelfDefensiveIce(this.powerEnhancement,this.potencyEnhancement,this.costEnhancement));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,8 +71,7 @@ public class SpellEffectIce extends SpellEffect
|
||||||
@Override
|
@Override
|
||||||
public void defaultModificationMelee(SpellParadigmMelee parad)
|
public void defaultModificationMelee(SpellParadigmMelee parad)
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
parad.addEntityEffect(new MeleeDefaultIce(this.powerEnhancement,this.potencyEnhancement,this.costEnhancement));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -102,22 +103,19 @@ public class SpellEffectIce extends SpellEffect
|
||||||
@Override
|
@Override
|
||||||
protected int getCostForOffenseProjectile()
|
protected int getCostForOffenseProjectile()
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
return (int)((60)*(this.powerEnhancement+1)*(3*this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement));
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected int getCostForDefenseProjectile()
|
protected int getCostForDefenseProjectile()
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
return (int)(75*(2*this.powerEnhancement+1)*(this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement));
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected int getCostForEnvironmentProjectile()
|
protected int getCostForEnvironmentProjectile()
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
return (int)(200*(2*this.powerEnhancement+1)*(2*this.potencyEnhancement+1)*Math.pow(0.85, costEnhancement));
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -136,8 +134,7 @@ public class SpellEffectIce extends SpellEffect
|
||||||
@Override
|
@Override
|
||||||
protected int getCostForDefenseSelf()
|
protected int getCostForDefenseSelf()
|
||||||
{
|
{
|
||||||
// TODO Auto-generated method stub
|
return (int)(200*(3*powerEnhancement+1)*(2*potencyEnhancement + 1)*Math.pow(0.85, costEnhancement));
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -149,7 +146,7 @@ public class SpellEffectIce extends SpellEffect
|
||||||
@Override
|
@Override
|
||||||
protected int getCostForDefaultMelee()
|
protected int getCostForDefaultMelee()
|
||||||
{
|
{
|
||||||
return (int)(100*(potencyEnhancement+1)*(1.5*powerEnhancement+1)*Math.pow(0.85, costEnhancement));
|
return (int)(125*(potencyEnhancement+1)*(1.5*powerEnhancement+1)*Math.pow(0.85, costEnhancement));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
package WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.ice;
|
||||||
|
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.potion.PotionEffect;
|
||||||
|
import net.minecraft.world.World;
|
||||||
|
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
|
||||||
|
import WayofTime.alchemicalWizardry.common.spell.complex.effect.impactEffects.SelfSpellEffect;
|
||||||
|
|
||||||
|
public class SelfDefensiveIce extends SelfSpellEffect
|
||||||
|
{
|
||||||
|
public SelfDefensiveIce(int power, int potency, int cost)
|
||||||
|
{
|
||||||
|
super(power, potency, cost);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSelfUse(World world, EntityPlayer player)
|
||||||
|
{
|
||||||
|
player.addPotionEffect(new PotionEffect(AlchemicalWizardry.customPotionIceCloak.id,300*(2*this.powerUpgrades+1),this.potencyUpgrades));
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 953 B |
Loading…
Reference in a new issue