- Sunlance should be cascadable.

- Fixed Dovescape token controllership bug.
- Fixed Sower of Temptation (AI targeting should happen only once, as it hits play).
This commit is contained in:
jendave
2011-08-06 03:28:17 +00:00
parent 5074982212
commit afe8c8d0c2
3 changed files with 11 additions and 8 deletions

View File

@@ -7411,7 +7411,14 @@ public class CardFactory implements NewConstants {
if((!CardUtil.getColors(card).contains(Constant.Color.White)) && card.isCreature()
&& zone.is(Constant.Zone.Play)) {
spell.setTargetCard(card);
stopSetNext(new Input_PayManaCost(spell));
if (this.isFree())
{
this.setFree(false);
AllZone.Stack.add(spell);
stop();
}
else
stopSetNext(new Input_PayManaCost(spell));
}
}
};//SpellAbility - target

View File

@@ -7848,16 +7848,12 @@ public class CardFactory_Creatures {
if(c.isEmpty()) return false;
if(2 <= c.get(0).getNetAttack() && c.get(0).getKeyword().contains("Flying")) {
setTargetCard(c.get(0));
if( c.get(0).getNetAttack() >= 2 && c.get(0).getKeyword().contains("Flying"))
return true;
}
CardListUtil.sortAttack(c);
if(4 <= c.get(0).getNetAttack()) {
setTargetCard(c.get(0));
if(4 <= c.get(0).getNetAttack())
return true;
}
return false;
}

View File

@@ -1147,7 +1147,7 @@ public class GameActionUtil {
AllZone.GameAction.moveToGraveyard(sa.getSourceCard());
for(int j = 0; j < cl.size() * cmc; j++) {
CardFactoryUtil.makeToken("Bird", "WU 1 1 Bird", card, "W U", new String[] {
CardFactoryUtil.makeToken("Bird", "WU 1 1 Bird", sa.getSourceCard().getController(), "W U", new String[] {
"Creature", "Bird"}, 1, 1, new String[] {"Flying"});
}