mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[VOC] added set
This commit is contained in:
parent
653df7737b
commit
04646a5a62
5 changed files with 28 additions and 0 deletions
|
@ -502,6 +502,7 @@ public class ScryfallImageSupportCards {
|
|||
add("MID"); // Innistrad: Midnight Hunt
|
||||
add("MIC"); // Midnight Hunt Commander
|
||||
add("VOW"); // Innistrad: Crimson Vow
|
||||
add("VOC"); // Crimson Vow Commander
|
||||
}
|
||||
};
|
||||
|
||||
|
|
22
Mage.Sets/src/mage/sets/CrimsonVowCommander.java
Normal file
22
Mage.Sets/src/mage/sets/CrimsonVowCommander.java
Normal file
|
@ -0,0 +1,22 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CrimsonVowCommander extends ExpansionSet {
|
||||
|
||||
private static final CrimsonVowCommander instance = new CrimsonVowCommander();
|
||||
|
||||
public static CrimsonVowCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private CrimsonVowCommander() {
|
||||
super("Crimson Vow Commander", "VOC", ExpansionSet.buildDate(2021, 11, 19), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
|
@ -116,6 +116,7 @@ Innistrad|Innistrad|
|
|||
Innistrad: Midnight Hunt|InnistradMidnightHunt|
|
||||
Midnight Hunt Commander|MidnightHuntCommander|
|
||||
Innistrad: Crimson Vow|InnistradCrimsonVow|
|
||||
Crimson Vow Commander|CrimsonVowCommander|
|
||||
Invasion|Invasion|
|
||||
Ixalan|Ixalan|
|
||||
Journey into Nyx|JourneyIntoNyx|
|
||||
|
|
|
@ -43036,3 +43036,6 @@ Island|Innistrad: Crimson Vow|270|C||Basic Land - Island|||({T}: Add {U}.)|
|
|||
Swamp|Innistrad: Crimson Vow|272|C||Basic Land - Swamp|||({T}: Add {B}.)|
|
||||
Mountain|Innistrad: Crimson Vow|274|C||Basic Land - Mountain|||({T}: Add {R}.)|
|
||||
Forest|Innistrad: Crimson Vow|276|C||Basic Land - Forest|||({T}: Add {G}.)|
|
||||
Millicent, Restless Revenant|Crimson Vow Commander|1|M|{5}{W}{U}|Legendary Creature - Spirit Soldier|4|4|This spell costs {1} less to cast for each Spirit you control.$Flying$Whenever Millicent, Restless Revenant or another nontoken Spirit you control dies or deals damage to a player, create a 1/1 white Spirit creature token with flying.|
|
||||
Strefan, Maurer Progenitor|Crimson Vow Commander|2|M|{2}{B}{R}|Legendary Creature - Vampire Noble|3|2|Flying$We the beginning of your end step, create a Blood token for each player who lost life this turn.$Whenever Strefan, Maurer Progenitor attacks, you may sacrifice two Blood tokens. If you do, you may put a Vampire card from your hand onto the battlefield tapped and attacking. It gains indestructible until end of turn.|
|
||||
Wedding Ring|Crimson Vow Commander|32|M|{2}{W}{W}|Artifact|||When Wedding Ring enters the battlefield, if it was cast, target opponent creates a token that's a copy of it.$Whenever an opponent who controls an artifact named Wedding Ring draws a card during their turn, you draw a card.$Whenever an opponent who controls an artifact named Wedding Ring gains life during their turn, you gain that much life.|
|
||||
|
|
|
@ -118,6 +118,7 @@ Innistrad|ISD|
|
|||
Innistrad: Midnight Hunt|MID|
|
||||
Midnight Hunt Commander|MIC|
|
||||
Innistrad: Crimson Vow|VOW|
|
||||
Crimson Vow Commander|VOC|
|
||||
Journey into Nyx|JOU|
|
||||
Judge Promo|JR|
|
||||
Judgment|JUD|
|
||||
|
|
Loading…
Reference in a new issue