mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Added Gustcloak Savior, Spurnmage Advocate and Gleancrawler;
This commit is contained in:
parent
c5873a0132
commit
a3bc452795
19 changed files with 692 additions and 163 deletions
|
|
@ -1672,6 +1672,21 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.moveCards(cards, fromZone, toZone, source, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCards(Cards cards, Zone fromZone, Zone toZone, Ability source, Game game, boolean withName) {
|
||||
return computerPlayer.moveCards(cards, fromZone, toZone, source, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCards(Card card, Zone fromZone, Zone toZone, Ability source, Game game, boolean withName) {
|
||||
return computerPlayer.moveCards(card, fromZone, toZone, source, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCards(List<Card> cards, Zone fromZone, Zone toZone, Ability source, Game game, boolean withName) {
|
||||
return computerPlayer.moveCards(cards, fromZone, toZone, source, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCardToHandWithInfo(Card card, UUID sourceId, Game game, Zone fromZone) {
|
||||
return computerPlayer.moveCardToHandWithInfo(card, sourceId, game, fromZone);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue