forked from External/mage
[FIC] Implement Summon: Good King Mog XII
This commit is contained in:
parent
b26f224ee0
commit
16373fda33
3 changed files with 183 additions and 0 deletions
|
|
@ -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 TheElk801
|
||||
*/
|
||||
public final class MoogleToken extends TokenImpl {
|
||||
|
||||
public MoogleToken() {
|
||||
super("Moogle Token", "1/2 white Moogle creature token with lifelink");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.MOOGLE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
private MoogleToken(final MoogleToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MoogleToken copy() {
|
||||
return new MoogleToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue