mirror of
https://github.com/correl/mage.git
synced 2025-04-08 17:00:07 -09:00
fixed Dread Wanderer text to correctly describe when it can be activated
This commit is contained in:
parent
36aad539f1
commit
765ccf63a6
1 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
package mage.cards.d;
|
package mage.cards.d;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -34,7 +33,15 @@ public final class DreadWanderer extends CardImpl {
|
||||||
|
|
||||||
// {2}{B}: Return Dread Wanderer from your graveyard to the battlefield.
|
// {2}{B}: Return Dread Wanderer from your graveyard to the battlefield.
|
||||||
// Activate this ability only any time you could cast a sorcery and only if you have one or fewer cards in hand.
|
// Activate this ability only any time you could cast a sorcery and only if you have one or fewer cards in hand.
|
||||||
ConditionalActivatedAbility ability = new ConditionalActivatedAbility(Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(), new ManaCostsImpl("{2}{B}"), HeckbentCondition.instance);
|
ConditionalActivatedAbility ability = new ConditionalActivatedAbility(
|
||||||
|
Zone.GRAVEYARD,
|
||||||
|
new ReturnSourceFromGraveyardToBattlefieldEffect(),
|
||||||
|
new ManaCostsImpl("{2}{B}"),
|
||||||
|
HeckbentCondition.instance,
|
||||||
|
"{2}{B}: Return {this} from your graveyard to the battlefield. "
|
||||||
|
+ "Activate this ability only any time you could cast a sorcery "
|
||||||
|
+ "and only if you have one or fewer cards in hand."
|
||||||
|
);
|
||||||
ability.setTiming(TimingRule.SORCERY);
|
ability.setTiming(TimingRule.SORCERY);
|
||||||
addAbility(ability);
|
addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue