mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
wrong duration fix
This commit is contained in:
parent
09add9a510
commit
1a81cf650b
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ public class JacesPhantasm extends CardImpl<JacesPhantasm> {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
// Jace's Phantasm gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard.
|
||||
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new ConditionalContinousEffect(new BoostSourceEffect(4, 4, Constants.Duration.EndOfTurn), new CardsInOpponentGraveCondition(10), "{this} gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard")));
|
||||
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new ConditionalContinousEffect(new BoostSourceEffect(4, 4, Constants.Duration.WhileOnBattlefield), new CardsInOpponentGraveCondition(10), "{this} gets +4/+4 as long as an opponent has ten or more cards in his or her graveyard")));
|
||||
}
|
||||
|
||||
public JacesPhantasm(final JacesPhantasm card) {
|
||||
|
|
Loading…
Reference in a new issue