forked from External/mage
32 lines
817 B
Java
32 lines
817 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.TrampleAbility;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class StoneTrapIdolToken extends TokenImpl {
|
|
|
|
public StoneTrapIdolToken() {
|
|
super("Construct", "6/12 colorless Construct artifact creature token with trample");
|
|
cardType.add(CardType.CREATURE);
|
|
cardType.add(CardType.ARTIFACT);
|
|
subtype.add(SubType.CONSTRUCT);
|
|
power = new MageInt(6);
|
|
toughness = new MageInt(12);
|
|
addAbility(TrampleAbility.getInstance());
|
|
}
|
|
|
|
public StoneTrapIdolToken(final StoneTrapIdolToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public StoneTrapIdolToken copy() {
|
|
return new StoneTrapIdolToken(this);
|
|
}
|
|
}
|