Added Darien, King of Kjeldor, Captain Sisay, Howltooth Hollow, Blackmail, Cao Cao, Lord of Wei and Diaochan Artful Beauty.

This commit is contained in:
LevelX2 2014-04-04 16:44:19 +02:00
parent 73885ab01d
commit 87dd02ecfc
16 changed files with 959 additions and 161 deletions

View file

@ -7,13 +7,19 @@ import mage.game.Game;
public class StaticValue implements DynamicValue {
private int value = 0;
private String message;
public StaticValue(int value) {
this(value, "");
}
public StaticValue(int value, String message) {
this.value = value;
this.message = message;
}
public StaticValue(final StaticValue staticValue) {
this.value = staticValue.value;
this.message = staticValue.message;
}
@Override
@ -33,6 +39,6 @@ public class StaticValue implements DynamicValue {
@Override
public String getMessage() {
return "";
return message;
}
}