mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[MOC] add set
This commit is contained in:
parent
daf943a56e
commit
9b52701338
5 changed files with 27 additions and 0 deletions
|
@ -528,6 +528,7 @@ public class ScryfallImageSupportCards {
|
|||
add("ONE"); // Phyrexia: All Will Be One
|
||||
add("ONC"); // Phyrexia: All Will Be One Commander
|
||||
add("MOM"); // March of the Machine
|
||||
add("MOC"); // March of the Machine Commander
|
||||
}
|
||||
};
|
||||
|
||||
|
|
21
Mage.Sets/src/mage/sets/MarchOfTheMachineCommander.java
Normal file
21
Mage.Sets/src/mage/sets/MarchOfTheMachineCommander.java
Normal file
|
@ -0,0 +1,21 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MarchOfTheMachineCommander extends ExpansionSet {
|
||||
|
||||
private static final MarchOfTheMachineCommander instance = new MarchOfTheMachineCommander();
|
||||
|
||||
public static MarchOfTheMachineCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private MarchOfTheMachineCommander() {
|
||||
super("March of the Machine Commander", "ONC", ExpansionSet.buildDate(2023, 4, 21), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
|
@ -161,6 +161,7 @@ Masters Edition IV|MastersEditionIV|
|
|||
Masters 25|Masters25|
|
||||
Media Inserts|MediaInserts|
|
||||
March of the Machine|MarchOfTheMachine
|
||||
March of the Machine Commander|MarchOfTheMachineCommander
|
||||
Mercadian Masques|MercadianMasques|
|
||||
Mirage|Mirage|
|
||||
Mirrodin|Mirrodin|
|
||||
|
|
|
@ -48091,3 +48091,6 @@ Swiftwater Cliffs|March of the Machine|273|M||Land|||Swiftwater Cliffs enters th
|
|||
Thornwood Falls|March of the Machine|274|C||Land|||Thornwood Falls enters the battlefield tapped.$When Thornwood Falls enters the battlefield, you gain 1 life.${T}: Add {G} or {U}.|
|
||||
Tranquil Cove|March of the Machine|275|C||Land|||Tranquil Cove enters the battlefield tapped.$When Tranquil Cove enters the battlefield, you gain 1 life.${T}: Add {W} or {U}.|
|
||||
Wind-Scarred Crag|March of the Machine|276|C||Land|||Wind-Scarred Crag enters the battlefield tapped.$When Wind-Scarred Crag enters the battlefield, you gain 1 life.${T}: Add {R} or {W}.|
|
||||
Goro-Goro and Satoru|March of the Machine Commander|445|M|{B}{G}{U}|Legendary Creature - Goblin Human|3|4|Whenever one or more creatures you control that entered the battlefield this turn deal combat damage to a player, create a 5/5 red Dragon Spirit creature token with flying.${1}{R}: Creatures you control gain haste until end of turn.|
|
||||
Katilda and Lier|March of the Machine Commander|446|M|{G}{W}{U}|Legendary Creature - Human|3|3|Whenever you cast a Human spell, target instnat or sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost.|
|
||||
Slimefoot and Squee|March of the Machine Commander|447|M|{B}{R}{G}|Legendary Creature - Fungus Goblin|3|3|Whenever Slimefoot and Squee enters the battlefield or attacks, create a 1/1 green Saproling creature token.${1}{B}{R}{G}, Sacrifice a Saproling: Return Slimefoot and Squee and up to one other target creature card from your graveyard to the battlefield. Activate only as a sorcery.|
|
||||
|
|
|
@ -154,6 +154,7 @@ Magic: The Gathering-Commander|CMD|
|
|||
Magic: The Gathering-Conspiracy|CNS|
|
||||
Media Inserts|MBP|
|
||||
March of the Machine|MOM|
|
||||
March of the Machine Commander|MOC|
|
||||
Mirrodin Besieged|MBS|
|
||||
Masters Edition II|ME2|
|
||||
Masters Edition III|ME3|
|
||||
|
|
Loading…
Reference in a new issue