forked from External/mage
Implemented Journey for the Elixir
This commit is contained in:
parent
b7c1274ceb
commit
3659a2dc0b
6 changed files with 164 additions and 6 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.players;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
|
@ -352,14 +351,19 @@ public interface Player extends MageItem, Copyable<Player> {
|
|||
|
||||
boolean searchLibrary(TargetCardInLibrary target, Game game);
|
||||
|
||||
boolean searchLibrary(TargetCardInLibrary target, Game game, boolean triggerEvents);
|
||||
|
||||
boolean searchLibrary(TargetCardInLibrary target, Game game, UUID targetPlayerId);
|
||||
|
||||
/**
|
||||
*
|
||||
* @param target
|
||||
* @param game
|
||||
* @param targetPlayerId player whose library will be searched
|
||||
* @param triggerEvents whether searching will trigger any game events
|
||||
* @return true if search was successful
|
||||
*/
|
||||
boolean searchLibrary(TargetCardInLibrary target, Game game, UUID targetPlayerId);
|
||||
boolean searchLibrary(TargetCardInLibrary target, Game game, UUID targetPlayerId, boolean triggerEvents);
|
||||
|
||||
boolean canPlayLand();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue