Implemented Otrimi, the Ever-Playful

This commit is contained in:
Evan Kranzler 2020-04-04 19:43:23 -04:00
parent 5b58e6df0c
commit 852d452342
2 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,67 @@
package mage.cards.o;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
import mage.abilities.effects.common.ReturnFromGraveyardToHandTargetEffect;
import mage.abilities.keyword.MutateAbility;
import mage.abilities.keyword.TrampleAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.filter.FilterCard;
import mage.filter.common.FilterCreatureCard;
import mage.filter.predicate.mageobject.AbilityPredicate;
import mage.target.common.TargetCardInYourGraveyard;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class OtrimiTheEverPlayful extends CardImpl {
private static final FilterCard filter = new FilterCreatureCard("creature card with mutate");
static {
filter.add(new AbilityPredicate(MutateAbility.class));
}
private static final String rule = "Whenever this creature deals combat damage to a player, " +
"return target creature card with mutate from your graveyard to your hand.";
public OtrimiTheEverPlayful(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{G}{U}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.NIGHTMARE);
this.subtype.add(SubType.BEAST);
this.power = new MageInt(6);
this.toughness = new MageInt(6);
// Mutate {1}{B}{G}{U}
this.addAbility(new MutateAbility(this, "{1}{B}{G}{U}"));
// Trample
this.addAbility(TrampleAbility.getInstance());
// Whenever this creature deals combat damage to a player, return target creature card with mutate from your graveyard to your hand.
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(
new ReturnFromGraveyardToHandTargetEffect(),
false, rule, false
);
ability.addTarget(new TargetCardInYourGraveyard(filter));
this.addAbility(ability);
}
private OtrimiTheEverPlayful(final OtrimiTheEverPlayful card) {
super(card);
}
@Override
public OtrimiTheEverPlayful copy() {
return new OtrimiTheEverPlayful(this);
}
}

View file

@ -29,6 +29,7 @@ public final class Commander2020Edition extends ExpansionSet {
cards.add(new SetCardInfo("Flawless Maneuver", 26, Rarity.RARE, mage.cards.f.FlawlessManeuver.class));
cards.add(new SetCardInfo("Lifecrafter's Bestiary", 244, Rarity.RARE, mage.cards.l.LifecraftersBestiary.class));
cards.add(new SetCardInfo("Netherborn Altar", 45, Rarity.RARE, mage.cards.n.NetherbornAltar.class));
cards.add(new SetCardInfo("Otrimi, the Ever-Playful", 12, Rarity.COMMON, mage.cards.o.OtrimiTheEverPlayful.class));
cards.add(new SetCardInfo("Rashmi, Eternities Crafter", 229, Rarity.RARE, mage.cards.r.RashmiEternitiesCrafter.class));
cards.add(new SetCardInfo("Shabraz, the Skyshark", 14, Rarity.MYTHIC, mage.cards.s.ShabrazTheSkyshark.class));
cards.add(new SetCardInfo("Shared Animosity", 158, Rarity.RARE, mage.cards.s.SharedAnimosity.class));