mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Izoni, Thousand-Eyed
This commit is contained in:
parent
d6739f9073
commit
f433d7c006
3 changed files with 105 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class IzoniInsectToken extends TokenImpl {
|
||||
|
||||
public IzoniInsectToken() {
|
||||
super("Insect", "1/1 black and green Insect creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.INSECT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public IzoniInsectToken(final IzoniInsectToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public IzoniInsectToken copy() {
|
||||
return new IzoniInsectToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue