mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[J22] Implement Daring Piracy
This commit is contained in:
parent
4854f648bb
commit
0069f6181b
3 changed files with 98 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PirateRedToken extends TokenImpl {
|
||||
|
||||
public PirateRedToken() {
|
||||
super("Pirate Token", "1/1 red Pirate creature token with menace and haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.PIRATE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(new MenaceAbility(false));
|
||||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
public PirateRedToken(final PirateRedToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PirateRedToken copy() {
|
||||
return new PirateRedToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue