mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
[EMN] Some fixes to red cards.
This commit is contained in:
parent
fd55feee17
commit
b2bd87b9f4
3 changed files with 6 additions and 6 deletions
|
|
@ -117,7 +117,7 @@ class NahirisWrathAdditionalCost extends VariableCostImpl {
|
|||
|
||||
@Override
|
||||
public Cost getFixedCostsFromAnnouncedValue(int xValue) {
|
||||
TargetCardInHand target = new TargetCardInHand(xValue, new FilterCard());
|
||||
TargetCardInHand target = new TargetCardInHand(xValue, new FilterCard("cards to discard"));
|
||||
return new DiscardTargetCost(target);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,8 +51,8 @@ import mage.target.TargetCard;
|
|||
*/
|
||||
public class ShredsOfSanity extends CardImpl {
|
||||
|
||||
private final static FilterCard filterInstant = new FilterCard();
|
||||
private final static FilterCard filterSorcery = new FilterCard();
|
||||
private final static FilterCard filterInstant = new FilterCard("an instant card in your graveyard");
|
||||
private final static FilterCard filterSorcery = new FilterCard("a sorcery card in your graveyard");
|
||||
|
||||
static {
|
||||
filterInstant.add(new CardTypePredicate(CardType.INSTANT));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue