[MH3] Implement Frogmyr Enforcer

This commit is contained in:
theelk801 2024-05-22 10:42:59 -04:00
parent 6613f883ff
commit 414b257ab9
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.f;
import mage.MageInt;
import mage.abilities.keyword.AffinityForArtifactsAbility;
import mage.abilities.keyword.PrototypeAbility;
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 FrogmyrEnforcer extends CardImpl {
public FrogmyrEnforcer(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{7}");
this.subtype.add(SubType.FROG);
this.subtype.add(SubType.MYR);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Prototype {3}{R} -- 2/2
this.addAbility(new PrototypeAbility(this, "{3}{R}", 2, 2));
// Affinity for artifacts
this.addAbility(new AffinityForArtifactsAbility());
}
private FrogmyrEnforcer(final FrogmyrEnforcer card) {
super(card);
}
@Override
public FrogmyrEnforcer copy() {
return new FrogmyrEnforcer(this);
}
}

View file

@ -39,6 +39,7 @@ public final class ModernHorizons3 extends ExpansionSet {
cards.add(new SetCardInfo("Flooded Strand", 220, Rarity.RARE, mage.cards.f.FloodedStrand.class));
cards.add(new SetCardInfo("Flusterstorm", 496, Rarity.RARE, mage.cards.f.Flusterstorm.class));
cards.add(new SetCardInfo("Forest", 308, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("Frogmyr Enforcer", 120, Rarity.UNCOMMON, mage.cards.f.FrogmyrEnforcer.class));
cards.add(new SetCardInfo("Island", 305, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
cards.add(new SetCardInfo("It That Heralds the End", 9, Rarity.UNCOMMON, mage.cards.i.ItThatHeraldsTheEnd.class));
cards.add(new SetCardInfo("Jet Medallion", 292, Rarity.RARE, mage.cards.j.JetMedallion.class));