[FIC] Implement Terra, Herald of Hope

This commit is contained in:
theelk801 2025-02-18 10:09:40 -05:00
parent 5eec4c4465
commit fe8f54a64c
2 changed files with 71 additions and 0 deletions

View file

@ -1,6 +1,7 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
@ -17,5 +18,7 @@ public final class FinalFantasyCommander extends ExpansionSet {
private FinalFantasyCommander() {
super("Final Fantasy Commander", "FIC", ExpansionSet.buildDate(2025, 6, 13), SetType.SUPPLEMENTAL);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Terra, Herald of Hope", 4, Rarity.MYTHIC, mage.cards.t.TerraHeraldOfHope.class));
}
}