mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Remove more duplicate tokens and rename some tokens to more generic names
This commit is contained in:
parent
6b0115157b
commit
77433d7ee6
20 changed files with 64 additions and 229 deletions
|
|
@ -10,9 +10,9 @@ import java.util.Arrays;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class OwlToken extends TokenImpl {
|
||||
public final class BlueBirdToken extends TokenImpl {
|
||||
|
||||
public OwlToken() {
|
||||
public BlueBirdToken() {
|
||||
super("Bird Token", "1/1 blue Bird creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
|
|
@ -25,11 +25,11 @@ public final class OwlToken extends TokenImpl {
|
|||
availableImageSetCodes = Arrays.asList("EVE", "INV", "KHM");
|
||||
}
|
||||
|
||||
public OwlToken(final OwlToken token) {
|
||||
public BlueBirdToken(final BlueBirdToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public OwlToken copy() {
|
||||
return new OwlToken(this);
|
||||
public BlueBirdToken copy() {
|
||||
return new BlueBirdToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
|
@ -12,7 +10,7 @@ import mage.MageInt;
|
|||
public final class GoblinSoldierToken extends TokenImpl {
|
||||
|
||||
public GoblinSoldierToken() {
|
||||
super("Goblin Soldier Token", "1/1 red and white Goblin Soldier creature tokens");
|
||||
super("Goblin Soldier Token", "1/1 red and white Goblin Soldier creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
color.setWhite(true);
|
||||
|
|
@ -21,6 +19,7 @@ public final class GoblinSoldierToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public GoblinSoldierToken(final GoblinSoldierToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
|
@ -28,5 +27,4 @@ public final class GoblinSoldierToken extends TokenImpl {
|
|||
public GoblinSoldierToken copy() {
|
||||
return new GoblinSoldierToken(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,32 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class GoblinTrenchesToken extends TokenImpl {
|
||||
|
||||
public GoblinTrenchesToken() {
|
||||
super("Goblin Soldier Token", "1/1 red and white Goblin Soldier creature tokens");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
subtype.add(SubType.SOLDIER);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public GoblinTrenchesToken(final GoblinTrenchesToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public GoblinTrenchesToken copy() {
|
||||
return new GoblinTrenchesToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -9,9 +9,9 @@ import java.util.Arrays;
|
|||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class RhysTheRedeemedToken extends TokenImpl {
|
||||
public final class GreenWhiteElfWarriorToken extends TokenImpl {
|
||||
|
||||
public RhysTheRedeemedToken() {
|
||||
public GreenWhiteElfWarriorToken() {
|
||||
super("Elf Warrior Token", "1/1 green and white Elf Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
|
|
@ -24,12 +24,12 @@ public final class RhysTheRedeemedToken extends TokenImpl {
|
|||
availableImageSetCodes = Arrays.asList("SHM");
|
||||
}
|
||||
|
||||
public RhysTheRedeemedToken(final RhysTheRedeemedToken token) {
|
||||
public GreenWhiteElfWarriorToken(final GreenWhiteElfWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RhysTheRedeemedToken copy() {
|
||||
return new RhysTheRedeemedToken(this);
|
||||
public GreenWhiteElfWarriorToken copy() {
|
||||
return new GreenWhiteElfWarriorToken(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
|
|
@ -11,10 +9,10 @@ import mage.abilities.keyword.FlyingAbility;
|
|||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class AbhorrentOverlordHarpyToken extends TokenImpl {
|
||||
public final class HarpyToken extends TokenImpl {
|
||||
|
||||
public AbhorrentOverlordHarpyToken() {
|
||||
super("Harpy Token", "1/1 black Harpy creature tokens with flying");
|
||||
public HarpyToken() {
|
||||
super("Harpy Token", "1/1 black Harpy creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.HARPY);
|
||||
|
|
@ -24,11 +22,11 @@ public final class AbhorrentOverlordHarpyToken extends TokenImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public AbhorrentOverlordHarpyToken(final AbhorrentOverlordHarpyToken token) {
|
||||
public HarpyToken(final HarpyToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AbhorrentOverlordHarpyToken copy() {
|
||||
return new AbhorrentOverlordHarpyToken(this);
|
||||
public HarpyToken copy() {
|
||||
return new HarpyToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class MercyKillingToken extends TokenImpl {
|
||||
|
||||
public MercyKillingToken() {
|
||||
super("Elf Warrior Token", "1/1 green and white Elf Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ELF);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public MercyKillingToken(final MercyKillingToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public MercyKillingToken copy() {
|
||||
return new MercyKillingToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LoneFox
|
||||
*/
|
||||
public final class OrderedMigrationBirdToken extends TokenImpl {
|
||||
|
||||
public OrderedMigrationBirdToken() {
|
||||
super("Bird Token", "1/1 blue Bird creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.BIRD);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public OrderedMigrationBirdToken(final OrderedMigrationBirdToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public OrderedMigrationBirdToken copy() {
|
||||
return new OrderedMigrationBirdToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
|
@ -10,9 +8,9 @@ import mage.abilities.keyword.FlyingAbility;
|
|||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class DovescapeToken extends TokenImpl {
|
||||
public final class WhiteBlueBirdToken extends TokenImpl {
|
||||
|
||||
public DovescapeToken() {
|
||||
public WhiteBlueBirdToken() {
|
||||
super("Bird Token", "1/1 white and blue Bird creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
|
|
@ -22,11 +20,11 @@ public final class DovescapeToken extends TokenImpl {
|
|||
toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
public DovescapeToken(final DovescapeToken token) {
|
||||
public WhiteBlueBirdToken(final WhiteBlueBirdToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DovescapeToken copy() {
|
||||
return new DovescapeToken(this);
|
||||
public WhiteBlueBirdToken copy() {
|
||||
return new WhiteBlueBirdToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue