mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[EOE] Implement Sledge-Class Seedship
This commit is contained in:
parent
3bff8581e2
commit
fe1166f6e7
3 changed files with 52 additions and 0 deletions
49
Mage.Sets/src/mage/cards/s/SledgeClassSeedship.java
Normal file
49
Mage.Sets/src/mage/cards/s/SledgeClassSeedship.java
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.effects.common.PutCardFromHandOntoBattlefieldEffect;
|
||||
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 mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SledgeClassSeedship extends CardImpl {
|
||||
|
||||
public SledgeClassSeedship(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.SPACECRAFT);
|
||||
|
||||
// Station
|
||||
this.addAbility(new StationAbility());
|
||||
|
||||
// STATION 7+
|
||||
// Flying
|
||||
// Whenever this Spacecraft attacks, you may put a creature from your hand onto the battlefield.
|
||||
// 4/5
|
||||
this.addAbility(new StationLevelAbility(7)
|
||||
.withLevelAbility(FlyingAbility.getInstance())
|
||||
.withLevelAbility(new AttacksTriggeredAbility(
|
||||
new PutCardFromHandOntoBattlefieldEffect(StaticFilters.FILTER_CARD_CREATURE_A)
|
||||
))
|
||||
.withPT(4, 5));
|
||||
}
|
||||
|
||||
private SledgeClassSeedship(final SledgeClassSeedship card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SledgeClassSeedship copy() {
|
||||
return new SledgeClassSeedship(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -241,6 +241,8 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Singularity Rupture", 228, Rarity.RARE, mage.cards.s.SingularityRupture.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Singularity Rupture", 350, Rarity.RARE, mage.cards.s.SingularityRupture.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Singularity Rupture", 398, Rarity.RARE, mage.cards.s.SingularityRupture.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sledge-Class Seedship", 208, Rarity.RARE, mage.cards.s.SledgeClassSeedship.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sledge-Class Seedship", 346, Rarity.RARE, mage.cards.s.SledgeClassSeedship.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sothera, the Supervoid", 115, Rarity.MYTHIC, mage.cards.s.SotheraTheSupervoid.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sothera, the Supervoid", 360, Rarity.MYTHIC, mage.cards.s.SotheraTheSupervoid.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Sothera, the Supervoid", 382, Rarity.MYTHIC, mage.cards.s.SotheraTheSupervoid.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
|
|
@ -59378,6 +59378,7 @@ Famished Worldsire|Edge of Eternities|341|M|{5}{G}{G}{G}|Creature - Leviathan|0|
|
|||
Frenzied Baloth|Edge of Eternities|342|R|{G}{G}|Creature - Beast|3|2|This spell can't be countered.$Trample, haste$Creature spells you control can't be countered.$Combat damage can't be prevented.|
|
||||
Icetill Explorer|Edge of Eternities|343|R|{2}{G}{G}|Creature - Insect Scout|2|4|You may play an additional land on each of your turns.$You may play lands from your graveyard.$Landfall -- Whenever a land you control enters, mill a card.|
|
||||
Ouroboroid|Edge of Eternities|345|M|{2}{G}{G}|Creature - Plant Wurm|1|3|At the beginning of combat on your turn, put X +1/+1 counters on each creature you control, where X is this creature's power.|
|
||||
Sledge-Class Seedship|Edge of Eternities|346|R|{2}{G}|Artifact - Spacecraft|||Station$STATION 7+$Flying$Whenever this Spacecraft attacks, you may put a creature from your hand onto the battlefield.$4/5|
|
||||
Biotech Specialist|Edge of Eternities|347|R|{R}{G}|Creature - Insect Scientist|1|3|When this creature enters, create a Lander token.$Whenever you sacrifice an artifact, this creature deals 2 damage to target opponent.|
|
||||
Infinite Guideline Station|Edge of Eternities|348|R|{W}{U}{B}{R}{G}|Legendary Artifact - Spacecraft|||When Infinite Guideline Station enters, create a tapped 2/2 colorless Robot artifact creature token for each multicolored permanent you control.$Station$STATION 12+$Flying$Whenever Infinite Guideline Station attacks, draw a card for each multicolored permanent you control.$7/15|
|
||||
Pinnacle Emissary|Edge of Eternities|349|R|{1}{U}{R}|Artifact Creature - Robot|3|3|Whenever you cast an artifact spell, create a 1/1 colorless Drone artifact creature token with flying and "This token can block only creatures with flying."$Warp {U/R}|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue