implement [MH3] Planar Genesis

This commit is contained in:
Susucre 2024-06-01 17:42:46 +02:00
parent 64265bc2dd
commit d1e12595d9
3 changed files with 79 additions and 0 deletions

View file

@ -114,6 +114,9 @@ public class LookLibraryAndPickControllerEffect extends LookLibraryControllerEff
return actionWithPickedCards(game, source, player, pickedCards, cards);
}
/**
* Can be overriden for additional effect
*/
protected boolean actionWithPickedCards(Game game, Ability source, Player player, Cards pickedCards, Cards otherCards) {
boolean result = putPickedCards.moveCards(player, pickedCards, source, game);
result |= putLookedCards.moveCards(player, otherCards, source, game);