Implemented Thrash // Threat

This commit is contained in:
Evan Kranzler 2019-01-08 18:49:29 -05:00
parent a90c890c02
commit ddcb383486
3 changed files with 64 additions and 5 deletions

View file

@ -9,9 +9,9 @@ import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class DomriChaosBringerToken extends TokenImpl {
public final class RedGreenBeastToken extends TokenImpl {
public DomriChaosBringerToken() {
public RedGreenBeastToken() {
super("Beast", "4/4 red and green Beast creature token with trample");
cardType.add(CardType.CREATURE);
color.setRed(true);
@ -23,11 +23,11 @@ public final class DomriChaosBringerToken extends TokenImpl {
this.addAbility(TrampleAbility.getInstance());
}
private DomriChaosBringerToken(final DomriChaosBringerToken token) {
private RedGreenBeastToken(final RedGreenBeastToken token) {
super(token);
}
public DomriChaosBringerToken copy() {
return new DomriChaosBringerToken(this);
public RedGreenBeastToken copy() {
return new RedGreenBeastToken(this);
}
}