mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Removed ONS as a token image source as it has no related token images
This commit is contained in:
parent
a699431e0b
commit
070374d816
4 changed files with 3 additions and 9 deletions
|
@ -920,12 +920,6 @@
|
|||
|Generate|TOK:OGW|Elemental|2||ElementalTokenWithHaste|
|
||||
|Generate|TOK:OGW|Plant|||PlantToken|
|
||||
|Generate|TOK:OGW|Zombie|||ZombieToken|
|
||||
|Generate|TOK:ONS|Bear|||BearToken|
|
||||
|Generate|TOK:ONS|Centaur|||CentaurToken|
|
||||
|Generate|TOK:ONS|Dragon|||DragonToken2|
|
||||
|Generate|TOK:ONS|Insect|||InsectToken|
|
||||
|Generate|TOK:ONS|Soldier|||SoldierToken|
|
||||
|Generate|TOK:ONS|Zombie|||ZombieToken|
|
||||
|Generate|TOK:ORI|Angel|||AngelToken|
|
||||
|Generate|TOK:ORI|Ashaya, the Awoken World|||NissaSageAnimistToken|
|
||||
|Generate|TOK:ORI|Demon|||DemonToken|
|
||||
|
|
|
@ -19,7 +19,7 @@ public final class BearToken extends TokenImpl {
|
|||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C15", "JUD", "ODY", "ONS", "VMA", "MH1", "ELD", "KHM");
|
||||
availableImageSetCodes = Arrays.asList("C15", "JUD", "ODY", "VMA", "MH1", "ELD", "KHM");
|
||||
}
|
||||
|
||||
public BearToken(final BearToken token) {
|
||||
|
|
|
@ -20,7 +20,7 @@ public final class CentaurToken extends TokenImpl {
|
|||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("C19", "ONS", "RTR", "RNA", "MIC", "MM3");
|
||||
availableImageSetCodes = Arrays.asList("C19", "RTR", "RNA", "MIC", "MM3");
|
||||
}
|
||||
|
||||
public CentaurToken(final CentaurToken token) {
|
||||
|
|
|
@ -22,7 +22,7 @@ public final class DragonToken2 extends TokenImpl {
|
|||
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("10E", "BFZ", "C15", "C19", "CMA", "CMD", "ONS", "SCG", "WWK", "M19", "KHM", "AFC", "IMA", "PCA", "CN2");
|
||||
availableImageSetCodes = Arrays.asList("10E", "BFZ", "C15", "C19", "CMA", "CMD", "SCG", "WWK", "M19", "KHM", "AFC", "IMA", "PCA", "CN2");
|
||||
}
|
||||
|
||||
public DragonToken2(final DragonToken2 token) {
|
||||
|
|
Loading…
Reference in a new issue