[FIN] Implement Choco Comet

This commit is contained in:
theelk801 2025-05-27 17:05:08 -04:00
parent b6ff837b20
commit ecec7e4476
4 changed files with 47 additions and 8 deletions

View file

@ -8,11 +8,11 @@ import mage.constants.Duration;
import mage.constants.SubType;
/**
* @author LoneFox
* @author TheElk801
*/
public final class BirdLandfallToken extends TokenImpl {
public final class ChocoboToken extends TokenImpl {
public BirdLandfallToken() {
public ChocoboToken() {
super("Bird Token", "2/2 green Bird creature token with \"Whenever a land you control enters, this token gets +1/+0 until end of turn.\"");
cardType.add(CardType.CREATURE);
color.setGreen(true);
@ -23,12 +23,12 @@ public final class BirdLandfallToken extends TokenImpl {
addAbility(new LandfallAbility(new BoostSourceEffect(1, 0, Duration.EndOfTurn)).setAbilityWord(null));
}
private BirdLandfallToken(final BirdLandfallToken token) {
private ChocoboToken(final ChocoboToken token) {
super(token);
}
@Override
public BirdLandfallToken copy() {
return new BirdLandfallToken(this);
public ChocoboToken copy() {
return new ChocoboToken(this);
}
}