mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[OTC] Implement Yuma, Proud Protector
This commit is contained in:
parent
31027612ac
commit
62131f2a5d
3 changed files with 105 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class PlantWarriorToken extends TokenImpl {
|
||||
|
||||
public PlantWarriorToken() {
|
||||
super("Plant Warrior Token", "4/2 green Plant Warrior creature token with reach");
|
||||
color.setGreen(true);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PLANT);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
}
|
||||
|
||||
private PlantWarriorToken(final PlantWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PlantWarriorToken copy() {
|
||||
return new PlantWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue