mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added the destination BottomofLibrary to the keyword spBounceAll.
- Added Hallowed Burial and Harmonic Convergence.
This commit is contained in:
@@ -1,3 +1,15 @@
|
||||
Hallowed Burial
|
||||
3 W W
|
||||
Sorcery
|
||||
Put all creatures on the bottom of their owners' libraries.
|
||||
spBounceAll:Creature:BottomofLibrary
|
||||
|
||||
Harmonic Convergence
|
||||
2 G
|
||||
Instant
|
||||
Put all enchantments on top of their owners' libraries.
|
||||
spBounceAll:Enchantment:TopofLibrary
|
||||
|
||||
Final Judgment
|
||||
4 W W
|
||||
Sorcery
|
||||
|
||||
@@ -2819,6 +2819,7 @@ public class CardFactory implements NewConstants {
|
||||
if(c.isToken()) AllZone.getZone(c).remove(c);
|
||||
else {
|
||||
if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(c);
|
||||
else if(Destination.equals("BottomofLibrary")) AllZone.GameAction.moveToBottomOfLibrary(c);
|
||||
else if(Destination.equals("ShuffleIntoLibrary")) {
|
||||
AllZone.GameAction.moveToTopOfLibrary(c);
|
||||
AllZone.GameAction.shuffle(c.getOwner());
|
||||
|
||||
Reference in New Issue
Block a user