mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[BLB] Implement Stormchaser's Talent
This commit is contained in:
parent
8fbca400e2
commit
3d92428453
4 changed files with 100 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue