diff --git a/Mage.Sets/src/mage/cards/m/MaxTheDaredevil.java b/Mage.Sets/src/mage/cards/m/MaxTheDaredevil.java new file mode 100644 index 00000000000..7ed98132cb3 --- /dev/null +++ b/Mage.Sets/src/mage/cards/m/MaxTheDaredevil.java @@ -0,0 +1,53 @@ +package mage.cards.m; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.CastSecondSpellTriggeredAbility; +import mage.abilities.effects.common.UntapTargetEffect; +import mage.abilities.effects.keyword.InvestigateEffect; +import mage.abilities.keyword.FriendsForeverAbility; +import mage.abilities.keyword.HasteAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.SuperType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class MaxTheDaredevil extends CardImpl { + + public MaxTheDaredevil(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{R}{G}"); + + this.addSuperType(SuperType.LEGENDARY); + this.subtype.add(SubType.HUMAN); + this.power = new MageInt(3); + this.toughness = new MageInt(2); + + // Haste + this.addAbility(HasteAbility.getInstance()); + + // Whenever you cast your second spell each turn, untap target creature, then investigate. + Ability ability = new CastSecondSpellTriggeredAbility(new UntapTargetEffect()); + ability.addEffect(new InvestigateEffect().concatBy(", then")); + ability.addTarget(new TargetCreaturePermanent()); + this.addAbility(ability); + + // Friends forever + this.addAbility(FriendsForeverAbility.getInstance()); + } + + private MaxTheDaredevil(final MaxTheDaredevil card) { + super(card); + } + + @Override + public MaxTheDaredevil copy() { + return new MaxTheDaredevil(this); + } +} diff --git a/Mage.Sets/src/mage/sets/SecretLairDrop.java b/Mage.Sets/src/mage/sets/SecretLairDrop.java index df13e9a9f58..703d165561d 100644 --- a/Mage.Sets/src/mage/sets/SecretLairDrop.java +++ b/Mage.Sets/src/mage/sets/SecretLairDrop.java @@ -289,6 +289,7 @@ public class SecretLairDrop extends ExpansionSet { cards.add(new SetCardInfo("Chief Jim Hopper", 341, Rarity.RARE, mage.cards.c.ChiefJimHopper.class)); cards.add(new SetCardInfo("Dustin, Gadget Genius", 342, Rarity.RARE, mage.cards.d.DustinGadgetGenius.class)); cards.add(new SetCardInfo("Eleven, the Mage", 343, Rarity.COMMON, mage.cards.e.ElevenTheMage.class)); + cards.add(new SetCardInfo("Max, the Daredevil", 345, Rarity.RARE, mage.cards.m.MaxTheDaredevil.class)); cards.add(new SetCardInfo("Mike, the Dungeon Master", 346, Rarity.RARE, mage.cards.m.MikeTheDungeonMaster.class)); cards.add(new SetCardInfo("Generous Gift", 369, Rarity.RARE, mage.cards.g.GenerousGift.class)); cards.add(new SetCardInfo("Chain Lightning", 370, Rarity.RARE, mage.cards.c.ChainLightning.class));