mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[DMU] Implemented Lagomos, Hand of Hatred
This commit is contained in:
parent
180f9bf8dd
commit
3ce05b06c7
3 changed files with 141 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue