diff --git a/res/cards.txt b/res/cards.txt index f8ed40220ec..a4a5e452b0a 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -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 diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index fb788844a2b..80c4130be87 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -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());