mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08:00
[OTJ] Implement Malcolm, the Eyes
This commit is contained in:
parent
954b9dd4ba
commit
cd4189bc51
2 changed files with 49 additions and 0 deletions
48
Mage.Sets/src/mage/cards/m/MalcolmTheEyes.java
Normal file
48
Mage.Sets/src/mage/cards/m/MalcolmTheEyes.java
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.CastSecondSpellTriggeredAbility;
|
||||
import mage.abilities.effects.keyword.InvestigateEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
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 java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MalcolmTheEyes extends CardImpl {
|
||||
|
||||
public MalcolmTheEyes(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}{R}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.SIREN);
|
||||
this.subtype.add(SubType.PIRATE);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
// Whenever you cast your second spell each turn, investigate.
|
||||
this.addAbility(new CastSecondSpellTriggeredAbility(new InvestigateEffect()));
|
||||
}
|
||||
|
||||
private MalcolmTheEyes(final MalcolmTheEyes card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MalcolmTheEyes copy() {
|
||||
return new MalcolmTheEyes(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -83,6 +83,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Loan Shark", 55, Rarity.COMMON, mage.cards.l.LoanShark.class));
|
||||
cards.add(new SetCardInfo("Lonely Arroyo", 260, Rarity.COMMON, mage.cards.l.LonelyArroyo.class));
|
||||
cards.add(new SetCardInfo("Lush Oasis", 261, Rarity.COMMON, mage.cards.l.LushOasis.class));
|
||||
cards.add(new SetCardInfo("Malcolm, the Eyes", 219, Rarity.RARE, mage.cards.m.MalcolmTheEyes.class));
|
||||
cards.add(new SetCardInfo("Map the Frontier", 170, Rarity.UNCOMMON, mage.cards.m.MapTheFrontier.class));
|
||||
cards.add(new SetCardInfo("Marauding Sphinx", 56, Rarity.UNCOMMON, mage.cards.m.MaraudingSphinx.class));
|
||||
cards.add(new SetCardInfo("Mine Raider", 135, Rarity.COMMON, mage.cards.m.MineRaider.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue