mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[40K] Implemented Thunderhawk Gunship
This commit is contained in:
parent
10909c6694
commit
3c9fb843c7
3 changed files with 94 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AstartesWarriorToken extends TokenImpl {
|
||||
|
||||
public AstartesWarriorToken() {
|
||||
super("Astartes Warrior Token", "2/2 white Astartes Warrior creature tokens with vigilance");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ASTARTES);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
addAbility(VigilanceAbility.getInstance());
|
||||
|
||||
availableImageSetCodes.addAll(Arrays.asList("40K"));
|
||||
}
|
||||
|
||||
public AstartesWarriorToken(final AstartesWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AstartesWarriorToken copy() {
|
||||
return new AstartesWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue