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

60 lines
1.6 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.EntityMagmaCube;
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.MagmaCube;
public class CitizensMagmaCubeNPC extends CitizensMobNPC {
2012-02-03 10:20:48 +01:00
public CitizensMagmaCubeNPC(int id, String name) {
super(id, name, EntityMagmaCubeNPC.class);
2012-02-03 10:20:48 +01:00
}
@Override
public MagmaCube getBukkitEntity() {
return (MagmaCube) getHandle().getBukkitEntity();
}
public static class EntityMagmaCubeNPC extends EntityMagmaCube implements NPCHolder {
2012-04-19 05:52:07 +02:00
private final CitizensNPC npc;
public EntityMagmaCubeNPC(World world) {
this(world, null);
}
public EntityMagmaCubeNPC(World world, NPC npc) {
super(world);
this.npc = (CitizensNPC) npc;
2012-07-18 17:42:43 +02:00
if (npc != null) {
setSize(3);
goalSelector = new PathfinderGoalSelector();
targetSelector = new PathfinderGoalSelector();
}
}
2012-07-19 14:58:22 +02:00
@Override
public void b_(double x, double y, double z) {
// when another entity collides, b_ is called to push the NPC
// so we prevent b_ from doing anything.
}
@Override
2012-03-01 16:12:47 +01:00
public void d_() {
if (npc != null)
npc.update();
else
super.d_();
}
2012-03-27 16:42:15 +02:00
@Override
public NPC getNPC() {
return npc;
}
}
2012-02-03 10:20:48 +01:00
}