Test framework: added support of commander cards (just add card to command zone by addCard);

This commit is contained in:
Oleg Agafonov 2019-05-17 21:42:35 +04:00
parent ffbd5d373b
commit 4d95d72c66
7 changed files with 150 additions and 12 deletions

View file

@ -432,7 +432,7 @@ public interface Game extends MageItem, Serializable {
// game cheats (for tests only)
void cheat(UUID ownerId, Map<Zone, String> commands);
void cheat(UUID ownerId, UUID activePlayerId, List<Card> library, List<Card> hand, List<PermanentCard> battlefield, List<Card> graveyard);
void cheat(UUID ownerId, UUID activePlayerId, List<Card> library, List<Card> hand, List<PermanentCard> battlefield, List<Card> graveyard, List<Card> command);
// controlling the behaviour of replacement effects while permanents entering the battlefield
void setScopeRelevant(boolean scopeRelevant);