- Implemented AI for Tasigur, the Golden Fang

This commit is contained in:
excessum
2015-03-07 07:59:24 +00:00
parent fac4381cf7
commit 3b8bf1cc83
2 changed files with 7 additions and 1 deletions

View File

@@ -76,6 +76,13 @@ public class MillAi extends SpellAbilityAi {
return false;
}
}
if (source.getName().equals("Tasigur, the Golden Fang")) {
if (!ai.getGame().getPhaseHandler().is(PhaseType.END_OF_TURN, ai.getOpponent()) ||
ai.getCardsIn(ZoneType.Library).size() < 10) {
return false;
}
}
return true;
}