[SPM] Implement Wraith, Vicious Vigilante

This commit is contained in:
theelk801 2025-09-03 14:34:06 -04:00
parent 1b345c58ac
commit 2db53973f9
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,44 @@
package mage.cards.w;
import mage.MageInt;
import mage.abilities.keyword.CantBeBlockedSourceAbility;
import mage.abilities.keyword.DoubleStrikeAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class WraithViciousVigilante extends CardImpl {
public WraithViciousVigilante(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}{U}");
this.supertype.add(SuperType.LEGENDARY);
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.DETECTIVE);
this.subtype.add(SubType.HERO);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Double strike
this.addAbility(DoubleStrikeAbility.getInstance());
// Fear Gas -- Wraith can't be blocked.
this.addAbility(new CantBeBlockedSourceAbility().withFlavorWord("Fear Gas"));
}
private WraithViciousVigilante(final WraithViciousVigilante card) {
super(card);
}
@Override
public WraithViciousVigilante copy() {
return new WraithViciousVigilante(this);
}
}

View file

@ -205,6 +205,7 @@ public final class MarvelsSpiderMan extends ExpansionSet {
cards.add(new SetCardInfo("Wild Pack Squad", 23, Rarity.COMMON, mage.cards.w.WildPackSquad.class));
cards.add(new SetCardInfo("With Great Power...", 24, Rarity.RARE, mage.cards.w.WithGreatPower.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("With Great Power...", 248, Rarity.RARE, mage.cards.w.WithGreatPower.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Wraith, Vicious Vigilante", 160, Rarity.UNCOMMON, mage.cards.w.WraithViciousVigilante.class));
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName()));
}