[ECL] Implement Unforgiving Aim (#14195)

This commit is contained in:
Muz 2026-01-08 21:26:09 -06:00 committed by GitHub
parent 91def510e9
commit 5ee956e844
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 75 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 muz
*/
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.setGreen(true);
this.subtype.add(SubType.ELF);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
}
private BlackGreenElfToken(final BlackGreenElfToken token) {
super(token);
}
public BlackGreenElfToken copy() {
return new BlackGreenElfToken(this);
}
}