Citizens2/src/main/java/net/citizensnpcs/npc/entity/CitizensZombieNPC.java

50 lines
1.3 KiB
Java
Raw Normal View History

2012-02-03 10:20:48 +01:00
package net.citizensnpcs.npc.entity;
import net.citizensnpcs.api.npc.NPC;
2012-02-04 09:13:20 +01:00
import net.citizensnpcs.npc.CitizensMobNPC;
2012-04-19 05:52:07 +02:00
import net.citizensnpcs.npc.CitizensNPC;
import net.citizensnpcs.npc.ai.NPCHolder;
import net.minecraft.server.EntityZombie;
2012-03-02 10:59:02 +01:00
import net.minecraft.server.PathfinderGoalSelector;
import net.minecraft.server.World;
2012-02-03 10:20:48 +01:00
import org.bukkit.entity.Zombie;
public class CitizensZombieNPC extends CitizensMobNPC {
2012-02-03 10:20:48 +01:00
public CitizensZombieNPC(int id, String name) {
super(id, name, EntityZombieNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public Zombie getBukkitEntity() {
return (Zombie) getHandle().getBukkitEntity();
}
public static class EntityZombieNPC extends EntityZombie implements NPCHolder {
2012-04-19 05:52:07 +02:00
private final CitizensNPC npc;
public EntityZombieNPC(World world) {
this(world, null);
}
public EntityZombieNPC(World world, NPC npc) {
super(world);
this.npc = (CitizensNPC) npc;
2012-03-02 10:59:02 +01:00
goalSelector = new PathfinderGoalSelector();
targetSelector = new PathfinderGoalSelector();
}
@Override
public NPC getNPC() {
return npc;
}
@Override
2012-04-30 11:52:55 +02:00
public void z_() {
super.z_();
if (npc != null)
npc.update();
}
}
2012-02-03 10:20:48 +01:00
}