mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00: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;
|
||||
|
||||
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.
|
||||
// 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);
|
||||
addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue