mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[BRO] Implemented Reconstructed Thopter
This commit is contained in:
parent
4e20168e02
commit
fb2191cd5c
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/r/ReconstructedThopter.java
Normal file
41
Mage.Sets/src/mage/cards/r/ReconstructedThopter.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.UnearthAbility;
|
||||
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 ReconstructedThopter extends CardImpl {
|
||||
|
||||
public ReconstructedThopter(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
|
||||
|
||||
this.subtype.add(SubType.THOPTER);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Unearth {2}
|
||||
this.addAbility(new UnearthAbility(new ManaCostsImpl<>("{2}")));
|
||||
}
|
||||
|
||||
private ReconstructedThopter(final ReconstructedThopter card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReconstructedThopter copy() {
|
||||
return new ReconstructedThopter(this);
|
||||
}
|
||||
}
|
|
@ -68,6 +68,7 @@ public final class TheBrothersWar extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Phyrexian Fleshgorger", 121, Rarity.MYTHIC, mage.cards.p.PhyrexianFleshgorger.class));
|
||||
cards.add(new SetCardInfo("Plains", 278, Rarity.LAND, mage.cards.basiclands.Plains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Queen Kayla bin-Kroog", 218, Rarity.RARE, mage.cards.q.QueenKaylaBinKroog.class));
|
||||
cards.add(new SetCardInfo("Reconstructed Thopter", 242, Rarity.UNCOMMON, mage.cards.r.ReconstructedThopter.class));
|
||||
cards.add(new SetCardInfo("Recruitment Officer", 23, Rarity.UNCOMMON, mage.cards.r.RecruitmentOfficer.class));
|
||||
cards.add(new SetCardInfo("Rust Goliath", 204, Rarity.COMMON, mage.cards.r.RustGoliath.class));
|
||||
cards.add(new SetCardInfo("Scrapwork Cohort", 37, Rarity.COMMON, mage.cards.s.ScrapworkCohort.class));
|
||||
|
|
Loading…
Reference in a new issue