- Added the destination BottomofLibrary to the keyword spBounceAll.

- Added Hallowed Burial and Harmonic Convergence.
This commit is contained in:
jendave
2011-08-06 05:48:13 +00:00
parent aebc10327b
commit 3a8885916f
2 changed files with 13 additions and 0 deletions

View File

@@ -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 Final Judgment
4 W W 4 W W
Sorcery Sorcery

View File

@@ -2819,6 +2819,7 @@ public class CardFactory implements NewConstants {
if(c.isToken()) AllZone.getZone(c).remove(c); if(c.isToken()) AllZone.getZone(c).remove(c);
else { else {
if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(c); if(Destination.equals("TopofLibrary")) AllZone.GameAction.moveToTopOfLibrary(c);
else if(Destination.equals("BottomofLibrary")) AllZone.GameAction.moveToBottomOfLibrary(c);
else if(Destination.equals("ShuffleIntoLibrary")) { else if(Destination.equals("ShuffleIntoLibrary")) {
AllZone.GameAction.moveToTopOfLibrary(c); AllZone.GameAction.moveToTopOfLibrary(c);
AllZone.GameAction.shuffle(c.getOwner()); AllZone.GameAction.shuffle(c.getOwner());