mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Small fixes
This commit is contained in:
parent
8e6cf84ce4
commit
157d6e484f
2 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ class CandlesOfLengEffect extends OneShotEffect {
|
|||
}
|
||||
|
||||
if (hasTheSameName) {
|
||||
return controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
||||
controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
||||
} else {
|
||||
controller.moveCards(card, Zone.HAND, source, game);
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ public class JadeStatue extends CardImpl {
|
|||
|
||||
|
||||
// {2}: Jade Statue becomes a 3/6 Golem artifact creature until end of combat. Activate this ability only during combat.
|
||||
this.addAbility(new ConditionalActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEffect (new JadeStatueToken(), "", Duration.EndOfCombat), new ManaCostsImpl("{2}"), new IsPhaseCondition(TurnPhase.COMBAT), "{this} becomes a 3/6 Golem artifact creature until end of combat. Activate this ability only during combat."));
|
||||
this.addAbility(new ConditionalActivatedAbility(Zone.BATTLEFIELD, new BecomesCreatureSourceEffect (new JadeStatueToken(), "", Duration.EndOfCombat), new ManaCostsImpl("{2}"), new IsPhaseCondition(TurnPhase.COMBAT), "{2}: {this} becomes a 3/6 Golem artifact creature until end of combat. Activate this ability only during combat."));
|
||||
}
|
||||
|
||||
public JadeStatue(final JadeStatue card) {
|
||||
|
|
Loading…
Reference in a new issue