[BLC] Implement Fisher's Talent

This commit is contained in:
PurpleCrowbar 2025-01-17 18:57:10 +00:00
parent ad26810281
commit 1e9c171441
3 changed files with 241 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author PurpleCrowbar
*/
public final class Shark33Token extends TokenImpl {
public Shark33Token() {
super("Shark Token", "3/3 blue Shark creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.SHARK);
power = new MageInt(3);
toughness = new MageInt(3);
}
private Shark33Token(final Shark33Token token) {
super(token);
}
public Shark33Token copy() {
return new Shark33Token(this);
}
}