Initial 1.11.2 update
This commit is contained in:
@@ -18,7 +18,7 @@ import net.minecraft.world.World;
|
||||
|
||||
public class SpiderSwarm extends Spell {
|
||||
|
||||
public SpiderSwarm() {
|
||||
public SpiderSwarm(){
|
||||
super(Tier.ADVANCED, 45, Element.EARTH, "spider_swarm", SpellType.MINION, 200, EnumAction.BOW, false);
|
||||
}
|
||||
|
||||
@@ -28,35 +28,39 @@ public class SpiderSwarm extends Spell {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean cast(World world, EntityPlayer caster, EnumHand hand, int ticksInUse, SpellModifiers modifiers) {
|
||||
public boolean cast(World world, EntityPlayer caster, EnumHand hand, int ticksInUse, SpellModifiers modifiers){
|
||||
|
||||
if(!world.isRemote){
|
||||
for(int i=0;i<5;i++){
|
||||
for(int i = 0; i < 5; i++){
|
||||
BlockPos pos = WizardryUtilities.findNearbyFloorSpace(caster, 3, 6);
|
||||
// The spell instantly fails if no space was found (see javadoc for the above method).
|
||||
if(pos == null) return false;
|
||||
|
||||
EntitySpiderMinion spider = new EntitySpiderMinion(world, pos.getX() + 0.5, pos.getY(), pos.getZ() + 0.5, caster, (int)(600*modifiers.get(WizardryItems.duration_upgrade)));
|
||||
world.spawnEntityInWorld(spider);
|
||||
|
||||
EntitySpiderMinion spider = new EntitySpiderMinion(world, pos.getX() + 0.5, pos.getY(),
|
||||
pos.getZ() + 0.5, caster, (int)(600 * modifiers.get(WizardryItems.duration_upgrade)));
|
||||
world.spawnEntity(spider);
|
||||
}
|
||||
}
|
||||
|
||||
WizardryUtilities.playSoundAtPlayer(caster, SoundEvents.BLOCK_FIRE_EXTINGUISH, 1.0F, world.rand.nextFloat() * 0.2F + 1.0F);
|
||||
|
||||
WizardryUtilities.playSoundAtPlayer(caster, SoundEvents.BLOCK_FIRE_EXTINGUISH, 1.0F,
|
||||
world.rand.nextFloat() * 0.2F + 1.0F);
|
||||
// Can't possibly get this far if nothing was spawned.
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean cast(World world, EntityLiving caster, EnumHand hand, int ticksInUse, EntityLivingBase target, SpellModifiers modifiers) {
|
||||
|
||||
public boolean cast(World world, EntityLiving caster, EnumHand hand, int ticksInUse, EntityLivingBase target,
|
||||
SpellModifiers modifiers){
|
||||
|
||||
if(!world.isRemote){
|
||||
for(int i=0;i<5;i++){
|
||||
for(int i = 0; i < 5; i++){
|
||||
BlockPos pos = WizardryUtilities.findNearbyFloorSpace(caster, 3, 6);
|
||||
// The spell instantly fails if no space was found (see javadoc for the above method).
|
||||
if(pos == null) return false;
|
||||
|
||||
EntitySpiderMinion spider = new EntitySpiderMinion(world, pos.getX() + 0.5, pos.getY(), pos.getZ() + 0.5, caster, (int)(600*modifiers.get(WizardryItems.duration_upgrade)));
|
||||
world.spawnEntityInWorld(spider);
|
||||
|
||||
EntitySpiderMinion spider = new EntitySpiderMinion(world, pos.getX() + 0.5, pos.getY(),
|
||||
pos.getZ() + 0.5, caster, (int)(600 * modifiers.get(WizardryItems.duration_upgrade)));
|
||||
world.spawnEntity(spider);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user