Implemented Gruul Beastmaster

This commit is contained in:
Evan Kranzler 2019-01-07 19:30:47 -05:00
parent c1c09020a6
commit 44115b93d0
3 changed files with 72 additions and 2 deletions

View file

@ -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;
}
}