* Fixed a problem with Ooze Token that was wrongly created with P/T 0/0 (related to Inexorable Blob, Mitotic Slime and Corrupted Zendikon).

This commit is contained in:
LevelX2 2016-10-10 17:01:24 +02:00
parent bc47bb0e7d
commit 35e8afb67c
5 changed files with 19 additions and 23 deletions

View file

@ -4,13 +4,14 @@ import mage.MageInt;
import mage.constants.CardType;
public class OozeToken extends Token {
public OozeToken(MageInt power, MageInt toughness) {
public OozeToken(int power, int toughness) {
super("Ooze", power + "/" + toughness + " green ooze creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add("Ooze");
power = new MageInt(0);
toughness = new MageInt(0);
this.power = new MageInt(power);
this.toughness = new MageInt(toughness);
}
public OozeToken() {