mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[FIC] add set
This commit is contained in:
parent
f5d4c957fc
commit
5eec4c4465
5 changed files with 28 additions and 0 deletions
|
|
@ -579,6 +579,7 @@ public class ScryfallImageSupportCards {
|
|||
add("INR"); // Innistrad Remastered
|
||||
add("DFT"); // Aetherdrift
|
||||
add("DRC"); // Aetherdrift Commander
|
||||
add("FIC"); // Final Fantasy Commander
|
||||
|
||||
// Custom sets using Scryfall images - must provide a direct link for each card in directDownloadLinks
|
||||
add("CALC"); // Custom Alchemized versions of existing cards
|
||||
|
|
|
|||
21
Mage.Sets/src/mage/sets/FinalFantasyCommander.java
Normal file
21
Mage.Sets/src/mage/sets/FinalFantasyCommander.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FinalFantasyCommander extends ExpansionSet {
|
||||
|
||||
private static final FinalFantasyCommander instance = new FinalFantasyCommander();
|
||||
|
||||
public static FinalFantasyCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private FinalFantasyCommander() {
|
||||
super("Final Fantasy Commander", "FIC", ExpansionSet.buildDate(2025, 6, 13), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -98,6 +98,7 @@ Fallen Empires|FallenEmpires|
|
|||
Fate Reforged|FateReforged|
|
||||
Fifth Dawn|FifthDawn|
|
||||
Fifth Edition|FifthEdition|
|
||||
Final Fantasy Commander|FinalFantasyCommander|
|
||||
Foundations|Foundations|
|
||||
Foundations Jumpstart|FoundationsJumpstart|
|
||||
Fourth Edition|FourthEdition|
|
||||
|
|
|
|||
|
|
@ -57177,3 +57177,7 @@ Underground River|Aetherdrift Commander|181|R||Land|||{T}: Add {C}.${T}: Add {U}
|
|||
Unholy Grotto|Aetherdrift Commander|182|R||Land|||{T}: Add {C}.${B}, {T}: Put target Zombie card from your graveyard on top of your library.|
|
||||
Vineglimmer Snarl|Aetherdrift Commander|183|R||Land|||As Vineglimmer Snarl enters, you may reveal a Forest or Island card from your hand. If you don't, Vineglimmer Snarl enters tapped.${T}: Add {G} or {U}.|
|
||||
Yavimaya Coast|Aetherdrift Commander|184|R||Land|||{T}: Add {C}.${T}: Add {G} or {U}. Yavimaya Coast deals 1 damage to you.|
|
||||
Cloud, Ex-SOLDIER|Final Fantasy Commander|2|M|{2}{R}{G}{W}|Legendary Creature - Human Soldier Mercenary|4|4|Haste$When Cloud enters, attach up to one target Equipment you control to it.$Whenever Cloud attacks, draw a card for each equipped attacking creature you control. Then if Cloud has power 7 or greater, create two Treasure tokens.|
|
||||
Terra, Herald of Hope|Final Fantasy Commander|4|M|{R}{W}{B}|Legendary Creature - Human Wizard Warrior|3|3|Trance -- At the beginning of combat on your turn, mill two cards. Terra gains flying until end of turn.$Whenever Terra deals combat damage to a player, you may pay {2}. When you do, return target creature card with power 3 or less from your graveyard to the battlefield tapped.|
|
||||
Tidus, Yuna's Guardian|Final Fantasy Commander|5|M|{G}{W}{U}|Legendary Creature - Human Warrior|3|3|At the beginning of combat on your turn, you may move a counter from target creature you control onto a second target creature you control.$Cheer - Whenever one or more creatures you control with counters on them deal combat damage to a player, you may draw a card and proliferate. Do this only once each turn.|
|
||||
Y'shtola, Night's Blessed|Final Fantasy Commander|7|M|{1}{W}{U}{B}|Legendary Creature - Cat Warlock|2|4|Vigilance$At the beginning of each end step, if a player lost 4 or more life this turn, you draw a card.$Whenever you cast a noncreature spell with mana value 3 or greater, Y'shtola deals 2 damage to each opponent and you gain 2 life.|
|
||||
|
|
|
|||
|
|
@ -111,6 +111,7 @@ Exodus|EXO|
|
|||
Zendikar Expeditions|EXP|
|
||||
Fallout|PIP|
|
||||
Fallen Empires|FEM|
|
||||
Final Fantasy Commander|FIC|
|
||||
Friday Night Magic|FNMP|
|
||||
Fate Reforged|FRF|
|
||||
Foundations|FDN|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue