mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Gruul Beastmaster
This commit is contained in:
parent
c1c09020a6
commit
44115b93d0
3 changed files with 72 additions and 2 deletions
|
|
@ -7,8 +7,9 @@ import mage.game.Game;
|
|||
|
||||
public class StaticValue implements DynamicValue {
|
||||
|
||||
private int value = 0;
|
||||
private String message;
|
||||
private final int value;
|
||||
private final String message;
|
||||
private static final StaticValue zeroValue = new StaticValue(0);
|
||||
|
||||
public StaticValue(int value) {
|
||||
this(value, "");
|
||||
|
|
@ -47,4 +48,8 @@ public class StaticValue implements DynamicValue {
|
|||
public int getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static StaticValue getZeroValue() {
|
||||
return zeroValue;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue