mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Added the option ShuffleIntoLibrary to spBounceTgt. Added Deglamer.
This commit is contained in:
@@ -2236,6 +2236,10 @@ public class CardFactory implements NewConstants {
|
||||
&& CardFactoryUtil.canTarget(card, getTargetCard())) {
|
||||
if(getTargetCard().isToken()) AllZone.getZone(getTargetCard()).remove(getTargetCard());
|
||||
else { if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(getTargetCard());
|
||||
else if(Destination.equals("ShuffleIntoLibrary")) {
|
||||
AllZone.GameAction.moveToTopOfLibrary(getTargetCard());
|
||||
AllZone.GameAction.shuffle(getTargetCard().getOwner());
|
||||
}
|
||||
else if(Destination.equals("Exile")) AllZone.GameAction.removeFromGame(getTargetCard());
|
||||
else if(Destination.equals("Hand")) {
|
||||
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, getTargetCard().getOwner());
|
||||
|
||||
Reference in New Issue
Block a user