Fix BlackGreenElfToken not being black

This commit is contained in:
PurpleCrowbar 2026-01-19 22:24:52 +00:00
parent 6bbdcf54f7
commit 7c26abd382

View file

@ -12,6 +12,7 @@ public final class BlackGreenElfToken extends TokenImpl {
public BlackGreenElfToken() {
super("Elf Token", "2/2 black and green Elf creature token");
this.cardType.add(CardType.CREATURE);
this.color.setBlack(true);
this.color.setGreen(true);
this.subtype.add(SubType.ELF);