vorg droppers increased difficulty

This commit is contained in:
2024-03-14 18:59:49 -05:00
parent 8890e02981
commit 92436be3f9
+8
View File
@@ -1736,6 +1736,14 @@ public class Mob extends AbstractIntelligenceAgent {
if(this.behaviourType.equals(MobBehaviourType.HamletGuard) && this.getMobBaseID() == 14104) {//guards if(this.behaviourType.equals(MobBehaviourType.HamletGuard) && this.getMobBaseID() == 14104) {//guards
this.behaviourType = MobBehaviourType.Aggro; this.behaviourType = MobBehaviourType.Aggro;
} }
for(MobEquipment equipped: this.equip.values()){
if(equipped.getItemBase().isVorg()){
this.healthMax = 7500;
this.setHealth(this.healthMax);
this.level = 65;
}
}
} }
@Override @Override