- Add Obosh, the Preypiercer to static damage prediction for the AI

This commit is contained in:
Michael Kamensky
2020-11-01 09:32:57 +03:00
parent 15c5f7f30d
commit 3b7069feec

View File

@@ -741,6 +741,10 @@ public class Player extends GameEntity implements Comparable<Player> {
restDamage = 0; restDamage = 0;
} }
} }
} else if (c.getName().equals("Obosh, the Preypiercer")) {
if (c.getController().equals(source.getController()) && source.getCMC() % 2 != 0) {
restDamage *= 2;
}
} }
} }