Added BestowAbility for Theros.

This commit is contained in:
LevelX2 2013-09-07 16:03:48 +02:00
parent eaba56568d
commit 5785c23b4d
3 changed files with 184 additions and 6 deletions

View file

@ -188,10 +188,16 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
}
return false;
}
//20091005 - 608.2b
game.informPlayers(getName() + " has been fizzled.");
counter(null, game);
return false;
if (card.getCardType().contains(CardType.CREATURE)) { // e.g. Creature with Bestow (rule confirmation yet missing)
updateOptionalCosts(0);
result = card.putOntoBattlefield(game, Zone.HAND, ability.getId(), controllerId);
return result;
} else {
//20091005 - 608.2b
game.informPlayers(getName() + " has been fizzled.");
counter(null, game);
return false;
}
} else {
updateOptionalCosts(0);
result = card.putOntoBattlefield(game, Zone.HAND, ability.getId(), controllerId);