- RemAIDeck update: next iteration (the rest of letter N).

This commit is contained in:
Agetian
2017-10-10 13:55:45 +00:00
parent 31e7316854
commit df480b67c0
12 changed files with 29 additions and 20 deletions

View File

@@ -160,6 +160,18 @@ public class DamageDealAi extends DamageAiBase {
} else {
return false;
}
} else if ("NinThePainArtist".equals(logic)) {
// Make sure not to mana lock ourselves + make the opponent draw cards into an immediate discard
if (ai.getGame().getPhaseHandler().is(PhaseType.END_OF_TURN)) {
boolean doTarget = damageTargetAI(ai, sa, dmg, true);
if (doTarget) {
Card tgt = sa.getTargets().getFirstTargetedCard();
if (tgt != null) {
return ai.getGame().getPhaseHandler().getPlayerTurn() == tgt.getController();
}
}
}
return false;
}
if (sourceName.equals("Sorin, Grim Nemesis")) {