mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
[NCC] added set
This commit is contained in:
parent
1c41e16e58
commit
92a9604ed4
5 changed files with 29 additions and 0 deletions
|
@ -508,6 +508,7 @@ public class ScryfallImageSupportCards {
|
|||
add("NEO"); // Kamigawa: Neon Dynasty
|
||||
add("NEC"); // Neon Dynasty Commander
|
||||
add("SNC"); // Streets of New Capenna
|
||||
add("NCC"); // New Capenna Commander
|
||||
add("SLX"); // Universes Within
|
||||
add("CLB"); // Commander Legends: Battle for Baldur's Gate
|
||||
}
|
||||
|
|
21
Mage.Sets/src/mage/sets/NewCapennaCommander.java
Normal file
21
Mage.Sets/src/mage/sets/NewCapennaCommander.java
Normal file
|
@ -0,0 +1,21 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NewCapennaCommander extends ExpansionSet {
|
||||
|
||||
private static final NewCapennaCommander instance = new NewCapennaCommander();
|
||||
|
||||
public static NewCapennaCommander getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private NewCapennaCommander() {
|
||||
super("New Capenna Commander", "NCC", ExpansionSet.buildDate(2022, 4, 29), SetType.SUPPLEMENTAL);
|
||||
this.hasBasicLands = false;
|
||||
}
|
||||
}
|
|
@ -203,6 +203,7 @@ Starter 1999|Starter1999|
|
|||
Starter 2000|Starter2000|
|
||||
Star Wars|StarWars|
|
||||
Streets of New Capenna|StreetsOfNewCapenna|
|
||||
New Capenna Commander|NewCapennaCommander|
|
||||
Strixhaven: School of Mages|StrixhavenSchoolOfMages|
|
||||
Stronghold|Stronghold|
|
||||
Super Series|SuperSeries|
|
||||
|
|
|
@ -43948,3 +43948,8 @@ Morphic Pool|Commander Legends: Battle for Baldur's Gate|357|R||Land|||Morphic P
|
|||
Reflecting Pool|Commander Legends: Battle for Baldur's Gate|358|R||Land|||{T}: Add one mana of any type that a land you control could produce.|
|
||||
Sea of Clouds|Commander Legends: Battle for Baldur's Gate|360|R||Land|||Sea of Clouds enters the battlefield tapped unless you have two or more opponents.${T}: Add {W} or {U}.|
|
||||
Spire Garden|Commander Legends: Battle for Baldur's Gate|361|R||Land|||Spire Garden enters the battlefield tapped unless you have two or more opponents.${T}: Add {R} or {G}.|
|
||||
Anhelo, the Painter|New Capenna Commander|186|M|{U}{B}{R}|Legendary Creature - Vampire Assassin|1|3|Deathtouch$The first instant or sorcery spell you cast each turn has casualty 2.|
|
||||
Henzie "Toolbox" Torre|New Capenna Commander|187|M|{B}{R}{G}|Legendary Creature - Devil Rogue|3|3|Each creature you cast with mana value 4 or greater has blitz. The blitz cost is equal to its mana cost.$Blitz costs you pay cost {1} less for each time you've cast your commander from the command zone this game.|
|
||||
Kamiz, Obscura Oculus|New Capenna Commander|188|M|{1}{W}{U}{B}|Legendary Creature - Cephalid Rogue|2|4|Whenever you attack, target attacking creature you can't be blocked this turn. It connives. Then choose another attacking creature with lesser power. That creature gains double strike until end of turn.|
|
||||
Kitt Kanto, Mayhem Diva|New Capenna Commander|189|M|{1}{R}{G}{W}|Legendary Creature - Cat Bard Druid|3|3|When Kitt Kanto enters the battlefield, create a 1/1 green and white Citizen creature token.$At the beginning of combat on each player's turn, you may tap two untapped creatures you control. When you do, target creature that player controls gets +2/+2 and gains trample until end of turn. Goad that creature.|
|
||||
Perrie, the Pulveriser|New Capenna Commander|190|M|{1}{G}{U}{W}|Legendary Creature - Rhino Soldier|3|3|When Perrie enters the battlefield, put a shield counter on target creature.$Whenever Perrie attacks, target creature you control gains trample and gets +X/+X, where X is the number of different kinds of counters among permanents you control.|
|
||||
|
|
|
@ -202,6 +202,7 @@ Shadows over Innistrad|SOI|
|
|||
Saviors of Kamigawa|SOK|
|
||||
Scars of Mirrodin|SOM|
|
||||
Streets of New Capenna|SNC|
|
||||
New Capenna Commander|NCC|
|
||||
Stronghold|STH|
|
||||
Super Series|SUS|
|
||||
Theros|THS|
|
||||
|
|
Loading…
Reference in a new issue