mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* 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:
parent
bc47bb0e7d
commit
35e8afb67c
5 changed files with 19 additions and 23 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue