forked from External/mage
Implemented Alpine Moon
This commit is contained in:
parent
880534c4df
commit
8116f1365e
4 changed files with 147 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ public class ChooseACardNameEffect extends OneShotEffect {
|
|||
|
||||
ALL,
|
||||
NOT_BASIC_LAND_NAME,
|
||||
NONBASIC_LAND_NAME,
|
||||
NON_ARTIFACT_AND_NON_LAND_NAME,
|
||||
NON_LAND_NAME,
|
||||
NON_LAND_AND_NON_CREATURE_NAME,
|
||||
|
|
@ -62,6 +63,10 @@ public class ChooseACardNameEffect extends OneShotEffect {
|
|||
cardChoice.setChoices(CardRepository.instance.getNotBasicLandNames());
|
||||
cardChoice.setMessage("Choose a card name other than a basic land card name");
|
||||
break;
|
||||
case NONBASIC_LAND_NAME:
|
||||
cardChoice.setChoices(CardRepository.instance.getNonbasicLandNames());
|
||||
cardChoice.setMessage("Choose a nonbasic land card name");
|
||||
break;
|
||||
case NON_ARTIFACT_AND_NON_LAND_NAME:
|
||||
cardChoice.setChoices(CardRepository.instance.getNonArtifactAndNonLandNames());
|
||||
cardChoice.setMessage("Choose a nonartifact, nonland card name");
|
||||
|
|
@ -113,6 +118,9 @@ public class ChooseACardNameEffect extends OneShotEffect {
|
|||
case NOT_BASIC_LAND_NAME:
|
||||
sb.append("card name other than a basic land card");
|
||||
break;
|
||||
case NONBASIC_LAND_NAME:
|
||||
sb.append("nonbasic land card name");
|
||||
break;
|
||||
case NON_ARTIFACT_AND_NON_LAND_NAME:
|
||||
sb.append("nonartifact, nonland card");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue