mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
[EOE] Implement Starwinder
This commit is contained in:
parent
45eb3d52c7
commit
a8ee3d10ea
2 changed files with 51 additions and 0 deletions
48
Mage.Sets/src/mage/cards/s/Starwinder.java
Normal file
48
Mage.Sets/src/mage/cards/s/Starwinder.java
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DealsDamageToAPlayerAllTriggeredAbility;
|
||||
import mage.abilities.dynamicvalue.common.SavedDamageValue;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.keyword.WarpAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SetTargetPointer;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Starwinder extends CardImpl {
|
||||
|
||||
public Starwinder(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{U}{U}");
|
||||
|
||||
this.subtype.add(SubType.LEVIATHAN);
|
||||
this.power = new MageInt(7);
|
||||
this.toughness = new MageInt(7);
|
||||
|
||||
// Whenever a creature you control deals combat damage to a player, you may draw that many cards.
|
||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
|
||||
new DrawCardSourceControllerEffect(SavedDamageValue.MANY),
|
||||
StaticFilters.FILTER_CONTROLLED_CREATURE,
|
||||
true, SetTargetPointer.NONE, true
|
||||
));
|
||||
|
||||
// Warp {2}{U}{U}
|
||||
this.addAbility(new WarpAbility(this, "{2}{U}{U}"));
|
||||
}
|
||||
|
||||
private Starwinder(final Starwinder card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Starwinder copy() {
|
||||
return new Starwinder(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -236,6 +236,9 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Starfield Vocalist", 78, Rarity.RARE, mage.cards.s.StarfieldVocalist.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Starfighter Pilot", 38, Rarity.COMMON, mage.cards.s.StarfighterPilot.class));
|
||||
cards.add(new SetCardInfo("Starport Security", 39, Rarity.COMMON, mage.cards.s.StarportSecurity.class));
|
||||
cards.add(new SetCardInfo("Starwinder", 291, Rarity.RARE, mage.cards.s.Starwinder.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Starwinder", 306, Rarity.RARE, mage.cards.s.Starwinder.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Starwinder", 79, Rarity.RARE, mage.cards.s.Starwinder.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Station Monitor", 230, Rarity.UNCOMMON, mage.cards.s.StationMonitor.class));
|
||||
cards.add(new SetCardInfo("Stomping Ground", 258, Rarity.RARE, mage.cards.s.StompingGround.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Stomping Ground", 283, Rarity.RARE, mage.cards.s.StompingGround.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue