forked from External/mage
[OTJ] Implement Outlaw Medic
This commit is contained in:
parent
251bf96333
commit
7e2f11f470
3 changed files with 44 additions and 0 deletions
42
Mage.Sets/src/mage/cards/o/OutlawMedic.java
Normal file
42
Mage.Sets/src/mage/cards/o/OutlawMedic.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.o;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
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 OutlawMedic extends CardImpl {
|
||||
|
||||
public OutlawMedic(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// When Outlaw Medic dies, draw a card.
|
||||
this.addAbility(new DiesSourceTriggeredAbility(new DrawCardSourceControllerEffect(1)));
|
||||
}
|
||||
|
||||
private OutlawMedic(final OutlawMedic card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OutlawMedic copy() {
|
||||
return new OutlawMedic(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -161,6 +161,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ornery Tumblewagg", 171, Rarity.RARE, mage.cards.o.OrneryTumblewagg.class));
|
||||
cards.add(new SetCardInfo("Outcaster Greenblade", 172, Rarity.UNCOMMON, mage.cards.o.OutcasterGreenblade.class));
|
||||
cards.add(new SetCardInfo("Outcaster Trailblazer", 173, Rarity.RARE, mage.cards.o.OutcasterTrailblazer.class));
|
||||
cards.add(new SetCardInfo("Outlaw Medic", 23, Rarity.COMMON, mage.cards.o.OutlawMedic.class));
|
||||
cards.add(new SetCardInfo("Outlaw Stitcher", 59, Rarity.UNCOMMON, mage.cards.o.OutlawStitcher.class));
|
||||
cards.add(new SetCardInfo("Outlaws' Fury", 136, Rarity.COMMON, mage.cards.o.OutlawsFury.class));
|
||||
cards.add(new SetCardInfo("Peerless Ropemaster", 60, Rarity.COMMON, mage.cards.p.PeerlessRopemaster.class));
|
||||
|
|
|
|||
|
|
@ -52413,6 +52413,7 @@ Mystical Tether|Outlaws of Thunder Junction|19|C|{2}{W}|Enchantment|||You may ca
|
|||
Nurturing Pixie|Outlaws of Thunder Junction|20|U|{W}|Creature - Faerie Rogue|1|1|Flying$When Nurturing Pixie enters the battlefield, return up to one target non-Faerie, nonland permanent you control to its owner's hand. If a permanent was returned this way, put a +1/+1 counter on Nurturing Pixie.|
|
||||
Omenport Vigilante|Outlaws of Thunder Junction|21|U|{1}{W}|Creature - Human Mercenary|2|2|Omenport Vigilante has double strike as long as you've committed a crime this turn.|
|
||||
One Last Job|Outlaws of Thunder Junction|22|R|{2}{W}|Sorcery|||Spree$+ {2} -- Return target creature card from your graveyard to the battlefield.$+ {1} -- Return target Mount or Vehicle card from your graveyard to the battlefield.$+ {1} -- Return target Aura or Equipment card from your graveyard to the battlefield attached to a creature you control.|
|
||||
Outlaw Medic|Outlaws of Thunder Junction|23|C|{1}{W}|Creature - Human Rogue|1|3|Lifelink$When Outlaw Medic dies, draw a card.|
|
||||
Prairie Dog|Outlaws of Thunder Junction|24|U|{1}{W}|Creature - Squirrel|2|2|Lifelink$At the beginning of your end step, if you haven't cast a spell from your hand this turn, put a +1/+1 counter on Prairie Dog.${4}{W}: Until end of turn, if you would put one or more +1/+1 counters on a creature you control, put that many plus one +1/+1 counters on it instead.|
|
||||
Prosperity Tycoon|Outlaws of Thunder Junction|25|U|{3}{W}|Creature - Human Noble|4|2|When Prosperity Tycoon enters the battlefield, create a 1/1 red Mercenary creature token with "{T}: Target creature you control gets +1/+0 until end of turn. Activate only as a sorcery."${2}, Sacrifice a token: Prosperity Tycoon gains indestructible until end of turn. Tap it.|
|
||||
Requisition Raid|Outlaws of Thunder Junction|26|U|{W}|Sorcery|||Spree$+ {1} -- Destroy target artifact.$+ {1} -- Destroy target enchantment.$+ {1} -- Put a +1/+1 counter on each creature target player controls.|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue