forked from External/mage
[OTJ] Implement Magda, the Hoardmaster
This commit is contained in:
parent
ae081ee5af
commit
94a714b1b7
3 changed files with 91 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class ScorpionDragonToken extends TokenImpl {
|
||||
|
||||
public ScorpionDragonToken() {
|
||||
super("Scorpion Dragon Token", "4/4 red Scorpion Dragon creature token with flying and haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.SCORPION);
|
||||
subtype.add(SubType.DRAGON);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private ScorpionDragonToken(final ScorpionDragonToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ScorpionDragonToken copy() {
|
||||
return new ScorpionDragonToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue