mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
[BLC] Implement Fisher's Talent
This commit is contained in:
parent
ad26810281
commit
1e9c171441
3 changed files with 241 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue