[DMU] Implemented Lagomos, Hand of Hatred

This commit is contained in:
Daniel Bomar 2022-08-23 12:01:08 -05:00
parent 180f9bf8dd
commit 3ce05b06c7
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author weirddan455
*/
public final class Elemental21TrampleHasteToken extends TokenImpl {
public Elemental21TrampleHasteToken() {
super("Elemental Token", "2/1 red Elemental creature token with trample and haste");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.ELEMENTAL);
power = new MageInt(2);
toughness = new MageInt(1);
this.addAbility(TrampleAbility.getInstance());
this.addAbility(HasteAbility.getInstance());
}
private Elemental21TrampleHasteToken(final Elemental21TrampleHasteToken token) {
super(token);
}
@Override
public Elemental21TrampleHasteToken copy() {
return new Elemental21TrampleHasteToken(this);
}
}