mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
implement [MH3] Genku, Future Shaper
This commit is contained in:
parent
28d697e9e9
commit
8ec4ffd9de
5 changed files with 185 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class Fox22VigilanceToken extends TokenImpl {
|
||||
|
||||
public Fox22VigilanceToken() {
|
||||
super("Fox Token", "2/2 white Fox creature token with vigilance");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.FOX);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
private Fox22VigilanceToken(final Fox22VigilanceToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Fox22VigilanceToken copy() {
|
||||
return new Fox22VigilanceToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class Moonfolk12FlyingToken extends TokenImpl {
|
||||
|
||||
public Moonfolk12FlyingToken() {
|
||||
super("Moonfolk Token", "1/2 blue Moonfolk creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.MOONFOLK);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
private Moonfolk12FlyingToken(final Moonfolk12FlyingToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Moonfolk12FlyingToken copy() {
|
||||
return new Moonfolk12FlyingToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class Rat11LifelinkToken extends TokenImpl {
|
||||
|
||||
public Rat11LifelinkToken() {
|
||||
super("Rat Token", "1/1 black Rat creature token with lifelink");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.RAT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
private Rat11LifelinkToken(final Rat11LifelinkToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Rat11LifelinkToken copy() {
|
||||
return new Rat11LifelinkToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue