mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Implemented Purphoros's Intervention
This commit is contained in:
parent
cea9b989bb
commit
dccc17fac9
3 changed files with 121 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
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 TheElk801
|
||||
*/
|
||||
public final class PurphorossInterventionToken extends TokenImpl {
|
||||
|
||||
public PurphorossInterventionToken(int power) {
|
||||
super("Elemental", "X/1 red Elemental creature token with trample and haste");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
this.subtype.add(SubType.ELEMENTAL);
|
||||
this.color.setRed(true);
|
||||
this.power = new MageInt(power);
|
||||
this.toughness = new MageInt(1);
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private PurphorossInterventionToken(final PurphorossInterventionToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PurphorossInterventionToken copy() {
|
||||
return new PurphorossInterventionToken(this);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue