mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[MKC] Implement Sophia, Dogged Detective
This commit is contained in:
parent
65f3652fd5
commit
79e5a83ec9
3 changed files with 107 additions and 0 deletions
34
Mage/src/main/java/mage/game/permanent/token/TinyToken.java
Normal file
34
Mage/src/main/java/mage/game/permanent/token/TinyToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue