mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[J22] added set
This commit is contained in:
parent
f8ac384d56
commit
d97981182e
5 changed files with 33 additions and 0 deletions
|
@ -521,6 +521,7 @@ public class ScryfallImageSupportCards {
|
|||
add("BRO"); // The Brothers' War
|
||||
add("BRC"); // The Brothers' War Commander
|
||||
add("BOT"); // Transformers
|
||||
add("J22"); // Jumpstart 2022
|
||||
}
|
||||
};
|
||||
|
||||
|
|
26
Mage.Sets/src/mage/sets/Jumpstart2022.java
Normal file
26
Mage.Sets/src/mage/sets/Jumpstart2022.java
Normal file
|
@ -0,0 +1,26 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Jumpstart2022 extends ExpansionSet {
|
||||
|
||||
private static final Jumpstart2022 instance = new Jumpstart2022();
|
||||
|
||||
public static Jumpstart2022 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private Jumpstart2022() {
|
||||
super("Jumpstart 2022", "J22", ExpansionSet.buildDate(2020, 12, 2), SetType.SUPPLEMENTAL);
|
||||
this.blockName = "Jumpstart";
|
||||
this.hasBasicLands = false;
|
||||
|
||||
cards.add(new SetCardInfo("Coldsteel Heart", 94, Rarity.UNCOMMON, mage.cards.c.ColdsteelHeart.class));
|
||||
cards.add(new SetCardInfo("Kiki-Jiki, Mirror Breaker", 79, Rarity.MYTHIC, mage.cards.k.KikiJikiMirrorBreaker.class));
|
||||
}
|
||||
}
|
|
@ -129,6 +129,7 @@ Judge Promo|JudgePromo|
|
|||
Judgment|Judgment|
|
||||
Jumpstart|Jumpstart|
|
||||
Jumpstart: Historic Horizons|JumpstartHistoricHorizons|
|
||||
Jumpstart 2022|Jumpstart2022|
|
||||
Kaladesh|Kaladesh|
|
||||
Kaldheim|Kaldheim|
|
||||
Kaldheim Commander|KaldheimCommander|
|
||||
|
|
|
@ -46266,3 +46266,7 @@ Soundwave, Sonic Spy|Transformers|14|M|{1}{W}{U}{B}|Legendary Artifact Creature
|
|||
Soundwave, Superior Champion|Transformers|14|M||Legendary Artifact|||Whenever you cast a spell with an odd mana value, convert Soundwave. If you do, create Ravage, a legendary 3/3 black Robot artifact creature token with menace and deathtouch.$Whenever you cast a spell with an even mana value, convert Soundwave. If you do, create Laserbeak, a 2/2 blue Robot artifact creature token with flying and hexproof.|
|
||||
Ultra Magnus, Tactician|Transformers|15|M|{4}{R}{G}{W}|Legendary Artifact Creature - Robot|7|7|More Than Meets the Eye {2}{R}{G}{W}$Ward {2}$Whenever Ultra Magnus attacks, you may put an artifact creature card from your hand onto the battlefield tapped and attacking. If you do, convert Ultra Magnus at end of combat.|
|
||||
Ultra Magnus, Armored Carrier|Transformers|15|M||Legendary Artifact - Vehicle|4|7|Living metal$Haste$Formidable -- Whenever Ultra Magnus attacks, attacking creatures you control gain indestructible until end of turn. If htose creatures have total power 8 or greater, convert Ultra Magnus.|
|
||||
Isu the Abominable|Jump Start 2022|12|M|{3}{U}{U}|Legendary Snow Creature - Yeti|5|5|You may look at the top card of your library any time.$You may play snow lands and cast snow spells from the top of your library.$Whenever another snow permanent enters the battlefield under your control, you may pay {G}, {W}, or {U}. If you do, put a +1/+1 counter on Isu the Abominable.|
|
||||
Ardoz, Cobbler of Wars|Jump Start 2022|29|R|{1}{R}|Legendary Creature - Goblin Shaman|1|1|Haste$Whenever Ardoz, Cobbler of Wars or another creature enters the battlefield under your control, that creature gets +2/+0 until end of turn.${3}{R}: Create a 1/1 red Goblin creature token with haste. Activate only as sorcery.|
|
||||
Kiki-Jiki, Mirror Breaker|Jump Start 2022|79|M|{2}{R}{R}{R}|Legendary Creature - Goblin Shaman|2|2|Haste${T}: Create a token that's a copy of target nonlegendary creature you control, except it has haste. Sacrifice it at the beginning of the next end step.|
|
||||
Coldsteel Heart|Jump Start 2022|94|U|{2}|Snow Artifact|||Coldsteel Heart enters the battlefield tapped.$As Coldsteel Heart enters the battlefield, choose a color.${T}: Add one mana of the chosen color.|
|
||||
|
|
|
@ -128,6 +128,7 @@ Judge Promo|JR|
|
|||
Judgment|JUD|
|
||||
Jumpstart|JMP|
|
||||
Jumpstart: Historic Horizons|J21|
|
||||
Jumpstart 2022|J22|
|
||||
Kaladesh|KLD|
|
||||
Kaldheim|KHM|
|
||||
Kaldheim Commander|KHC|
|
||||
|
|
Loading…
Reference in a new issue