mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[40K] Implemented Lictor
This commit is contained in:
parent
e9684c86ac
commit
89eb256c16
3 changed files with 69 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
|
|
@ -12,13 +13,14 @@ import java.util.Arrays;
|
|||
public final class TyranidWarriorToken extends TokenImpl {
|
||||
|
||||
public TyranidWarriorToken() {
|
||||
super("Tyranid Warrior Token", "3/3 green Tyranid Warrior creature token");
|
||||
super("Tyranid Warrior Token", "3/3 green Tyranid Warrior creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.TYRANID);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
|
||||
availableImageSetCodes.addAll(Arrays.asList("40K"));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue