use of net.minecraft.entity.ai.goal.OwnerHurtByTargetGoal in project VariousOddities by Lyinginbedmon.
the class EntityGhastling method registerGoals.
public void registerGoals() {
this.goalSelector.addGoal(2, new SitGoal(this));
this.goalSelector.addGoal(5, new EntityAIGhastlingFireball(this));
this.goalSelector.addGoal(7, new LandOnOwnersShoulderGoal(this));
this.goalSelector.addGoal(8, new EntityAIGhastlingWander(this, 0.1F));
this.goalSelector.addGoal(10, new LookAtGoal(this, PlayerEntity.class, 8.0F));
this.goalSelector.addGoal(10, new LookRandomlyGoal(this));
if (ConfigVO.MOBS.aiSettings.isOddityAIEnabled(VOEntities.GHASTLING)) {
this.targetSelector.addGoal(1, new OwnerHurtByTargetGoal(this));
this.targetSelector.addGoal(2, new OwnerHurtTargetGoal(this));
this.targetSelector.addGoal(3, new HurtByTargetGoal(this));
}
}
use of net.minecraft.entity.ai.goal.OwnerHurtByTargetGoal in project VariousOddities by Lyinginbedmon.
the class AbstractGoblinWolf method registerGoals.
public void registerGoals() {
super.registerGoals();
this.goalSelector.addGoal(1, new SwimGoal(this));
this.goalSelector.addGoal(2, new SitGoal(this));
this.goalSelector.addGoal(5, new MeleeAttackGoal(this, 1.0D, true));
this.goalSelector.addGoal(5, new EntityAIWorgFollowGoblin(this));
this.goalSelector.addGoal(6, new FollowOwnerGoal(this, 1.0D, 10.0F, 2.0F, false));
this.goalSelector.addGoal(8, new EntityAIWargWander(this, 1.0D));
this.goalSelector.addGoal(9, new EntityAIGoblinWolfBeg(this, 8F));
this.goalSelector.addGoal(10, new LookAtGoal(this, PlayerEntity.class, 8.0F));
this.goalSelector.addGoal(10, new LookRandomlyGoal(this));
if (ConfigVO.MOBS.aiSettings.isOddityAIEnabled(getType())) {
this.goalSelector.addGoal(5, new MeleeAttackGoal(this, 1.0D, true));
this.targetSelector.addGoal(1, new OwnerHurtByTargetGoal(this));
this.targetSelector.addGoal(2, new OwnerHurtTargetGoal(this));
this.targetSelector.addGoal(3, (new HurtByTargetGoal(this, AbstractGoblinWolf.class)).setCallsForHelp());
}
applyGeneticAI();
}
Aggregations