implement [MH3] Unstable Amulet

This commit is contained in:
Susucre 2024-06-04 15:38:49 +02:00
parent 83ad5d26dc
commit b35924dc4c
4 changed files with 252 additions and 0 deletions

View file

@ -117,6 +117,10 @@ public class Exile implements Serializable, Copyable<Exile> {
exileZone.add(card);
}
public void moveToMainExileZone(Card card, Game game) {
moveToAnotherZone(card, game, getExileZone(PERMANENT));
}
@Override
public Exile copy() {
return new Exile(this);