This commit is contained in:
Jeff Wadsworth 2022-10-19 14:57:03 -05:00
parent fadcd3f00a
commit 75c39c87be
10 changed files with 91 additions and 20 deletions

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
import mage.abilities.keyword.MenaceAbility;
/**
* @author TheElk801
*/
public final class BlackAstartesWarriorToken extends TokenImpl {
public BlackAstartesWarriorToken() {
super("Astartes Warrior Token", "2/2 black Astartes Warrior creature tokens with menace");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ASTARTES);
subtype.add(SubType.WARRIOR);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(new MenaceAbility());
availableImageSetCodes.addAll(Arrays.asList("40K"));
}
public BlackAstartesWarriorToken(final BlackAstartesWarriorToken token) {
super(token);
}
@Override
public BlackAstartesWarriorToken copy() {
return new BlackAstartesWarriorToken(this);
}
}

View file

@ -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 WhiteAstartesWarriorToken extends TokenImpl {
public WhiteAstartesWarriorToken() {
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 WhiteAstartesWarriorToken(final WhiteAstartesWarriorToken token) {
super(token);
}
@Override
public WhiteAstartesWarriorToken copy() {
return new WhiteAstartesWarriorToken(this);
}
}

View file

@ -54,7 +54,7 @@ public class FixedTarget extends TargetPointerImpl {
}
/**
* Target counter is immediatly initialised with current zoneChangeCounter
* Target counter is immediately initialized with current zoneChangeCounter
* value from the given permanent
*
* @param permanent