[BLC] Implement Gourmand's Talent (#12796)

This commit is contained in:
Grath 2024-09-03 23:22:31 -04:00 committed by GitHub
parent 321f93bbc0
commit 8421c993e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 152 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 BetaSteward_at_googlemail.com
*/
public final class RaccoonToken extends TokenImpl {
public RaccoonToken() {
super("Raccoon Token", "3/3 green Raccoon creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.RACCOON);
power = new MageInt(3);
toughness = new MageInt(3);
}
private RaccoonToken(final RaccoonToken token) {
super(token);
}
@Override
public RaccoonToken copy() {
return new RaccoonToken(this);
}
}