forked from External/mage
replaced StaticValue with singletons
This commit is contained in:
parent
7f0d793544
commit
9a603fbaab
318 changed files with 440 additions and 435 deletions
|
|
@ -23,11 +23,11 @@ public class AddManaInAnyCombinationEffect extends ManaEffect {
|
|||
private final DynamicValue amount;
|
||||
|
||||
public AddManaInAnyCombinationEffect(int amount) {
|
||||
this(new StaticValue(amount), ColoredManaSymbol.B, ColoredManaSymbol.U, ColoredManaSymbol.R, ColoredManaSymbol.W, ColoredManaSymbol.G);
|
||||
this(StaticValue.get(amount), ColoredManaSymbol.B, ColoredManaSymbol.U, ColoredManaSymbol.R, ColoredManaSymbol.W, ColoredManaSymbol.G);
|
||||
}
|
||||
|
||||
public AddManaInAnyCombinationEffect(int amount, ColoredManaSymbol... coloredManaSymbols) {
|
||||
this(new StaticValue(amount), coloredManaSymbols);
|
||||
this(StaticValue.get(amount), coloredManaSymbols);
|
||||
}
|
||||
|
||||
public AddManaInAnyCombinationEffect(DynamicValue amount, ColoredManaSymbol... coloredManaSymbols) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue