mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Final Judgment.
- Fixed Inundate. - Cosmetic changes to the spBounceAll keyword entry.
This commit is contained in:
@@ -2816,17 +2816,18 @@ public class CardFactory implements NewConstants {
|
||||
|
||||
for(int i = 0; i < all.size(); i++) {
|
||||
Card c = all.get(i);
|
||||
if(c.isToken()) AllZone.getZone(c).remove(c);
|
||||
else { if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(c);
|
||||
if(c.isToken()) AllZone.getZone(c).remove(c);
|
||||
else {
|
||||
if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(c);
|
||||
else if(Destination.equals("ShuffleIntoLibrary")) {
|
||||
AllZone.GameAction.moveToTopOfLibrary(c);
|
||||
AllZone.GameAction.shuffle(c.getOwner());
|
||||
}
|
||||
}
|
||||
else if(Destination.equals("Exile")) AllZone.GameAction.removeFromGame(c);
|
||||
else if(Destination.equals("Hand")) {
|
||||
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, c.getOwner());
|
||||
AllZone.GameAction.moveTo(hand, c);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}// resolve()
|
||||
|
||||
Reference in New Issue
Block a user