-Small fix in Riding the Dilu Horse.

-Cycling/Transmute/... + future other "hand abilities" should work on lands now.
-Fixed a lot of bugs in the combat code.
-Added Lichentrope, Phytohydra and Callous Giant.
This commit is contained in:
jendave
2011-08-06 03:00:41 +00:00
parent 1c64df6cd1
commit 7af3549c79
13 changed files with 532 additions and 192 deletions

View File

@@ -17217,10 +17217,12 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
return c.isCreature() && !c.getKeyword().contains("Horsemanship") && !c.getKeyword().contains("Defender");
}
});
Card c = CardFactoryUtil.AI_getBestCreature(list, card);
setTargetCard(c);
return list.size() > 0;
if (list.size() > 0) {
Card c = CardFactoryUtil.AI_getBestCreature(list, card);
setTargetCard(c);
return true;
}
return false;
}
public void resolve()