forked from External/mage
implement [MH3] Retrofitted Transmogrant
This commit is contained in:
parent
2c925c66e8
commit
953ef3cbb9
2 changed files with 47 additions and 0 deletions
46
Mage.Sets/src/mage/cards/r/RetrofittedTransmogrant.java
Normal file
46
Mage.Sets/src/mage/cards/r/RetrofittedTransmogrant.java
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToBattlefieldWithCounterEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.counters.CounterType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class RetrofittedTransmogrant extends CardImpl {
|
||||
|
||||
public RetrofittedTransmogrant(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{B}");
|
||||
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// {3}{B}: Return Retrofitted Transmogrant from your graveyard to the battlefield tapped with two +1/+1 counters on it.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
Zone.GRAVEYARD,
|
||||
new ReturnSourceFromGraveyardToBattlefieldWithCounterEffect(
|
||||
CounterType.P1P1.createInstance(2), true
|
||||
),
|
||||
new ManaCostsImpl<>("{3}{B}")
|
||||
));
|
||||
}
|
||||
|
||||
private RetrofittedTransmogrant(final RetrofittedTransmogrant card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RetrofittedTransmogrant copy() {
|
||||
return new RetrofittedTransmogrant(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -203,6 +203,7 @@ public final class ModernHorizons3 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Reef Worm", 271, Rarity.UNCOMMON, mage.cards.r.ReefWorm.class));
|
||||
cards.add(new SetCardInfo("Refurbished Familiar", 105, Rarity.COMMON, mage.cards.r.RefurbishedFamiliar.class));
|
||||
cards.add(new SetCardInfo("Reiterating Bolt", 134, Rarity.UNCOMMON, mage.cards.r.ReiteratingBolt.class));
|
||||
cards.add(new SetCardInfo("Retrofitted Transmogrant", 106, Rarity.COMMON, mage.cards.r.RetrofittedTransmogrant.class));
|
||||
cards.add(new SetCardInfo("Revitalizing Repast", 256, Rarity.UNCOMMON, mage.cards.r.RevitalizingRepast.class));
|
||||
cards.add(new SetCardInfo("Riddle Gate Gargoyle", 201, Rarity.COMMON, mage.cards.r.RiddleGateGargoyle.class));
|
||||
cards.add(new SetCardInfo("Ripples of Undeath", 107, Rarity.RARE, mage.cards.r.RipplesOfUndeath.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue