mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
[ECL] Implement Unforgiving Aim (#14195)
This commit is contained in:
parent
91def510e9
commit
5ee956e844
3 changed files with 75 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue