use of org.bukkit.craftbukkit.v1_8_R1.CraftWorld in project Village_Defense by Plajer.
the class ArenaInitializer1_12_R1 method spawnBabyZombie.
public void spawnBabyZombie(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size()));
net.minecraft.server.v1_12_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
BabyZombie fastZombie = new BabyZombie(location.getWorld());
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
CreatureUtils.applyHealthBar(zombie);
zombie.setRemoveWhenFarAway(false);
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
this.addZombie((Zombie) fastZombie.getBukkitEntity());
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
super.subtractZombiesToSpawn();
}
use of org.bukkit.craftbukkit.v1_8_R1.CraftWorld 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 org.bukkit.craftbukkit.v1_8_R1.CraftWorld in project Village_Defense by Plajer.
the class ArenaInitializer1_12_R1 method spawnWolf.
public void spawnWolf(Location location, Player player) {
net.minecraft.server.v1_12_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
WorkingWolf wolf = new WorkingWolf(location.getWorld());
wolf.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(wolf, CreatureSpawnEvent.SpawnReason.CUSTOM);
wolf.setCustomName(ChatManager.colorMessage("In-Game.Spawned-Wolf-Name").replaceAll("%player%", player.getName()));
wolf.setCustomNameVisible(true);
wolf.setInvisible(false);
((Wolf) wolf.getBukkitEntity()).setOwner(player);
CreatureUtils.applyMetadata(wolf.getBukkitEntity(), this);
this.addWolf((Wolf) wolf.getBukkitEntity());
}
use of org.bukkit.craftbukkit.v1_8_R1.CraftWorld in project Village_Defense by Plajer.
the class ArenaInitializer1_12_R1 method spawnHardZombie.
public void spawnHardZombie(Random random) {
Location location = zombieSpawns.get(random.nextInt(zombieSpawns.size()));
net.minecraft.server.v1_12_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
HardZombie fastZombie = new HardZombie(location.getWorld());
fastZombie.setPosition(location.getX(), location.getY(), location.getZ());
McWorld.addEntity(fastZombie, CreatureSpawnEvent.SpawnReason.CUSTOM);
Zombie zombie = (Zombie) fastZombie.getBukkitEntity();
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);
CreatureUtils.applyMetadata(fastZombie.getBukkitEntity(), this);
super.subtractZombiesToSpawn();
}
use of org.bukkit.craftbukkit.v1_8_R1.CraftWorld in project Village_Defense by Plajer.
the class ArenaInitializer1_12_R1 method spawnGolem.
public void spawnGolem(Location location, Player player) {
net.minecraft.server.v1_12_R1.World McWorld = ((CraftWorld) location.getWorld()).getHandle();
RidableIronGolem ironGolem = new RidableIronGolem(location.getWorld());
ironGolem.setPosition(location.getX(), location.getY(), location.getZ());
ironGolem.setCustomName(ChatManager.colorMessage("In-Game.Spawned-Golem-Name").replaceAll("%player%", player.getName()));
ironGolem.setCustomNameVisible(true);
McWorld.addEntity(ironGolem, CreatureSpawnEvent.SpawnReason.CUSTOM);
CreatureUtils.applyMetadata(ironGolem.getBukkitEntity(), this);
this.addIronGolem((org.bukkit.entity.IronGolem) ironGolem.getBukkitEntity());
}
Aggregations