[BOT] Implemented Goldbug, Humanity's Ally / Goldbug, Scrappy Scout

This commit is contained in:
Evan Kranzler 2022-10-01 10:51:09 -04:00
parent 58dc37e7cf
commit 43838d3675
8 changed files with 307 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,8 @@ public final class Transformers extends ExpansionSet {
private Transformers() {
super("Transformers", "BOT", ExpansionSet.buildDate(2022, 11, 18), SetType.SUPPLEMENTAL);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Goldbug, Humanity's Ally", 11, Rarity.MYTHIC, mage.cards.g.GoldbugHumanitysAlly.class));
cards.add(new SetCardInfo("Goldbug, Scrappy Scout", 11, Rarity.MYTHIC, mage.cards.g.GoldbugScrappyScout.class));
}
}