Disc Droppers get 75% resist all
This commit is contained in:
@@ -1740,14 +1740,25 @@ public class Mob extends AbstractIntelligenceAgent {
|
||||
this.behaviourType = MobBehaviourType.Aggro;
|
||||
}
|
||||
|
||||
boolean isDropper = false;
|
||||
for(MobEquipment equipped: this.equip.values()){
|
||||
if(equipped.getItemBase().isVorg() && this.getMobBaseID() != 14062){
|
||||
this.healthMax = 7500;
|
||||
this.setHealth(this.healthMax);
|
||||
this.level = 65;
|
||||
//this.healthMax = 7500;
|
||||
//this.setHealth(this.healthMax);
|
||||
//this.level = 65;
|
||||
isDropper = true;
|
||||
}
|
||||
}
|
||||
for(Item item : this.charItemManager.getInventory()){
|
||||
if(item.getItemBase().isDiscRune() && this.level < 75){
|
||||
isDropper = true;
|
||||
}
|
||||
}
|
||||
|
||||
if(isDropper){
|
||||
this.level = 65;
|
||||
this.resists = new Resists("Dropper");
|
||||
}
|
||||
//for(Item loot : this.charItemManager.getInventory()){
|
||||
// if(loot.getItemBase().isDiscRune() && this.level < 80){
|
||||
// if(this.firstSpawn) {
|
||||
|
||||
Reference in New Issue
Block a user