mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
- Fixed #9672
This commit is contained in:
parent
fadcd3f00a
commit
75c39c87be
10 changed files with 91 additions and 20 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue