mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
[MH2] Implemented Ornithopter of Paradise
This commit is contained in:
parent
e7efc5c918
commit
7e09a973c6
3 changed files with 42 additions and 0 deletions
40
Mage.Sets/src/mage/cards/o/OrnithopterOfParadise.java
Normal file
40
Mage.Sets/src/mage/cards/o/OrnithopterOfParadise.java
Normal file
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.o;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.mana.AnyColorManaAbility;
|
||||
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 OrnithopterOfParadise extends CardImpl {
|
||||
|
||||
public OrnithopterOfParadise(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
|
||||
|
||||
this.subtype.add(SubType.THOPTER);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// {T}: Add one mana of any color.
|
||||
this.addAbility(new AnyColorManaAbility());
|
||||
}
|
||||
|
||||
private OrnithopterOfParadise(final OrnithopterOfParadise card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OrnithopterOfParadise copy() {
|
||||
return new OrnithopterOfParadise(this);
|
||||
}
|
||||
}
|
|
@ -132,6 +132,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Nevinyrral's Disk", 298, Rarity.RARE, mage.cards.n.NevinyrralsDisk.class));
|
||||
cards.add(new SetCardInfo("Obsidian Charmaw", 137, Rarity.RARE, mage.cards.o.ObsidianCharmaw.class));
|
||||
cards.add(new SetCardInfo("Orchard Strider", 169, Rarity.COMMON, mage.cards.o.OrchardStrider.class));
|
||||
cards.add(new SetCardInfo("Ornithopter of Paradise", 232, Rarity.COMMON, mage.cards.o.OrnithopterOfParadise.class));
|
||||
cards.add(new SetCardInfo("Patriarch's Bidding", 275, Rarity.RARE, mage.cards.p.PatriarchsBidding.class));
|
||||
cards.add(new SetCardInfo("Phantasmal Dreadmaw", 55, Rarity.COMMON, mage.cards.p.PhantasmalDreadmaw.class));
|
||||
cards.add(new SetCardInfo("Piru, the Volatile", 207, Rarity.RARE, mage.cards.p.PiruTheVolatile.class));
|
||||
|
|
|
@ -41482,6 +41482,7 @@ Kaldra Compleat|Modern Horizons 2|227|M|{7}|Legendary Artifact - Equipment|||Liv
|
|||
Liquimetal Torque|Modern Horizons 2|228|U|{2}|Artifact|||{T}: Add {C}.${T}: Target nonland permanent becomes an artifact in addition to its other types until end of turn.|
|
||||
Monoskelion|Modern Horizons 2|229|U|{2}|Artifact Creature - Construct|1|1|Monoskelion enters the battlefield with a +1/+1 counter on it.${1}, Remove a +1/+1 counter from Monoskelion: Monoskelion deals 1 damage to any target.|
|
||||
Nettlecyst|Modern Horizons 2|231|R|{3}|Artifact - Equipment|||Living weapon$Equipped creature gets +1/+1 for each artifact and/or enchantment you control.$Equip {2}|
|
||||
Ornithopter of Paradise|Modern Horizons 2|232|C|{2}|Artifact Creature - Thopter|0|2|Flying${T}: Add one mana of any color.|
|
||||
Sanctuary Raptor|Modern Horizons 2|233|U|{3}|Artifact Creature - Bird|2|1|Flying$Whenever Sanctuary Raptor attacks, if you control three or more tokens, Sanctuary Raptor gets +2/+0 and gains first strike until end of turn.|
|
||||
Scion of Draco|Modern Horizons 2|234|M|{12}|Artifact Creature - Dragon|4|4|Domain — This spell costs {2} less to cast for each basic land type among lands you control.$Flying$Each creature you control has vigilance if it's white, hexproof if it's blue, lifelink if it's black, first strike if it's red, and trample if it's green.|
|
||||
Steel Dromedary|Modern Horizons 2|237|U|{3}|Artifact Creature - Camel|2|2|Steel Dromedary enters the battlefield tapped with two +1/+1 counters on it.$Steel Dromedary doesn't untap during your untap step if it has a +1/+1 counter on it.$At the beginning of combat on your turn, you may move a +1/+1 counter from Steel Dromedary onto target creature.|
|
||||
|
|
Loading…
Reference in a new issue