mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Added FRF token images
This commit is contained in:
parent
d2e752bc22
commit
e8eb0c9dba
3 changed files with 9 additions and 1 deletions
|
@ -1463,6 +1463,11 @@ public class ScryfallImageSupportTokens {
|
|||
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");
|
||||
|
||||
// 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
|
||||
supportedSets.clear();
|
||||
for (String cardName : this.keySet()) {
|
||||
|
|
|
@ -640,7 +640,6 @@
|
|||
|Generate|TOK:FEM|Thrull|||BreedingPitBlackInsectToken|
|
||||
|Generate|TOK:FNMP|Human||
|
||||
|Generate|TOK:FNMP|Wolf||
|
||||
|Generate|TOK:FRF|Manifest||
|
||||
|Generate|TOK:FRF|Monk|||MonasteryMentorToken|
|
||||
|Generate|TOK:FRF|Spirit|||SpiritWhiteToken|
|
||||
|Generate|TOK:FRF|Warrior|||MarduStrikeLeaderWarriorToken|
|
||||
|
|
|
@ -5,6 +5,8 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
|
@ -18,6 +20,8 @@ public final class MarduStrikeLeaderWarriorToken extends TokenImpl {
|
|||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("FRF");
|
||||
}
|
||||
|
||||
public MarduStrikeLeaderWarriorToken(final MarduStrikeLeaderWarriorToken token) {
|
||||
|
|
Loading…
Reference in a new issue