mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Added "This creature can't attack unless defending player controls an Island" and "When you control no Islands, sacrifice this creature" keywords.
- Added some new cards: Goblin Chieftain, Vodalian Knights, Fleeting Image, Merfolk Sovereign, corrected Dandan, bunch of other cards.
This commit is contained in:
@@ -13577,8 +13577,11 @@ public class CardFactory implements NewConstants {
|
||||
public boolean canPlayAI()
|
||||
{
|
||||
CardList list = new CardList(AllZone.Computer_Play.getCards());
|
||||
setTargetCard(CardFactoryUtil.AI_getBestCreature(list));
|
||||
return (getTargetCard() != null);
|
||||
if (list.size() > 0) {
|
||||
setTargetCard(CardFactoryUtil.AI_getBestCreature(list));
|
||||
return (getTargetCard() != null);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
};
|
||||
ability.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability));
|
||||
|
||||
Reference in New Issue
Block a user