mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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) {
|
if (hasTheSameName) {
|
||||||
return controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
controller.moveCards(card, Zone.GRAVEYARD, source, game);
|
||||||
} else {
|
} else {
|
||||||
controller.moveCards(card, Zone.HAND, source, game);
|
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.
|
// {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) {
|
public JadeStatue(final JadeStatue card) {
|
||||||
|
|
Loading…
Reference in a new issue