mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- 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:
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user