use of pl.plajer.villagedefense3.creatures.v1_8_R3.TankerZombie in project Village_Defense by Plajer.
the class ArenaInitializer1_12_R1 method spawnKnockbackResistantZombies.
@Override
public void spawnKnockbackResistantZombies(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size()));
net.minecraft.server.v1_12_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
TankerZombie fastZombie = new TankerZombie(location.getWorld());
fastZombie.getAttributeInstance(GenericAttributes.c).setValue(Double.MAX_VALUE);
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
zombie.getEquipment().setItemInHand(new ItemStack(Material.GOLD_AXE));
zombie.getEquipment().setBoots(new ItemStack(Material.DIAMOND_BOOTS));
zombie.getEquipment().setLeggings(new ItemStack(Material.DIAMOND_LEGGINGS));
zombie.getEquipment().setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE));
zombie.getEquipment().setHelmet(new ItemStack(Material.DIAMOND_HELMET));
zombie.setRemoveWhenFarAway(false);
CreatureUtils.applyHealthBar(zombie);
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
this.addZombie((Zombie) fastZombie.getBukkitEntity());
super.subtractZombiesToSpawn();
}
use of pl.plajer.villagedefense3.creatures.v1_8_R3.TankerZombie in project Village_Defense by Plajer.
the class ArenaInitializer1_11_R1 method spawnKnockbackResistantZombies.
@Override
public void spawnKnockbackResistantZombies(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size()));
net.minecraft.server.v1_11_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
TankerZombie fastZombie = new TankerZombie(location.getWorld());
fastZombie.getAttributeInstance(GenericAttributes.c).setValue(Double.MAX_VALUE);
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
zombie.getEquipment().setItemInHand(new ItemStack(Material.GOLD_AXE));
zombie.getEquipment().setBoots(new ItemStack(Material.DIAMOND_BOOTS));
zombie.getEquipment().setLeggings(new ItemStack(Material.DIAMOND_LEGGINGS));
zombie.getEquipment().setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE));
zombie.getEquipment().setHelmet(new ItemStack(Material.DIAMOND_HELMET));
zombie.setRemoveWhenFarAway(false);
CreatureUtils.applyHealthBar(zombie);
this.addZombie((Zombie) fastZombie.getBukkitEntity());
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
super.subtractZombiesToSpawn();
}
use of pl.plajer.villagedefense3.creatures.v1_8_R3.TankerZombie in project Village_Defense by Plajer.
the class ArenaInitializer1_8_R3 method spawnKnockbackResistantZombies.
@Override
public void spawnKnockbackResistantZombies(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size() - 1));
net.minecraft.server.v1_8_R3.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
TankerZombie fastZombie = new TankerZombie(location.getWorld());
fastZombie.getAttributeInstance(GenericAttributes.c).setValue(Double.MAX_VALUE);
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
zombie.getEquipment().setItemInHand(new ItemStack(Material.GOLD_AXE));
zombie.getEquipment().setBoots(new ItemStack(Material.DIAMOND_BOOTS));
zombie.getEquipment().setLeggings(new ItemStack(Material.DIAMOND_LEGGINGS));
zombie.getEquipment().setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE));
zombie.getEquipment().setHelmet(new ItemStack(Material.DIAMOND_HELMET));
zombie.setRemoveWhenFarAway(false);
CreatureUtils.applyHealthBar(zombie);
this.addZombie((Zombie) fastZombie.getBukkitEntity());
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
super.subtractZombiesToSpawn();
}
use of pl.plajer.villagedefense3.creatures.v1_8_R3.TankerZombie in project Village_Defense by Plajer.
the class ArenaInitializer1_9_R1 method spawnKnockbackResistantZombies.
@Override
public void spawnKnockbackResistantZombies(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size() - 1));
net.minecraft.server.v1_9_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
TankerZombie fastZombie = new TankerZombie(location.getWorld());
fastZombie.getAttributeInstance(GenericAttributes.c).setValue(Double.MAX_VALUE);
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
zombie.getEquipment().setItemInHand(new ItemStack(Material.GOLD_AXE));
zombie.getEquipment().setBoots(new ItemStack(Material.DIAMOND_BOOTS));
zombie.getEquipment().setLeggings(new ItemStack(Material.DIAMOND_LEGGINGS));
zombie.getEquipment().setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE));
zombie.getEquipment().setHelmet(new ItemStack(Material.DIAMOND_HELMET));
zombie.setRemoveWhenFarAway(false);
CreatureUtils.applyHealthBar(zombie);
this.addZombie((Zombie) fastZombie.getBukkitEntity());
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
super.subtractZombiesToSpawn();
}
Aggregations