mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[C15] Added Myriad keyword.
This commit is contained in:
parent
7572c756c4
commit
6f2d3a18c0
12 changed files with 300 additions and 64 deletions
|
@ -32,7 +32,6 @@ import mage.constants.CardType;
|
||||||
import mage.constants.Rarity;
|
import mage.constants.Rarity;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
|
||||||
import mage.abilities.common.SimpleActivatedAbility;
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
import mage.abilities.costs.common.SacrificeTargetCost;
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||||
import mage.abilities.effects.common.continuous.GainProtectionFromColorSourceEffect;
|
import mage.abilities.effects.common.continuous.GainProtectionFromColorSourceEffect;
|
||||||
|
@ -44,8 +43,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
|
||||||
import mage.target.common.TargetControlledPermanent;
|
import mage.target.common.TargetControlledPermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gatecrash FAQ (01.2013)
|
* Gatecrash FAQ (01.2013) You choose the color when the ability resolves.
|
||||||
* You choose the color when the ability resolves.
|
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -0,0 +1,123 @@
|
||||||
|
/*
|
||||||
|
* 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 org.mage.test.multiplayer;
|
||||||
|
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import mage.constants.MultiplayerAttackOption;
|
||||||
|
import mage.constants.PhaseStep;
|
||||||
|
import mage.constants.RangeOfInfluence;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.FreeForAll;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.GameException;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.mage.test.serverside.base.CardTestMultiPlayerBase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author LevelX2
|
||||||
|
*/
|
||||||
|
public class MyriadTest extends CardTestMultiPlayerBase {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Game createNewGameAndPlayers() throws GameException, FileNotFoundException {
|
||||||
|
Game game = new FreeForAll(MultiplayerAttackOption.MULTIPLE, RangeOfInfluence.ALL, 0, 40);
|
||||||
|
// Player order: A -> D -> C -> B
|
||||||
|
playerA = createPlayer(game, playerA, "PlayerA");
|
||||||
|
playerB = createPlayer(game, playerB, "PlayerB");
|
||||||
|
playerC = createPlayer(game, playerC, "PlayerC");
|
||||||
|
playerD = createPlayer(game, playerD, "PlayerD");
|
||||||
|
return game;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests Myriad multiplayer effects Player order: A -> D -> C -> B
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void CallerOfThePackTest() {
|
||||||
|
// Trample
|
||||||
|
// Myriad (Whenever this creature attacks, for each opponent other than the defending player, put a token that's a copy of this creature onto the battlefield tapped and attacking that player or a planeswalker he or she controls. Exile those tokens at the end of combat.)
|
||||||
|
addCard(Zone.BATTLEFIELD, playerD, "Caller of the Pack"); // 8/6
|
||||||
|
|
||||||
|
attack(2, playerD, "Caller of the Pack", playerA);
|
||||||
|
|
||||||
|
setStopAt(2, PhaseStep.DECLARE_BLOCKERS);
|
||||||
|
execute();
|
||||||
|
|
||||||
|
assertPermanentCount(playerD, "Caller of the Pack", 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void CallerOfThePackTestExile() {
|
||||||
|
// Trample
|
||||||
|
// Myriad (Whenever this creature attacks, for each opponent other than the defending player, put a token that's a copy of this creature onto the battlefield tapped and attacking that player or a planeswalker he or she controls. Exile those tokens at the end of combat.)
|
||||||
|
addCard(Zone.BATTLEFIELD, playerD, "Caller of the Pack"); // 8/6
|
||||||
|
|
||||||
|
attack(2, playerD, "Caller of the Pack", playerA);
|
||||||
|
|
||||||
|
setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
|
||||||
|
execute();
|
||||||
|
|
||||||
|
assertPermanentCount(playerD, "Caller of the Pack", 1);
|
||||||
|
|
||||||
|
assertLife(playerA, 32);
|
||||||
|
assertLife(playerB, 32);
|
||||||
|
assertLife(playerC, 32);
|
||||||
|
assertLife(playerD, 40);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void CallerOfThePackTestExilePlaneswalker() {
|
||||||
|
// Trample
|
||||||
|
// Myriad (Whenever this creature attacks, for each opponent other than the defending player, put a token that's a copy of this creature onto the battlefield tapped and attacking that player or a planeswalker he or she controls. Exile those tokens at the end of combat.)
|
||||||
|
addCard(Zone.BATTLEFIELD, playerD, "Caller of the Pack"); // 8/6
|
||||||
|
|
||||||
|
// +1: You gain 2 life.
|
||||||
|
// -1: Put a +1/+1 counter on each creature you control. Those creatures gain vigilance until end of turn.
|
||||||
|
// -6: Put a white Avatar creature token onto the battlefield. It has "This creature's power and toughness are each equal to your life total."
|
||||||
|
addCard(Zone.BATTLEFIELD, playerA, "Ajani Goldmane");
|
||||||
|
|
||||||
|
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "+1:");
|
||||||
|
|
||||||
|
attack(2, playerD, "Caller of the Pack", playerC);
|
||||||
|
addTarget(playerD, "Ajani Goldmane");
|
||||||
|
|
||||||
|
setStopAt(2, PhaseStep.POSTCOMBAT_MAIN);
|
||||||
|
execute();
|
||||||
|
|
||||||
|
assertPermanentCount(playerD, "Caller of the Pack", 1);
|
||||||
|
assertGraveyardCount(playerA, "Ajani Goldmane", 1);
|
||||||
|
|
||||||
|
assertLife(playerA, 42);
|
||||||
|
assertLife(playerB, 32);
|
||||||
|
assertLife(playerC, 32);
|
||||||
|
assertLife(playerD, 40);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,22 +1,18 @@
|
||||||
package org.mage.test.serverside.base;
|
package org.mage.test.serverside.base;
|
||||||
|
|
||||||
import mage.cards.Card;
|
import java.io.FileNotFoundException;
|
||||||
import mage.cards.decks.Deck;
|
|
||||||
import mage.cards.decks.importer.DeckImporterUtil;
|
|
||||||
import mage.constants.MultiplayerAttackOption;
|
import mage.constants.MultiplayerAttackOption;
|
||||||
import mage.constants.RangeOfInfluence;
|
import mage.constants.RangeOfInfluence;
|
||||||
import mage.game.*;
|
import mage.game.FreeForAll;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.Game;
|
||||||
import mage.players.Player;
|
import mage.game.GameException;
|
||||||
import org.junit.Assert;
|
|
||||||
import org.mage.test.serverside.base.impl.CardTestPlayerAPIImpl;
|
import org.mage.test.serverside.base.impl.CardTestPlayerAPIImpl;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for testing single cards and effects in multiplayer game.
|
* Base class for testing single cards and effects in multiplayer game. For PvP
|
||||||
* For PvP games {@see CardTestPlayerBase}
|
* games {
|
||||||
|
*
|
||||||
|
* @see CardTestPlayerBase}
|
||||||
*
|
*
|
||||||
* @author magenoxx_at_gmail.com
|
* @author magenoxx_at_gmail.com
|
||||||
*/
|
*/
|
||||||
|
@ -25,7 +21,7 @@ public abstract class CardTestMultiPlayerBase extends CardTestPlayerAPIImpl {
|
||||||
@Override
|
@Override
|
||||||
protected Game createNewGameAndPlayers() throws GameException, FileNotFoundException {
|
protected Game createNewGameAndPlayers() throws GameException, FileNotFoundException {
|
||||||
Game game = new FreeForAll(MultiplayerAttackOption.LEFT, RangeOfInfluence.ONE, 0, 20);
|
Game game = new FreeForAll(MultiplayerAttackOption.LEFT, RangeOfInfluence.ONE, 0, 20);
|
||||||
|
// Player order: A -> D -> C -> B
|
||||||
playerA = createPlayer(game, playerA, "PlayerA");
|
playerA = createPlayer(game, playerA, "PlayerA");
|
||||||
playerB = createPlayer(game, playerB, "PlayerB");
|
playerB = createPlayer(game, playerB, "PlayerB");
|
||||||
playerC = createPlayer(game, playerC, "PlayerC");
|
playerC = createPlayer(game, playerC, "PlayerC");
|
||||||
|
|
|
@ -55,13 +55,13 @@ public abstract class CardTestPlayerBaseAI extends CardTestPlayerAPIImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected TestPlayer createPlayer(String name) {
|
protected TestPlayer createPlayer(String name, RangeOfInfluence rangeOfInfluence) {
|
||||||
if (name.equals("PlayerA")) {
|
if (name.equals("PlayerA")) {
|
||||||
TestPlayer testPlayer = new TestPlayer(new ComputerPlayer7("PlayerA", RangeOfInfluence.ONE, skill));
|
TestPlayer testPlayer = new TestPlayer(new ComputerPlayer7("PlayerA", RangeOfInfluence.ONE, skill));
|
||||||
testPlayer.setAIPlayer(true);
|
testPlayer.setAIPlayer(true);
|
||||||
return testPlayer;
|
return testPlayer;
|
||||||
}
|
}
|
||||||
return super.createPlayer(name);
|
return super.createPlayer(name, rangeOfInfluence);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAISkill(int skill) {
|
public void setAISkill(int skill) {
|
||||||
|
|
|
@ -1,15 +1,26 @@
|
||||||
package org.mage.test.serverside.base;
|
package org.mage.test.serverside.base;
|
||||||
|
|
||||||
import mage.constants.PhaseStep;
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FilenameFilter;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Scanner;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
import mage.cards.Card;
|
import mage.cards.Card;
|
||||||
import mage.cards.repository.CardInfo;
|
import mage.cards.repository.CardInfo;
|
||||||
import mage.cards.repository.CardRepository;
|
import mage.cards.repository.CardRepository;
|
||||||
|
import mage.constants.PhaseStep;
|
||||||
import mage.constants.RangeOfInfluence;
|
import mage.constants.RangeOfInfluence;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.match.MatchType;
|
import mage.game.match.MatchType;
|
||||||
import mage.game.permanent.PermanentCard;
|
import mage.game.permanent.PermanentCard;
|
||||||
import mage.game.tournament.TournamentType;
|
import mage.game.tournament.TournamentType;
|
||||||
|
import mage.player.ai.ComputerPlayer;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.server.game.GameFactory;
|
import mage.server.game.GameFactory;
|
||||||
import mage.server.util.ConfigSettings;
|
import mage.server.util.ConfigSettings;
|
||||||
|
@ -22,20 +33,13 @@ import org.apache.log4j.Logger;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.mage.test.player.TestPlayer;
|
import org.mage.test.player.TestPlayer;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.FilenameFilter;
|
|
||||||
import java.util.*;
|
|
||||||
import java.util.regex.Matcher;
|
|
||||||
import java.util.regex.Pattern;
|
|
||||||
import mage.player.ai.ComputerPlayer;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for all tests.
|
* Base class for all tests.
|
||||||
*
|
*
|
||||||
* @author ayratn
|
* @author ayratn
|
||||||
*/
|
*/
|
||||||
public abstract class MageTestPlayerBase {
|
public abstract class MageTestPlayerBase {
|
||||||
|
|
||||||
protected static Logger logger = Logger.getLogger(MageTestPlayerBase.class);
|
protected static Logger logger = Logger.getLogger(MageTestPlayerBase.class);
|
||||||
|
|
||||||
public static PluginClassLoader classLoader = new PluginClassLoader();
|
public static PluginClassLoader classLoader = new PluginClassLoader();
|
||||||
|
@ -62,8 +66,7 @@ public abstract class MageTestPlayerBase {
|
||||||
protected static Game currentGame = null;
|
protected static Game currentGame = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Player thats starts the game first.
|
* Player thats starts the game first. By default, it is ComputerA.
|
||||||
* By default, it is ComputerA.
|
|
||||||
*/
|
*/
|
||||||
protected static Player activePlayer = null;
|
protected static Player activePlayer = null;
|
||||||
|
|
||||||
|
@ -72,6 +75,7 @@ public abstract class MageTestPlayerBase {
|
||||||
protected PhaseStep stopAtStep = PhaseStep.UNTAP;
|
protected PhaseStep stopAtStep = PhaseStep.UNTAP;
|
||||||
|
|
||||||
protected enum ParserState {
|
protected enum ParserState {
|
||||||
|
|
||||||
INIT,
|
INIT,
|
||||||
OPTIONS,
|
OPTIONS,
|
||||||
EXPECTED
|
EXPECTED
|
||||||
|
@ -80,16 +84,11 @@ public abstract class MageTestPlayerBase {
|
||||||
protected ParserState parserState;
|
protected ParserState parserState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expected results of the test.
|
* Expected results of the test. Read from test case in {@link String} based
|
||||||
* Read from test case in {@link String} based format:
|
* format:
|
||||||
* <p/>
|
* <p/>
|
||||||
* Example:
|
* Example: turn:1 result:won:ComputerA life:ComputerA:20 life:ComputerB:0
|
||||||
* turn:1
|
* battlefield:ComputerB:Tine Shrike:0 graveyard:ComputerB:Tine Shrike:1
|
||||||
* result:won:ComputerA
|
|
||||||
* life:ComputerA:20
|
|
||||||
* life:ComputerB:0
|
|
||||||
* battlefield:ComputerB:Tine Shrike:0
|
|
||||||
* graveyard:ComputerB:Tine Shrike:1
|
|
||||||
*/
|
*/
|
||||||
protected List<String> expectedResults = new ArrayList<>();
|
protected List<String> expectedResults = new ArrayList<>();
|
||||||
|
|
||||||
|
@ -319,7 +318,6 @@ public abstract class MageTestPlayerBase {
|
||||||
return command;
|
return command;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void includeFrom(String line) throws FileNotFoundException {
|
private void includeFrom(String line) throws FileNotFoundException {
|
||||||
String[] params = line.split(" ");
|
String[] params = line.split(" ");
|
||||||
if (params.length == 2) {
|
if (params.length == 2) {
|
||||||
|
@ -340,8 +338,8 @@ public abstract class MageTestPlayerBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TestPlayer createPlayer(String name) {
|
protected TestPlayer createPlayer(String name, RangeOfInfluence rangeOfInfluence) {
|
||||||
return new TestPlayer(new ComputerPlayer(name, RangeOfInfluence.ONE));
|
return new TestPlayer(new ComputerPlayer(name, rangeOfInfluence));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ import mage.cards.repository.CardRepository;
|
||||||
import mage.cards.repository.CardScanner;
|
import mage.cards.repository.CardScanner;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.PhaseStep;
|
import mage.constants.PhaseStep;
|
||||||
|
import mage.constants.RangeOfInfluence;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.counters.CounterType;
|
import mage.counters.CounterType;
|
||||||
import mage.filter.Filter;
|
import mage.filter.Filter;
|
||||||
|
@ -141,7 +142,7 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TestPlayer createPlayer(Game game, TestPlayer player, String name, String deckName) throws GameException {
|
protected TestPlayer createPlayer(Game game, TestPlayer player, String name, String deckName) throws GameException {
|
||||||
player = createNewPlayer(name);
|
player = createNewPlayer(name, game.getRangeOfInfluence());
|
||||||
player.setTestMode(true);
|
player.setTestMode(true);
|
||||||
logger.debug("Loading deck...");
|
logger.debug("Loading deck...");
|
||||||
Deck deck = Deck.load(DeckImporterUtil.importDeck(deckName), false, false);
|
Deck deck = Deck.load(DeckImporterUtil.importDeck(deckName), false, false);
|
||||||
|
@ -187,8 +188,8 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TestPlayer createNewPlayer(String playerName) {
|
protected TestPlayer createNewPlayer(String playerName, RangeOfInfluence rangeOfInfluence) {
|
||||||
return createPlayer(playerName);
|
return createPlayer(playerName, rangeOfInfluence);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Player getPlayerFromName(String playerName, String line) {
|
protected Player getPlayerFromName(String playerName, String line) {
|
||||||
|
|
|
@ -60,6 +60,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
private String additionalSubType;
|
private String additionalSubType;
|
||||||
private boolean tapped;
|
private boolean tapped;
|
||||||
private boolean attacking;
|
private boolean attacking;
|
||||||
|
private UUID attackedPlayer;
|
||||||
|
|
||||||
public PutTokenOntoBattlefieldCopyTargetEffect() {
|
public PutTokenOntoBattlefieldCopyTargetEffect() {
|
||||||
super(Outcome.PutCreatureInPlay);
|
super(Outcome.PutCreatureInPlay);
|
||||||
|
@ -68,6 +69,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
this.addedTokenPermanents = new ArrayList<>();
|
this.addedTokenPermanents = new ArrayList<>();
|
||||||
this.number = 1;
|
this.number = 1;
|
||||||
this.additionalSubType = null;
|
this.additionalSubType = null;
|
||||||
|
this.attackedPlayer = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public PutTokenOntoBattlefieldCopyTargetEffect(UUID playerId) {
|
public PutTokenOntoBattlefieldCopyTargetEffect(UUID playerId) {
|
||||||
|
@ -89,8 +91,14 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
* @param additionalCardType the token gains tis card types in addition
|
* @param additionalCardType the token gains tis card types in addition
|
||||||
* @param gainsHaste the token gains haste
|
* @param gainsHaste the token gains haste
|
||||||
* @param number number of tokens to put into play
|
* @param number number of tokens to put into play
|
||||||
|
* @param tapped
|
||||||
|
* @param attacking
|
||||||
*/
|
*/
|
||||||
public PutTokenOntoBattlefieldCopyTargetEffect(UUID playerId, CardType additionalCardType, boolean gainsHaste, int number, boolean tapped, boolean attacking) {
|
public PutTokenOntoBattlefieldCopyTargetEffect(UUID playerId, CardType additionalCardType, boolean gainsHaste, int number, boolean tapped, boolean attacking) {
|
||||||
|
this(playerId, additionalCardType, gainsHaste, number, tapped, attacking, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public PutTokenOntoBattlefieldCopyTargetEffect(UUID playerId, CardType additionalCardType, boolean gainsHaste, int number, boolean tapped, boolean attacking, UUID attackedPlayer) {
|
||||||
super(Outcome.PutCreatureInPlay);
|
super(Outcome.PutCreatureInPlay);
|
||||||
this.playerId = playerId;
|
this.playerId = playerId;
|
||||||
this.additionalCardType = additionalCardType;
|
this.additionalCardType = additionalCardType;
|
||||||
|
@ -99,6 +107,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
this.number = number;
|
this.number = number;
|
||||||
this.tapped = tapped;
|
this.tapped = tapped;
|
||||||
this.attacking = attacking;
|
this.attacking = attacking;
|
||||||
|
this.attackedPlayer = attackedPlayer;
|
||||||
}
|
}
|
||||||
|
|
||||||
public PutTokenOntoBattlefieldCopyTargetEffect(final PutTokenOntoBattlefieldCopyTargetEffect effect) {
|
public PutTokenOntoBattlefieldCopyTargetEffect(final PutTokenOntoBattlefieldCopyTargetEffect effect) {
|
||||||
|
@ -111,6 +120,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
this.additionalSubType = effect.additionalSubType;
|
this.additionalSubType = effect.additionalSubType;
|
||||||
this.tapped = effect.tapped;
|
this.tapped = effect.tapped;
|
||||||
this.attacking = effect.attacking;
|
this.attacking = effect.attacking;
|
||||||
|
this.attackedPlayer = effect.attackedPlayer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -159,7 +169,7 @@ public class PutTokenOntoBattlefieldCopyTargetEffect extends OneShotEffect {
|
||||||
token.getSubtype().add(additionalSubType);
|
token.getSubtype().add(additionalSubType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
token.putOntoBattlefield(number, game, source.getSourceId(), playerId == null ? source.getControllerId() : playerId, tapped, attacking);
|
token.putOntoBattlefield(number, game, source.getSourceId(), playerId == null ? source.getControllerId() : playerId, tapped, attacking, attackedPlayer);
|
||||||
for (UUID tokenId : token.getLastAddedTokenIds()) { // by cards like Doubling Season multiple tokens can be added to the battlefield
|
for (UUID tokenId : token.getLastAddedTokenIds()) { // by cards like Doubling Season multiple tokens can be added to the battlefield
|
||||||
Permanent tokenPermanent = game.getPermanent(tokenId);
|
Permanent tokenPermanent = game.getPermanent(tokenId);
|
||||||
if (tokenPermanent != null) {
|
if (tokenPermanent != null) {
|
||||||
|
|
89
Mage/src/mage/abilities/keyword/MyriadAbility.java
Normal file
89
Mage/src/mage/abilities/keyword/MyriadAbility.java
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package mage.abilities.keyword;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.DelayedTriggeredAbility;
|
||||||
|
import mage.abilities.common.AttacksTriggeredAbility;
|
||||||
|
import mage.abilities.common.delayed.AtTheEndOfCombatDelayedTriggeredAbility;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.ExileTargetEffect;
|
||||||
|
import mage.abilities.effects.common.PutTokenOntoBattlefieldCopyTargetEffect;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SetTargetPointer;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
public class MyriadAbility extends AttacksTriggeredAbility {
|
||||||
|
|
||||||
|
public MyriadAbility() {
|
||||||
|
super(new MyriadEffect(), false,
|
||||||
|
"Myriad <i>(Whenever this creature attacks, for each opponent other than the defending player, put a token that's a copy of this creature onto the battlefield tapped and attacking that player or a planeswalker he or she controls. Exile those tokens at the end of combat.)</i>",
|
||||||
|
SetTargetPointer.PLAYER
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public MyriadAbility(final MyriadAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MyriadAbility copy() {
|
||||||
|
return new MyriadAbility(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
class MyriadEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
public MyriadEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
this.staticText = "for each opponent other than the defending player, you may put a token that's a copy of this creature onto the battlefield tapped and attacking that player or a planeswalker he or she controls. Exile the tokens at the end of combat";
|
||||||
|
}
|
||||||
|
|
||||||
|
public MyriadEffect(final MyriadEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public MyriadEffect copy() {
|
||||||
|
return new MyriadEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
|
Permanent sourceObject = game.getPermanent(source.getSourceId());
|
||||||
|
if (controller != null && sourceObject != null) {
|
||||||
|
for (UUID playerId : game.getState().getPlayersInRange(controller.getId(), game)) {
|
||||||
|
if (playerId != getTargetPointer().getFirst(game, source) && controller.hasOpponent(playerId, game)) {
|
||||||
|
Player opponent = game.getPlayer(playerId);
|
||||||
|
if (opponent != null && controller.chooseUse(Outcome.PutCreatureInPlay,
|
||||||
|
"Put a copy of " + sourceObject.getIdName() + " onto battlefield attacking " + opponent.getName() + "?", source, game)) {
|
||||||
|
PutTokenOntoBattlefieldCopyTargetEffect effect = new PutTokenOntoBattlefieldCopyTargetEffect(controller.getId(), null, false, 1, true, true, playerId);
|
||||||
|
effect.setTargetPointer(new FixedTarget(sourceObject, game));
|
||||||
|
effect.apply(game, source);
|
||||||
|
for (Permanent tokenPermanent : effect.getAddedPermanent()) {
|
||||||
|
ExileTargetEffect exileEffect = new ExileTargetEffect();
|
||||||
|
exileEffect.setTargetPointer(new FixedTarget(tokenPermanent, game));
|
||||||
|
DelayedTriggeredAbility delayedAbility = new AtTheEndOfCombatDelayedTriggeredAbility(exileEffect);
|
||||||
|
delayedAbility.setSourceId(source.getSourceId());
|
||||||
|
delayedAbility.setControllerId(source.getControllerId());
|
||||||
|
delayedAbility.setSourceObject(source.getSourceObject(game), game);
|
||||||
|
game.addDelayedTriggeredAbility(delayedAbility);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
|
@ -25,7 +25,6 @@
|
||||||
* authors and should not be interpreted as representing official policies, either expressed
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
* or implied, of BetaSteward_at_googlemail.com.
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package mage.abilities.keyword;
|
package mage.abilities.keyword;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
@ -42,16 +41,15 @@ import mage.game.permanent.Permanent;
|
||||||
import mage.target.common.TargetCreaturePermanent;
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 702.38. Provoke
|
* 702.38. Provoke 702.38a Provoke is a triggered ability. “Provoke” means
|
||||||
* 702.38a Provoke is a triggered ability. “Provoke” means “Whenever this creature attacks, you may
|
* “Whenever this creature attacks, you may choose to have target creature
|
||||||
* choose to have target creature defending player controls block this creature this combat
|
* defending player controls block this creature this combat if able. If you do,
|
||||||
* if able. If you do, untap that creature.”
|
* untap that creature.” 702.38b If a creature has multiple instances of
|
||||||
* 702.38b If a creature has multiple instances of provoke, each triggers separately.
|
* provoke, each triggers separately.
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class ProvokeAbility extends AttacksTriggeredAbility {
|
public class ProvokeAbility extends AttacksTriggeredAbility {
|
||||||
|
|
||||||
public ProvokeAbility() {
|
public ProvokeAbility() {
|
||||||
|
@ -61,7 +59,6 @@ public class ProvokeAbility extends AttacksTriggeredAbility {
|
||||||
|
|
||||||
public ProvokeAbility(final ProvokeAbility ability) {
|
public ProvokeAbility(final ProvokeAbility ability) {
|
||||||
super(ability);
|
super(ability);
|
||||||
this.text = ability.text;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -212,12 +212,31 @@ public class Combat implements Serializable, Copyable<Combat> {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean addAttackingCreature(UUID creatureId, Game game) {
|
public boolean addAttackingCreature(UUID creatureId, Game game) {
|
||||||
|
return this.addAttackingCreature(creatureId, game, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean addAttackingCreature(UUID creatureId, Game game, UUID playerToAttack) {
|
||||||
|
Set<UUID> possibleDefenders;
|
||||||
|
if (playerToAttack != null) {
|
||||||
|
possibleDefenders = new HashSet<>();
|
||||||
|
for (UUID objectId : defenders) {
|
||||||
|
Permanent planeswalker = game.getPermanent(objectId);
|
||||||
|
if (planeswalker != null && planeswalker.getControllerId().equals(playerToAttack)) {
|
||||||
|
possibleDefenders.add(objectId);
|
||||||
|
} else if (playerToAttack.equals(objectId)) {
|
||||||
|
possibleDefenders.add(objectId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
possibleDefenders = new HashSet(defenders);
|
||||||
|
}
|
||||||
Player player = game.getPlayer(attackerId);
|
Player player = game.getPlayer(attackerId);
|
||||||
if (defenders.size() == 1) {
|
if (possibleDefenders.size() == 1) {
|
||||||
addAttackerToCombat(creatureId, defenders.iterator().next(), game);
|
addAttackerToCombat(creatureId, possibleDefenders.iterator().next(), game);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
TargetDefender target = new TargetDefender(defenders, creatureId);
|
TargetDefender target = new TargetDefender(possibleDefenders, creatureId);
|
||||||
|
target.setNotTarget(true);
|
||||||
target.setRequired(true);
|
target.setRequired(true);
|
||||||
player.chooseTarget(Outcome.Damage, target, null, game);
|
player.chooseTarget(Outcome.Damage, target, null, game);
|
||||||
if (target.getFirstTarget() != null) {
|
if (target.getFirstTarget() != null) {
|
||||||
|
|
|
@ -134,6 +134,10 @@ public class Token extends MageObjectImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean putOntoBattlefield(int amount, Game game, UUID sourceId, UUID controllerId, boolean tapped, boolean attacking) {
|
public boolean putOntoBattlefield(int amount, Game game, UUID sourceId, UUID controllerId, boolean tapped, boolean attacking) {
|
||||||
|
return putOntoBattlefield(amount, game, sourceId, controllerId, tapped, attacking, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean putOntoBattlefield(int amount, Game game, UUID sourceId, UUID controllerId, boolean tapped, boolean attacking, UUID attackedPlayer) {
|
||||||
Player controller = game.getPlayer(controllerId);
|
Player controller = game.getPlayer(controllerId);
|
||||||
if (controller == null) {
|
if (controller == null) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -179,7 +183,7 @@ public class Token extends MageObjectImpl {
|
||||||
this.lastAddedTokenId = permanent.getId();
|
this.lastAddedTokenId = permanent.getId();
|
||||||
game.addSimultaneousEvent(new ZoneChangeEvent(permanent, permanent.getControllerId(), Zone.OUTSIDE, Zone.BATTLEFIELD));
|
game.addSimultaneousEvent(new ZoneChangeEvent(permanent, permanent.getControllerId(), Zone.OUTSIDE, Zone.BATTLEFIELD));
|
||||||
if (attacking && game.getCombat() != null) {
|
if (attacking && game.getCombat() != null) {
|
||||||
game.getCombat().addAttackingCreature(permanent.getId(), game);
|
game.getCombat().addAttackingCreature(permanent.getId(), game, attackedPlayer);
|
||||||
}
|
}
|
||||||
if (!game.isSimulation()) {
|
if (!game.isSimulation()) {
|
||||||
game.informPlayers(controller.getLogName() + " puts a " + permanent.getLogName() + " token onto the battlefield");
|
game.informPlayers(controller.getLogName() + " puts a " + permanent.getLogName() + " token onto the battlefield");
|
||||||
|
|
|
@ -44,6 +44,7 @@ Miracle|cost|
|
||||||
Mountaincycling|cost|
|
Mountaincycling|cost|
|
||||||
Mountainwalk|new|
|
Mountainwalk|new|
|
||||||
Morph|card, cost|
|
Morph|card, cost|
|
||||||
|
Myriad|new|
|
||||||
Outlast|cost|
|
Outlast|cost|
|
||||||
Persist|new|
|
Persist|new|
|
||||||
Phasing|instance|
|
Phasing|instance|
|
||||||
|
|
Loading…
Reference in a new issue