mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[EOE] Implement Intrepid Tenderfoot
This commit is contained in:
parent
0efe7880b7
commit
80af025665
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/i/IntrepidTenderfoot.java
Normal file
42
Mage.Sets/src/mage/cards/i/IntrepidTenderfoot.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.i;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.ActivateAsSorceryActivatedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.counters.CounterType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class IntrepidTenderfoot extends CardImpl {
|
||||
|
||||
public IntrepidTenderfoot(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
||||
this.subtype.add(SubType.INSECT);
|
||||
this.subtype.add(SubType.CITIZEN);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// {3}: Put a +1/+1 counter on this creature. Activate only as a sorcery.
|
||||
this.addAbility(new ActivateAsSorceryActivatedAbility(
|
||||
new AddCountersSourceEffect(CounterType.P1P1.createInstance()), new GenericManaCost(3)
|
||||
));
|
||||
}
|
||||
|
||||
private IntrepidTenderfoot(final IntrepidTenderfoot card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IntrepidTenderfoot copy() {
|
||||
return new IntrepidTenderfoot(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -174,6 +174,7 @@ public final class EdgeOfEternities extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Infinite Guideline Station", 348, Rarity.RARE, mage.cards.i.InfiniteGuidelineStation.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Insatiable Skittermaw", 108, Rarity.COMMON, mage.cards.i.InsatiableSkittermaw.class));
|
||||
cards.add(new SetCardInfo("Interceptor Mechan", 220, Rarity.UNCOMMON, mage.cards.i.InterceptorMechan.class));
|
||||
cards.add(new SetCardInfo("Intrepid Tenderfoot", 193, Rarity.COMMON, mage.cards.i.IntrepidTenderfoot.class));
|
||||
cards.add(new SetCardInfo("Invasive Maneuvers", 137, Rarity.UNCOMMON, mage.cards.i.InvasiveManeuvers.class));
|
||||
cards.add(new SetCardInfo("Island", 263, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 269, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue