[BLB] Implement Stormchaser's Talent

This commit is contained in:
theelk801 2024-07-17 14:25:16 -04:00
parent 8fbca400e2
commit 3d92428453
4 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.ProwessAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class OtterProwessToken extends TokenImpl {
public OtterProwessToken() {
super("Otter Token", "1/1 blue and red Otter creature token with prowess");
cardType.add(CardType.CREATURE);
color.setBlue(true);
color.setRed(true);
subtype.add(SubType.OTTER);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(new ProwessAbility());
}
private OtterProwessToken(final OtterProwessToken token) {
super(token);
}
public OtterProwessToken copy() {
return new OtterProwessToken(this);
}
}