mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[LTC] Implement Elrond of the White Council (#10731)
This commit is contained in:
parent
3cb22932a0
commit
23781ecb37
4 changed files with 194 additions and 2 deletions
|
|
@ -17,11 +17,17 @@ public class TwoChoiceVote extends VoteHandler<Boolean> {
|
|||
private final String choice1;
|
||||
private final String choice2;
|
||||
private final Outcome outcome;
|
||||
private final boolean secret;
|
||||
|
||||
public TwoChoiceVote(String choice1, String choice2, Outcome outcome) {
|
||||
this(choice1, choice2, outcome, false);
|
||||
}
|
||||
|
||||
public TwoChoiceVote(String choice1, String choice2, Outcome outcome, boolean secret) {
|
||||
this.choice1 = choice1;
|
||||
this.choice2 = choice2;
|
||||
this.outcome = outcome;
|
||||
this.secret = secret;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ import mage.filter.common.FilterCreaturePermanent;
|
|||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class TargetCreaturePermanent extends TargetPermanent {
|
||||
|
|
@ -31,7 +30,7 @@ public class TargetCreaturePermanent extends TargetPermanent {
|
|||
super(minNumTargets, maxNumTargets, filter, notTarget);
|
||||
}
|
||||
|
||||
public TargetCreaturePermanent(final TargetCreaturePermanent target) {
|
||||
protected TargetCreaturePermanent(final TargetCreaturePermanent target) {
|
||||
super(target);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue