mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[KHM] Implemented Starnheim Courser
This commit is contained in:
parent
286cc63342
commit
8e47f00716
3 changed files with 47 additions and 0 deletions
45
Mage.Sets/src/mage/cards/s/StarnheimCourser.java
Normal file
45
Mage.Sets/src/mage/cards/s/StarnheimCourser.java
Normal file
|
@ -0,0 +1,45 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterArtifactOrEnchantmentCard;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StarnheimCourser extends CardImpl {
|
||||
|
||||
private static final FilterCard filter = new FilterArtifactOrEnchantmentCard("artifact and enchantment");
|
||||
|
||||
public StarnheimCourser(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||
|
||||
this.subtype.add(SubType.PEGASUS);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Artifact and enchantment spells you cast cost {1} less to cast.
|
||||
this.addAbility(new SimpleStaticAbility(new SpellsCostReductionControllerEffect(filter, 1)));
|
||||
}
|
||||
|
||||
private StarnheimCourser(final StarnheimCourser card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StarnheimCourser copy() {
|
||||
return new StarnheimCourser(this);
|
||||
}
|
||||
}
|
|
@ -272,6 +272,7 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Squash", 152, Rarity.COMMON, mage.cards.s.Squash.class));
|
||||
cards.add(new SetCardInfo("Stalwart Valkyrie", 31, Rarity.COMMON, mage.cards.s.StalwartValkyrie.class));
|
||||
cards.add(new SetCardInfo("Starnheim Aspirant", 380, Rarity.UNCOMMON, mage.cards.s.StarnheimAspirant.class));
|
||||
cards.add(new SetCardInfo("Starnheim Courser", 32, Rarity.COMMON, mage.cards.s.StarnheimCourser.class));
|
||||
cards.add(new SetCardInfo("Story Seeker", 34, Rarity.COMMON, mage.cards.s.StorySeeker.class));
|
||||
cards.add(new SetCardInfo("Strategic Planning", 77, Rarity.COMMON, mage.cards.s.StrategicPlanning.class));
|
||||
cards.add(new SetCardInfo("Sulfurous Mire", 270, Rarity.COMMON, mage.cards.s.SulfurousMire.class));
|
||||
|
|
|
@ -40049,6 +40049,7 @@ Shepherd of the Cosmos|Kaldheim|28|U|{4}{W}{W}|Creature - Angel Warrior|3|3|Flyi
|
|||
Sigrid, God-Favored|Kaldheim|29|R|{1}{W}{W}|Legendary Creature - Human Warrior|2|2|Flash$First strike, protection from God creatures$When Sigrid, God-Favored enters the battlefield, exile up to one target attacking or blocking creature until Sigrid leaves the battlefield.|
|
||||
Spectral Steel|Kaldheim|30|U|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature gets +2/+2.${1}{W}, Exile Spectral Steel from your graveyard: Return another target Aura or Equipment card from your graveyard to your hand.|
|
||||
Stalwart Valkyrie|Kaldheim|31|C|{3}{W}|Creature - Angel Warrior|3|2|You may pay {1}{W} and exile a creature card from your graveyard rather than pay this spell's mana cost.$Flying|
|
||||
Starnheim Courser|Kaldheim|32|C|{2}{W}|Creature - Pegasus|2|2|Flying$Artifact and enchantment spells you cast cost {1} less to cast.|
|
||||
Starnheim Unleashed|Kaldheim|33|M|{2}{W}{W}|Sorcery|||Create a 4/4 white Angel Warrior creature token with flying and vigilance. If this spell was foretold, create X of those tokens instead.$Foretell {X}{X}{W}|
|
||||
Story Seeker|Kaldheim|34|C|{1}{W}|Creature - Dwarf Cleric|2|2|Lifelink|
|
||||
Usher of the Fallen|Kaldheim|35|U|{W}|Creature - Spirit Warrior|2|1|Boast — {1}{W}: Create a 1/1 white Human Warrior creature token.|
|
||||
|
|
Loading…
Reference in a new issue