[MKC] Implement Sophia, Dogged Detective

This commit is contained in:
PurpleCrowbar 2024-02-28 15:50:36 +00:00
parent 65f3652fd5
commit 79e5a83ec9
3 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author PurpleCrowbar
*/
public final class TinyToken extends TokenImpl {
public TinyToken() {
super("Tiny", "Tiny, a legendary 2/2 green Dog Detective creature token with trample");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.DOG, SubType.DETECTIVE);
power = new MageInt(2);
toughness = new MageInt(2);
// Trample
this.addAbility(TrampleAbility.getInstance());
}
private TinyToken(final TinyToken token) {
super(token);
}
public TinyToken copy() {
return new TinyToken(this);
}
}