mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
[LTR] Implement The Mouth of Sauron
This commit is contained in:
parent
2d4737ce0d
commit
31c0c2b070
2 changed files with 80 additions and 0 deletions
78
Mage.Sets/src/mage/cards/t/TheMouthOfSauron.java
Normal file
78
Mage.Sets/src/mage/cards/t/TheMouthOfSauron.java
Normal file
|
@ -0,0 +1,78 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.MillCardsTargetEffect;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TheMouthOfSauron extends CardImpl {
|
||||
|
||||
public TheMouthOfSauron(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}{B}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ADVISOR);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// When The Mouth of Sauron enters the battlefield, target player mills three cards. Then amass Orcs X, where X is the number of instant and sorcery cards in that player's graveyard.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new MillCardsTargetEffect(3));
|
||||
ability.addEffect(new TheMouthOfSauronEffect());
|
||||
ability.addTarget(new TargetPlayer());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private TheMouthOfSauron(final TheMouthOfSauron card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheMouthOfSauron copy() {
|
||||
return new TheMouthOfSauron(this);
|
||||
}
|
||||
}
|
||||
|
||||
class TheMouthOfSauronEffect extends OneShotEffect {
|
||||
|
||||
TheMouthOfSauronEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Then amass Orcs X, where X is the number of instant and sorcery cards in that player's graveyard";
|
||||
}
|
||||
|
||||
private TheMouthOfSauronEffect(final TheMouthOfSauronEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheMouthOfSauronEffect copy() {
|
||||
return new TheMouthOfSauronEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(getTargetPointer().getFirst(game, source));
|
||||
return player != null && AmassEffect.doAmass(
|
||||
player.getGraveyard()
|
||||
.count(StaticFilters.FILTER_CARD_INSTANT_OR_SORCERY, game),
|
||||
SubType.ORC, game, source
|
||||
) != null;
|
||||
}
|
||||
}
|
|
@ -115,6 +115,7 @@ public final class TheLordOfTheRingsTalesOfMiddleEarth extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Tale of Tinuviel", 34, Rarity.UNCOMMON, mage.cards.t.TaleOfTinuviel.class));
|
||||
cards.add(new SetCardInfo("The Balrog, Flame of Udun", 395, Rarity.RARE, mage.cards.t.TheBalrogFlameOfUdun.class));
|
||||
cards.add(new SetCardInfo("The Bath Song", 40, Rarity.UNCOMMON, mage.cards.t.TheBathSong.class));
|
||||
cards.add(new SetCardInfo("The Mouth of Sauron", 216, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class));
|
||||
cards.add(new SetCardInfo("The One Ring", 246, Rarity.MYTHIC, mage.cards.t.TheOneRing.class));
|
||||
cards.add(new SetCardInfo("The Shire", 260, Rarity.RARE, mage.cards.t.TheShire.class));
|
||||
cards.add(new SetCardInfo("There and Back Again", 151, Rarity.RARE, mage.cards.t.ThereAndBackAgain.class));
|
||||
|
@ -131,5 +132,6 @@ public final class TheLordOfTheRingsTalesOfMiddleEarth extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Fiery Inscription", 126, Rarity.UNCOMMON, mage.cards.f.FieryInscription.class));
|
||||
cards.add(new SetCardInfo("Gift of Strands", 170, Rarity.UNCOMMON, mage.cards.g.GiftOfStrands.class));
|
||||
cards.add(new SetCardInfo("Oath of the Grey Host", 101, Rarity.UNCOMMON, mage.cards.o.OathOfTheGreyHost.class));
|
||||
cards.add(new SetCardInfo("The Mouth of Sauron", 216, Rarity.UNCOMMON, mage.cards.t.TheMouthOfSauron.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue