- Added Sygg, River Guide and Laquatus's Champion.

- Wordly Tutor / Sylvan Tutor and Eladamri's Call will now show the which creature the AI picked.
- Relentless Rats P/T are set correctly according to all others in play now.
- Added in a hack which should prevent lifegain from Essence Warden and Soul Warden together with some of the creature lands.
- Removed text from the creaturelands' abilities, and added them correctly as the ability's description.
This commit is contained in:
jendave
2011-08-06 02:52:47 +00:00
parent 42453e316d
commit e01a177a09
7 changed files with 238 additions and 45 deletions

View File

@@ -10059,6 +10059,10 @@ public class CardFactory implements NewConstants {
//move to top of library
AllZone.Computer_Library.remove(c);
AllZone.Computer_Library.add(c, 0);
CardList list = new CardList();
list.add(c);
AllZone.Display.getChoiceOptional("Computer picked:", list.toArray());
}
}//computerResolve()
public void humanResolve()
@@ -11675,13 +11679,18 @@ public class CardFactory implements NewConstants {
CardList list = new CardList(library);
list = list.getType("Creature");
//pick best creature
Card c = CardFactoryUtil.AI_getBestCreature(list);
if(c == null)
c = library[0];
AllZone.Computer_Library.remove(c);
AllZone.Computer_Hand.add(c);
if (list.size() > 0)
{
//pick best creature
Card c = CardFactoryUtil.AI_getBestCreature(list);
if(c == null)
c = list.get(0);
AllZone.Computer_Library.remove(c);
AllZone.Computer_Hand.add(c);
CardList cl = new CardList();
cl.add(c);
AllZone.Display.getChoiceOptional("Computer picked:", cl.toArray());
}
}
public boolean canPlay()
{