mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Verbiage fixes (#6557)
* fix verbiage for ShredMemory card filter * fixing verbiage for DriverOfTheDead
This commit is contained in:
parent
71729f5a78
commit
520937e68a
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
|||
*/
|
||||
public final class DriverOfTheDead extends CardImpl {
|
||||
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard("creature card with converted mana cost 2 or less from your graveyard to the battlefield");
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard("creature card with converted mana cost 2 or less from your graveyard");
|
||||
|
||||
static {
|
||||
filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, 3));
|
||||
|
|
|
@ -21,7 +21,7 @@ public final class ShredMemory extends CardImpl {
|
|||
|
||||
// Exile up to four target cards from a single graveyard.
|
||||
this.getSpellAbility().addEffect(new ExileTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCardInASingleGraveyard(0, 4, new FilterCard("cards")));
|
||||
this.getSpellAbility().addTarget(new TargetCardInASingleGraveyard(0, 4, new FilterCard("cards from a single graveyard")));
|
||||
// Transmute {1}{B}{B}
|
||||
this.addAbility(new TransmuteAbility("{1}{B}{B}"));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue