Verbiage fixes (#6557)

* fix verbiage for ShredMemory card filter

* fixing verbiage for DriverOfTheDead
This commit is contained in:
Daniel Peregolise 2020-06-19 16:54:27 -04:00 committed by GitHub
parent 71729f5a78
commit 520937e68a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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));

View file

@ -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}"));
}