- FRF: Added Dark Deal and Write Into Being

This commit is contained in:
Sol
2015-01-16 16:09:56 +00:00
parent 4596afe9b7
commit d8e44a62bd
4 changed files with 35 additions and 7 deletions

View File

@@ -208,13 +208,19 @@ public class DigEffect extends SpellAbilityEffect {
}
else {
int j = 0;
String prompt = "Choose a card to put into " + destZone1.name();
if (destZone1.equals(ZoneType.Library)) {
if (libraryPosition == -1) {
prompt = "Choose a card to put on the bottom of {player's} library";
}
else if (libraryPosition == 0) {
prompt = "Choose a card to put on top of {player's} library";
String prompt;
if (sa.hasParam("PrimaryPrompt")) {
prompt = sa.getParam("PrimaryPrompt");
} else {
prompt = "Choose a card to put into " + destZone1.name();
if (destZone1.equals(ZoneType.Library)) {
if (libraryPosition == -1) {
prompt = "Choose a card to put on the bottom of {player's} library";
}
else if (libraryPosition == 0) {
prompt = "Choose a card to put on top of {player's} library";
}
}
}