Finish fixing Elvish Rejuvenator

master
Ada Joule 2018-11-09 03:30:29 +07:00 committed by Melvin Zhang
parent 9b02a7567e
commit 363489b22a
1 changed files with 7 additions and 10 deletions

View File

@ -38,19 +38,16 @@ def action = {
));
game.addEvent(new MagicEvent(
event.getSource(),
new MagicMayChoice(
"Put a land card from among them onto the battlefield?",
new MagicFromCardListChoice(
topCards.findAll({ it.hasType(MagicType.Land) }),
topCards,
1,
"Choose a land card"
)
new MagicFromCardListChoice(
topCards.findAll({ it.hasType(MagicType.Land) }),
topCards,
1,
true
),
topCards,
MagicGraveyardTargetPicker.PutOntoBattlefield,
topCards,
action,
"PN may\$ put a land card from among them\$ onto the battlefield tapped. PN puts the rest on the bottom of their library in a random order."
"PN may put a land card from among them\$ onto the battlefield tapped. PN puts the rest on the bottom of their library in a random order."
));
}
}