mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[EOE] Implement Wurmwall Sweeper
This commit is contained in:
parent
52d54db12b
commit
e317350795
2 changed files with 48 additions and 0 deletions
47
Mage.Sets/src/mage/cards/w/WurmwallSweeper.java
Normal file
47
Mage.Sets/src/mage/cards/w/WurmwallSweeper.java
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
package mage.cards.w;
|
||||
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.keyword.SurveilEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.StationAbility;
|
||||
import mage.abilities.keyword.StationLevelAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class WurmwallSweeper extends CardImpl {
|
||||
|
||||
public WurmwallSweeper(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
this.subtype.add(SubType.SPACECRAFT);
|
||||
|
||||
// When this Spacecraft enters, surveil 2.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new SurveilEffect(2)));
|
||||
|
||||
// Station
|
||||
this.addAbility(new StationAbility());
|
||||
|
||||
// STATION 4+
|
||||
// Flying
|
||||
// 2/2
|
||||
this.addAbility(new StationLevelAbility(4)
|
||||
.withLevelAbility(FlyingAbility.getInstance())
|
||||
.withPT(2, 2));
|
||||
}
|
||||
|
||||
private WurmwallSweeper(final WurmwallSweeper card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WurmwallSweeper copy() {
|
||||
return new WurmwallSweeper(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -100,6 +100,7 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Watery Grave", 261, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Watery Grave", 286, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Watery Grave", 381, Rarity.RARE, mage.cards.w.WateryGrave.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Wurmwall Sweeper", 249, Rarity.COMMON, mage.cards.w.WurmwallSweeper.class));
|
||||
|
||||
cards.removeIf(setCardInfo -> unfinished.contains(setCardInfo.getName()));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue