use of io.github.bioplethora.entity.ai.PrimordialRingFollowOwnerGoal in project bioplethora by AquexTheSeal.
the class PrimordialRingEntity method registerGoals.
@Override
protected void registerGoals() {
super.registerGoals();
this.goalSelector.addGoal(1, new PrimordialRingFollowOwnerGoal(this, 1.5D, 30.0F, 5.0F, true));
this.goalSelector.addGoal(2, new PrimordialRingRangedAttackGoal(this));
this.goalSelector.addGoal(5, new LookRandomlyGoal(this));
this.goalSelector.addGoal(7, new SwimGoal(this));
this.targetSelector.addGoal(1, new PrimordialRingOwnerHurtByTargetGoal(this));
this.targetSelector.addGoal(2, new PrimordialRingOwnerHurtTargetGoal(this));
}
Aggregations