mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
Removed choices that should not be made while casting of a spell.
For example: color choices for protection abilities.
This commit is contained in:
parent
4b4417d88d
commit
9d380331d7
35 changed files with 619 additions and 630 deletions
|
|
@ -30,7 +30,6 @@ package mage.abilities;
|
|||
import java.io.Serializable;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.Effects;
|
||||
import mage.choices.Choices;
|
||||
import mage.target.Targets;
|
||||
|
||||
/**
|
||||
|
|
@ -41,20 +40,17 @@ public class Mode implements Serializable {
|
|||
|
||||
protected UUID id;
|
||||
protected Targets targets;
|
||||
protected Choices choices;
|
||||
protected Effects effects;
|
||||
|
||||
public Mode() {
|
||||
this.id = UUID.randomUUID();
|
||||
this.targets = new Targets();
|
||||
this.choices = new Choices();
|
||||
this.effects = new Effects();
|
||||
}
|
||||
|
||||
public Mode(Mode mode) {
|
||||
this.id = mode.id;
|
||||
this.targets = mode.targets.copy();
|
||||
this.choices = mode.choices.copy();
|
||||
this.effects = mode.effects.copy();
|
||||
}
|
||||
|
||||
|
|
@ -70,10 +66,6 @@ public class Mode implements Serializable {
|
|||
return targets;
|
||||
}
|
||||
|
||||
public Choices getChoices() {
|
||||
return choices;
|
||||
}
|
||||
|
||||
public Effects getEffects() {
|
||||
return effects;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue