[FIN] Implement The Final Days

This commit is contained in:
theelk801 2025-05-26 19:18:20 -04:00 committed by Failure
parent 527a27f8ef
commit 506c0e46ed
3 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class Horror3Token extends TokenImpl {
public Horror3Token() {
super("Horror Token", "2/2 black Horror creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.HORROR);
power = new MageInt(2);
toughness = new MageInt(2);
}
private Horror3Token(final Horror3Token token) {
super(token);
}
public Horror3Token copy() {
return new Horror3Token(this);
}
}