mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[MBS] Lead the Stampede, Mitotic Manipulation
Improved Tezzeret, Agent of Bolas (removed branch that would halt the game)
This commit is contained in:
parent
b09de12f23
commit
ddbc38935f
3 changed files with 351 additions and 48 deletions
148
Mage.Sets/src/mage/sets/mirrodinbesieged/LeadTheStampede.java
Normal file
148
Mage.Sets/src/mage/sets/mirrodinbesieged/LeadTheStampede.java
Normal file
|
@ -0,0 +1,148 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.sets.mirrodinbesieged;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.Constants.CardType;
|
||||||
|
import mage.Constants.Outcome;
|
||||||
|
import mage.Constants.Rarity;
|
||||||
|
import mage.Constants.Zone;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.cards.Card;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.Cards;
|
||||||
|
import mage.cards.CardsImpl;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.common.FilterCreatureCard;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.TargetCard;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author North
|
||||||
|
*/
|
||||||
|
public class LeadTheStampede extends CardImpl<LeadTheStampede> {
|
||||||
|
|
||||||
|
public LeadTheStampede(UUID ownerId) {
|
||||||
|
super(ownerId, 82, "Lead the Stampede", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{2}{G}");
|
||||||
|
this.expansionSetCode = "MBS";
|
||||||
|
|
||||||
|
this.color.setGreen(true);
|
||||||
|
|
||||||
|
this.getSpellAbility().addEffect(new LeadTheStampedeEffect());
|
||||||
|
}
|
||||||
|
|
||||||
|
public LeadTheStampede(final LeadTheStampede card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LeadTheStampede copy() {
|
||||||
|
return new LeadTheStampede(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LeadTheStampedeEffect extends OneShotEffect<LeadTheStampedeEffect> {
|
||||||
|
|
||||||
|
public LeadTheStampedeEffect() {
|
||||||
|
super(Outcome.DrawCard);
|
||||||
|
this.staticText = "Look at the top five cards of your library. You may reveal any number of creature cards from among them and put the revealed cards into your hand. Put the rest on the bottom of your library in any order";
|
||||||
|
}
|
||||||
|
|
||||||
|
public LeadTheStampedeEffect(final LeadTheStampedeEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LeadTheStampedeEffect copy() {
|
||||||
|
return new LeadTheStampedeEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
|
if (player == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Cards cards = new CardsImpl(Zone.PICK);
|
||||||
|
int creatureCardsFound = 0;
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
Card card = player.getLibrary().removeFromTop(game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.add(card);
|
||||||
|
game.setZone(card.getId(), Zone.PICK);
|
||||||
|
if (card.getCardType().contains(CardType.CREATURE)) {
|
||||||
|
creatureCardsFound++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
player.lookAtCards("Lead the Stampede", cards, game);
|
||||||
|
|
||||||
|
if (creatureCardsFound > 0 && player.chooseUse(Outcome.DrawCard, "Do you wish to reveal creature cards and put them into your hand?", game)) {
|
||||||
|
Cards revealedCards = new CardsImpl();
|
||||||
|
TargetCard target = new TargetCard(0, creatureCardsFound, Zone.PICK, new FilterCreatureCard("creature cards to reveal and put into your hand"));
|
||||||
|
|
||||||
|
if (player.choose(Outcome.DrawCard, cards, target, game)) {
|
||||||
|
List<UUID> targets = target.getTargets();
|
||||||
|
for (UUID targetId : targets) {
|
||||||
|
Card card = cards.get(targetId, game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.remove(card);
|
||||||
|
card.moveToZone(Zone.HAND, source.getId(), game, false);
|
||||||
|
revealedCards.add(card);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!revealedCards.isEmpty()) {
|
||||||
|
player.revealCards("Lead the Stampede", revealedCards, game);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TargetCard target = new TargetCard(Zone.PICK, new FilterCard("card to put on the bottom of your library"));
|
||||||
|
target.setRequired(true);
|
||||||
|
while (cards.size() > 1) {
|
||||||
|
player.choose(Outcome.Neutral, cards, target, game);
|
||||||
|
Card card = cards.get(target.getFirstTarget(), game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.remove(card);
|
||||||
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
|
}
|
||||||
|
target.clearChosen();
|
||||||
|
}
|
||||||
|
if (cards.size() == 1) {
|
||||||
|
Card card = cards.get(cards.iterator().next(), game);
|
||||||
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,149 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.sets.mirrodinbesieged;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.Constants.CardType;
|
||||||
|
import mage.Constants.Outcome;
|
||||||
|
import mage.Constants.Rarity;
|
||||||
|
import mage.Constants.Zone;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.cards.Card;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.Cards;
|
||||||
|
import mage.cards.CardsImpl;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.TargetCard;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author North
|
||||||
|
*/
|
||||||
|
public class MitoticManipulation extends CardImpl<MitoticManipulation> {
|
||||||
|
|
||||||
|
public MitoticManipulation(UUID ownerId) {
|
||||||
|
super(ownerId, 27, "Mitotic Manipulation", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{1}{U}{U}");
|
||||||
|
this.expansionSetCode = "MBS";
|
||||||
|
|
||||||
|
this.color.setBlue(true);
|
||||||
|
|
||||||
|
this.getSpellAbility().addEffect(new MitoticManipulationEffect());
|
||||||
|
}
|
||||||
|
|
||||||
|
public MitoticManipulation(final MitoticManipulation card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MitoticManipulation copy() {
|
||||||
|
return new MitoticManipulation(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class MitoticManipulationEffect extends OneShotEffect<MitoticManipulationEffect> {
|
||||||
|
|
||||||
|
public MitoticManipulationEffect() {
|
||||||
|
super(Outcome.PutCardInPlay);
|
||||||
|
this.staticText = "Look at the top seven cards of your library. You may put one of those cards onto the battlefield if it has the same name as a permanent. Put the rest on the bottom of your library in any order";
|
||||||
|
}
|
||||||
|
|
||||||
|
public MitoticManipulationEffect(final MitoticManipulationEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MitoticManipulationEffect copy() {
|
||||||
|
return new MitoticManipulationEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
List<Permanent> permanents = game.getBattlefield().getActivePermanents(source.getControllerId(), game);
|
||||||
|
HashSet<String> permanentNames = new HashSet<String>();
|
||||||
|
for (Permanent permanent : permanents) {
|
||||||
|
permanentNames.add(permanent.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
|
if (player == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Cards cards = new CardsImpl(Zone.PICK);
|
||||||
|
Cards cardsFound = new CardsImpl(Zone.PICK);
|
||||||
|
for (int i = 0; i < 7; i++) {
|
||||||
|
Card card = player.getLibrary().removeFromTop(game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.add(card);
|
||||||
|
game.setZone(card.getId(), Zone.PICK);
|
||||||
|
if (permanentNames.contains(card.getName())) {
|
||||||
|
cardsFound.add(card);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
player.lookAtCards("Mitotic Manipulation", cards, game);
|
||||||
|
|
||||||
|
if (!cardsFound.isEmpty() && player.chooseUse(Outcome.PutCardInPlay, "Do you wish to put a card on the battlefield?", game)) {
|
||||||
|
FilterCard filter = new FilterCard("card to put onto the battlefield");
|
||||||
|
filter.getName().add(permanentNames);
|
||||||
|
TargetCard target = new TargetCard(Zone.PICK, filter);
|
||||||
|
|
||||||
|
if (player.choose(Outcome.PutCardInPlay, cardsFound, target, game)) {
|
||||||
|
Card card = cards.get(target.getFirstTarget(), game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.remove(card);
|
||||||
|
card.putOntoBattlefield(game, Zone.LIBRARY, source.getId(), source.getControllerId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
TargetCard target = new TargetCard(Zone.PICK, new FilterCard("card to put on the bottom of your library"));
|
||||||
|
target.setRequired(true);
|
||||||
|
while (cards.size() > 1) {
|
||||||
|
player.choose(Outcome.Neutral, cards, target, game);
|
||||||
|
Card card = cards.get(target.getFirstTarget(), game);
|
||||||
|
if (card != null) {
|
||||||
|
cards.remove(card);
|
||||||
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
|
}
|
||||||
|
target.clearChosen();
|
||||||
|
}
|
||||||
|
if (cards.size() == 1) {
|
||||||
|
Card card = cards.get(cards.iterator().next(), game);
|
||||||
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -97,9 +97,6 @@ public class TezzeretAgentOfBolas extends CardImpl<TezzeretAgentOfBolas> {
|
||||||
|
|
||||||
class TezzeretAgentOfBolasEffect1 extends OneShotEffect<TezzeretAgentOfBolasEffect1> {
|
class TezzeretAgentOfBolasEffect1 extends OneShotEffect<TezzeretAgentOfBolasEffect1> {
|
||||||
|
|
||||||
protected static FilterCard filter1 = new FilterArtifactCard("artifact card to reveal and put into your hand");
|
|
||||||
protected static FilterCard filter2 = new FilterCard("card to put on the bottom of your library");
|
|
||||||
|
|
||||||
public TezzeretAgentOfBolasEffect1() {
|
public TezzeretAgentOfBolasEffect1() {
|
||||||
super(Outcome.DrawCard);
|
super(Outcome.DrawCard);
|
||||||
staticText = "Look at the top five cards of your library. You may reveal an artifact card from among them and put it into your hand. Put the rest on the bottom of your library in any order";
|
staticText = "Look at the top five cards of your library. You may reveal an artifact card from among them and put it into your hand. Put the rest on the bottom of your library in any order";
|
||||||
|
@ -114,51 +111,60 @@ class TezzeretAgentOfBolasEffect1 extends OneShotEffect<TezzeretAgentOfBolasEffe
|
||||||
return new TezzeretAgentOfBolasEffect1(this);
|
return new TezzeretAgentOfBolasEffect1(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
Player player = game.getPlayer(source.getControllerId());
|
if (player == null) {
|
||||||
Cards cards = new CardsImpl(Zone.PICK);
|
return false;
|
||||||
for (int i = 0; i < 5; i++) {
|
}
|
||||||
Card card = player.getLibrary().removeFromTop(game);
|
|
||||||
cards.add(card);
|
Cards cards = new CardsImpl(Zone.PICK);
|
||||||
game.setZone(card.getId(), Zone.PICK);
|
boolean artifactFound = false;
|
||||||
}
|
for (int i = 0; i < 5; i++) {
|
||||||
player.lookAtCards("Tezzeret, Agent of Bolas", cards, game);
|
Card card = player.getLibrary().removeFromTop(game);
|
||||||
if (player.chooseUse(outcome, "Do you wish to reveal an artifact card and put it into your hand?", game)) {
|
if (card != null) {
|
||||||
TargetCard target1 = new TargetCard(Zone.PICK, filter1);
|
cards.add(card);
|
||||||
while (cards.size() > 0 && player.choose(Outcome.DrawCard, cards, target1, game)) {
|
game.setZone(card.getId(), Zone.PICK);
|
||||||
Card card = cards.get(target1.getFirstTarget(), game);
|
if (card.getCardType().contains(CardType.ARTIFACT)) {
|
||||||
if (card != null) {
|
artifactFound = true;
|
||||||
cards.remove(card);
|
}
|
||||||
card.moveToZone(Zone.HAND, source.getId(), game, false);
|
}
|
||||||
Cards reveal = new CardsImpl(Zone.OUTSIDE);
|
}
|
||||||
reveal.add(card);
|
player.lookAtCards("Tezzeret, Agent of Bolas", cards, game);
|
||||||
player.revealCards("Tezzeret, Agent of Bolas", reveal, game);
|
|
||||||
break;
|
if (artifactFound && player.chooseUse(Outcome.DrawCard, "Do you wish to reveal an artifact card and put it into your hand?", game)) {
|
||||||
}
|
TargetCard target = new TargetCard(Zone.PICK, new FilterArtifactCard("artifact card to reveal and put into your hand"));
|
||||||
target1.clearChosen();
|
if (player.choose(Outcome.DrawCard, cards, target, game)) {
|
||||||
}
|
Card card = cards.get(target.getFirstTarget(), game);
|
||||||
}
|
if (card != null) {
|
||||||
if (cards.size() > 1) {
|
cards.remove(card);
|
||||||
TargetCard target2 = new TargetCard(Zone.PICK, filter2);
|
card.moveToZone(Zone.HAND, source.getId(), game, false);
|
||||||
target2.setRequired(true);
|
|
||||||
while (cards.size() > 1) {
|
Cards reveal = new CardsImpl(Zone.OUTSIDE);
|
||||||
player.choose(Outcome.Benefit, cards, target2, game);
|
reveal.add(card);
|
||||||
Card card = cards.get(target2.getFirstTarget(), game);
|
player.revealCards("Tezzeret, Agent of Bolas", reveal, game);
|
||||||
if (card != null) {
|
}
|
||||||
cards.remove(card);
|
}
|
||||||
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
}
|
||||||
}
|
|
||||||
target2.clearChosen();
|
TargetCard target = new TargetCard(Zone.PICK, new FilterCard("card to put on the bottom of your library"));
|
||||||
}
|
target.setRequired(true);
|
||||||
}
|
while (cards.size() > 1) {
|
||||||
if (cards.size() == 1) {
|
player.choose(Outcome.Neutral, cards, target, game);
|
||||||
Card card = cards.get(cards.iterator().next(), game);
|
Card card = cards.get(target.getFirstTarget(), game);
|
||||||
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
if (card != null) {
|
||||||
}
|
cards.remove(card);
|
||||||
return true;
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
}
|
}
|
||||||
|
target.clearChosen();
|
||||||
|
}
|
||||||
|
if (cards.size() == 1) {
|
||||||
|
Card card = cards.get(cards.iterator().next(), game);
|
||||||
|
card.moveToZone(Zone.LIBRARY, source.getId(), game, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ArtifactCreatureToken extends Token {
|
class ArtifactCreatureToken extends Token {
|
||||||
|
|
Loading…
Reference in a new issue