- Added Snow Devil, Spirit of the Night, Chastise and Condemn.

This commit is contained in:
jendave
2011-08-06 08:27:59 +00:00
parent 63e798523e
commit 0a6873f67d
7 changed files with 57 additions and 1 deletions

View File

@@ -3186,6 +3186,13 @@ public class CardFactory implements NewConstants {
tgtType = tgtType.substring(0, i);
Selec[0] += tgtType + " to put on top of the library.";
}
else if (Destination.equals("BottomofLibrary"))
{
tgtType = card.getSpellText().substring("Put target ".length());
int i = tgtType.indexOf(" on the bottom of its owner's library.");
tgtType = tgtType.substring(0, i);
Selec[0] += tgtType + " to put on the bottom of the library.";
}
else
{
Selec[0] = card.getSpellText();
@@ -3252,6 +3259,8 @@ public class CardFactory implements NewConstants {
{
if(Destination.equals("TopofLibrary"))
AllZone.GameAction.moveToTopOfLibrary(tgtC);
else if(Destination.equals("BottomofLibrary"))
AllZone.GameAction.moveToBottomOfLibrary(tgtC);
else if(Destination.equals("ShuffleIntoLibrary"))
{
AllZone.GameAction.moveToTopOfLibrary(tgtC);