Merge pull request #10030 from Grath/grath/implement-gorogoro-and-satoru

[MOC] Implement Goro-Goro and Satoru
This commit is contained in:
Grath 2023-03-28 15:11:59 -04:00 committed by GitHub
commit 250bacb33d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 118 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 MarchOfTheMachineCommander extends ExpansionSet {
private MarchOfTheMachineCommander() {
super("March of the Machine Commander", "MOC", ExpansionSet.buildDate(2023, 4, 21), SetType.SUPPLEMENTAL);
this.hasBasicLands = false;
cards.add(new SetCardInfo("Goro-Goro and Satoru", 445, Rarity.MYTHIC, mage.cards.g.GoroGoroAndSatoru.class));
}
}