Added FRF token images

This commit is contained in:
PurpleCrowbar 2022-06-06 00:37:15 +01:00
parent d2e752bc22
commit e8eb0c9dba
3 changed files with 9 additions and 1 deletions

View file

@ -1463,6 +1463,11 @@ public class ScryfallImageSupportTokens {
put ("DVD/Spirit", "https://api.scryfall.com/cards/tdvd/5/en?format=image"); put ("DVD/Spirit", "https://api.scryfall.com/cards/tdvd/5/en?format=image");
put ("DVD/Thrull", "https://api.scryfall.com/cards/tdvd/7/en?format=image"); put ("DVD/Thrull", "https://api.scryfall.com/cards/tdvd/7/en?format=image");
// FRF
put ("FRF/Monk", "https://api.scryfall.com/cards/tfrf/1/en?format=image");
put ("FRF/Spirit", "https://api.scryfall.com/cards/tfrf/2/en?format=image");
put ("FRF/Warrior", "https://api.scryfall.com/cards/tfrf/3/en?format=image");
// generate supported sets // generate supported sets
supportedSets.clear(); supportedSets.clear();
for (String cardName : this.keySet()) { for (String cardName : this.keySet()) {

View file

@ -640,7 +640,6 @@
|Generate|TOK:FEM|Thrull|||BreedingPitBlackInsectToken| |Generate|TOK:FEM|Thrull|||BreedingPitBlackInsectToken|
|Generate|TOK:FNMP|Human|| |Generate|TOK:FNMP|Human||
|Generate|TOK:FNMP|Wolf|| |Generate|TOK:FNMP|Wolf||
|Generate|TOK:FRF|Manifest||
|Generate|TOK:FRF|Monk|||MonasteryMentorToken| |Generate|TOK:FRF|Monk|||MonasteryMentorToken|
|Generate|TOK:FRF|Spirit|||SpiritWhiteToken| |Generate|TOK:FRF|Spirit|||SpiritWhiteToken|
|Generate|TOK:FRF|Warrior|||MarduStrikeLeaderWarriorToken| |Generate|TOK:FRF|Warrior|||MarduStrikeLeaderWarriorToken|

View file

@ -5,6 +5,8 @@ import mage.constants.CardType;
import mage.constants.SubType; import mage.constants.SubType;
import mage.MageInt; import mage.MageInt;
import java.util.Arrays;
/** /**
* *
* @author spjspj * @author spjspj
@ -18,6 +20,8 @@ public final class MarduStrikeLeaderWarriorToken extends TokenImpl {
subtype.add(SubType.WARRIOR); subtype.add(SubType.WARRIOR);
power = new MageInt(2); power = new MageInt(2);
toughness = new MageInt(1); toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("FRF");
} }
public MarduStrikeLeaderWarriorToken(final MarduStrikeLeaderWarriorToken token) { public MarduStrikeLeaderWarriorToken(final MarduStrikeLeaderWarriorToken token) {