mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
[MH2] Implemented Thought Monitor
This commit is contained in:
parent
5033506736
commit
b630f5e1db
3 changed files with 47 additions and 0 deletions
45
Mage.Sets/src/mage/cards/t/ThoughtMonitor.java
Normal file
45
Mage.Sets/src/mage/cards/t/ThoughtMonitor.java
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
package mage.cards.t;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||||
|
import mage.abilities.keyword.AffinityForArtifactsAbility;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
|
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 ThoughtMonitor extends CardImpl {
|
||||||
|
|
||||||
|
public ThoughtMonitor(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{6}{U}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.CONSTRUCT);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
// Affinity for artifacts
|
||||||
|
this.addAbility(new AffinityForArtifactsAbility());
|
||||||
|
|
||||||
|
// Flying
|
||||||
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
|
// When Thought Monitor enters the battlefield, draw two cards.
|
||||||
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(2)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private ThoughtMonitor(final ThoughtMonitor card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ThoughtMonitor copy() {
|
||||||
|
return new ThoughtMonitor(this);
|
||||||
|
}
|
||||||
|
}
|
|
@ -154,6 +154,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Terramorph", 177, Rarity.UNCOMMON, mage.cards.t.Terramorph.class));
|
cards.add(new SetCardInfo("Terramorph", 177, Rarity.UNCOMMON, mage.cards.t.Terramorph.class));
|
||||||
cards.add(new SetCardInfo("The Underworld Cookbook", 240, Rarity.UNCOMMON, mage.cards.t.TheUnderworldCookbook.class));
|
cards.add(new SetCardInfo("The Underworld Cookbook", 240, Rarity.UNCOMMON, mage.cards.t.TheUnderworldCookbook.class));
|
||||||
cards.add(new SetCardInfo("Thornglint Bridge", 258, Rarity.COMMON, mage.cards.t.ThornglintBridge.class));
|
cards.add(new SetCardInfo("Thornglint Bridge", 258, Rarity.COMMON, mage.cards.t.ThornglintBridge.class));
|
||||||
|
cards.add(new SetCardInfo("Thought Monitor", 71, Rarity.RARE, mage.cards.t.ThoughtMonitor.class));
|
||||||
cards.add(new SetCardInfo("Thraben Watcher", 34, Rarity.UNCOMMON, mage.cards.t.ThrabenWatcher.class));
|
cards.add(new SetCardInfo("Thraben Watcher", 34, Rarity.UNCOMMON, mage.cards.t.ThrabenWatcher.class));
|
||||||
cards.add(new SetCardInfo("Thrasta, Tempest's Roar", 178, Rarity.MYTHIC, mage.cards.t.ThrastaTempestsRoar.class));
|
cards.add(new SetCardInfo("Thrasta, Tempest's Roar", 178, Rarity.MYTHIC, mage.cards.t.ThrastaTempestsRoar.class));
|
||||||
cards.add(new SetCardInfo("Timeless Dragon", 35, Rarity.RARE, mage.cards.t.TimelessDragon.class));
|
cards.add(new SetCardInfo("Timeless Dragon", 35, Rarity.RARE, mage.cards.t.TimelessDragon.class));
|
||||||
|
|
|
@ -41370,6 +41370,7 @@ Subtlety|Modern Horizons 2|67|M|{2}{U}{U}|Creature - Elemental Incarnation|3|3|F
|
||||||
Suspend|Modern Horizons 2|68|R|{U}|Instant|||Exile target creature and put two time counters on it. If it doesn't have suspend, it gains suspend.|
|
Suspend|Modern Horizons 2|68|R|{U}|Instant|||Exile target creature and put two time counters on it. If it doesn't have suspend, it gains suspend.|
|
||||||
Svyelun of Sea and Sky|Modern Horizons 2|69|M|{1}{U}{U}|Legendary Creature - Merfolk God|3|4|Svyelun of Sea and Sky has indestructible as long as you control at least two other Merfolk.$Whenever Svyelun attacks, draw a card.$Other Merfolk you control have ward {1}|
|
Svyelun of Sea and Sky|Modern Horizons 2|69|M|{1}{U}{U}|Legendary Creature - Merfolk God|3|4|Svyelun of Sea and Sky has indestructible as long as you control at least two other Merfolk.$Whenever Svyelun attacks, draw a card.$Other Merfolk you control have ward {1}|
|
||||||
Sweep the Skies|Modern Horizons 2|70|U|{X}{U}{U}|Sorcery|||Converge — Create a 1/1 colorless Thopter artifact creature token with flying for each color of mana spent to cast this spell.|
|
Sweep the Skies|Modern Horizons 2|70|U|{X}{U}{U}|Sorcery|||Converge — Create a 1/1 colorless Thopter artifact creature token with flying for each color of mana spent to cast this spell.|
|
||||||
|
Thought Monitor|Modern Horizons 2|71|R|{6}{U}|Artifact Creature - Construct|2|2|Affinity for artifacts$Flying$When Thought Monitor enters the battlefield, draw two cards.|
|
||||||
Vedalken Infiltrator|Modern Horizons 2|73|U|{1}{U}|Creature - Vedalken Rogue|1|3|Vedalken Infiltrator can't be blocked.$Metalcraft — Vedalken Infiltrator gets +1/+0 as long as you control three or more artifacts.|
|
Vedalken Infiltrator|Modern Horizons 2|73|U|{1}{U}|Creature - Vedalken Rogue|1|3|Vedalken Infiltrator can't be blocked.$Metalcraft — Vedalken Infiltrator gets +1/+0 as long as you control three or more artifacts.|
|
||||||
Archfiend of Sorrows|Modern Horizons 2|74|U|{5}{B}{B}|Creature - Demon|4|5|Flying$When Archfiend of Sorrows enters the battlefield, creatures your opponents control get -2/-2 until end of turn.$Unearth {3}{B}{B}|
|
Archfiend of Sorrows|Modern Horizons 2|74|U|{5}{B}{B}|Creature - Demon|4|5|Flying$When Archfiend of Sorrows enters the battlefield, creatures your opponents control get -2/-2 until end of turn.$Unearth {3}{B}{B}|
|
||||||
Archon of Cruelty|Modern Horizons 2|75|M|{6}{B}{B}|Creature - Archon|6|6|Flying$Whenever Archon of Cruelty enters the battlefield or attacks, target opponent sacrifices a creature or planeswalker, discards a card, and loses 3 life. You draw a card and gain 3 life.|
|
Archon of Cruelty|Modern Horizons 2|75|M|{6}{B}{B}|Creature - Archon|6|6|Flying$Whenever Archon of Cruelty enters the battlefield or attacks, target opponent sacrifices a creature or planeswalker, discards a card, and loses 3 life. You draw a card and gain 3 life.|
|
||||||
|
|
Loading…
Reference in a new issue