mirror of
https://github.com/magefree/mage.git
synced 2026-01-18 17:29:58 -08:00
Removed duplicate ooze token class
This commit is contained in:
parent
31e6a5a06f
commit
a699431e0b
2 changed files with 2 additions and 36 deletions
|
|
@ -1,34 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class MysticGenesisOozeToken extends TokenImpl {
|
||||
|
||||
public MysticGenesisOozeToken() {
|
||||
this(0);
|
||||
}
|
||||
public MysticGenesisOozeToken(int xValue) {
|
||||
super("Ooze Token", "X/X green Ooze creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.OOZE);
|
||||
power = new MageInt(xValue);
|
||||
toughness = new MageInt(xValue);
|
||||
setOriginalExpansionSetCode("MM3");
|
||||
}
|
||||
|
||||
public MysticGenesisOozeToken(final MysticGenesisOozeToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public MysticGenesisOozeToken copy() {
|
||||
return new MysticGenesisOozeToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue