mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[GN3] added set
This commit is contained in:
parent
10ee22d8ae
commit
0738af30ac
5 changed files with 32 additions and 0 deletions
|
@ -516,6 +516,7 @@ public class ScryfallImageSupportCards {
|
|||
add("DMU"); // Dominaria United
|
||||
add("DMC"); // Dominaria United Commander
|
||||
add("40K"); // Warhammer 40,000
|
||||
add("GN3"); // Game Night 2022
|
||||
}
|
||||
};
|
||||
|
||||
|
|
24
Mage.Sets/src/mage/sets/GameNight2022.java
Normal file
24
Mage.Sets/src/mage/sets/GameNight2022.java
Normal file
|
@ -0,0 +1,24 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* https://scryfall.com/sets/gn3
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class GameNight2022 extends ExpansionSet {
|
||||
|
||||
private static final GameNight2022 instance = new GameNight2022();
|
||||
|
||||
public static GameNight2022 getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private GameNight2022() {
|
||||
super("Game Night 2022", "GN3", ExpansionSet.buildDate(2019, 10, 14), SetType.SUPPLEMENTAL);
|
||||
this.hasBoosters = false;
|
||||
this.hasBasicLands = false; //temporary
|
||||
}
|
||||
}
|
|
@ -102,6 +102,7 @@ Future Sight|FutureSight|
|
|||
Game Day|GameDay|
|
||||
Game Night|GameNight|
|
||||
Game Night 2019|GameNight2019|
|
||||
Game Night 2022|GameNight2022|
|
||||
Gatecrash|Gatecrash|
|
||||
Global Series: Jiang Yanggu & Mu Yanling|GlobalSeriesJiangYangguAndMuYanling|
|
||||
Grand Prix|GrandPrixPromos|
|
||||
|
|
|
@ -45688,3 +45688,8 @@ Temple of Silence|Dominaria United Commander|237|R||Land|||Temple of Silence ent
|
|||
Temple of Triumph|Dominaria United Commander|238|R||Land|||Temple of Triumph enters the battlefield tapped.$When Temple of Triumph enters the battlefield, scry 1.${T}: Add {R} or {W}.|
|
||||
Terramorphic Expanse|Dominaria United Commander|239|C||Land|||{T}, Sacrifice Terramorphic Expanse: Search your library for a basic land card, put it onto the battlefield tapped, then shuffle.|
|
||||
Tyrite Sanctum|Dominaria United Commander|240|R||Land|||{T}: Add {C}.${2}, {T}: Target legendary creature becomes a God in addition to its other types. Put a +1/+1 counter on it.${4}, {T}, Sacrifice Tyrite Sanctum: Put an indestructible counter on target God.|
|
||||
Zamriel, Seraph of Steel|Game Night 2022|1|M|{2}{W}{W}|Legendary Creature - Angel|3|4|Flying$As long as it's your turn, equipped creatures you control have indestructible.|
|
||||
Maeve, Insidious Singer|Game Night 2022|2|M|{2}{U}{U}|Legendary Creature - Siren|3|4|{2}{U}: Goad target creature. Whenever that creature attacks one of your opponents this turn, you draw a card.|
|
||||
Vogar, Necropolis Tyrant|Game Night 2022|3|M|{3}{B}{B}|Legendary Creature - Zombie Giant|4|4|Menace$Whenever another creature dies during your turn, put a +1/+1 counter on Vogar, Necropolis Tyrant.$When Vogar dies, draw a card for each +1/+1 counter on it.|
|
||||
Nogi, Draco-Zealot|Game Night 2022|4|M|{1}{R}{R}|Legendary Creature - Kobold Shaman|3|3|Dragon spells you cast cost {1} less to cast.$Whenever Nogi, Draco-Zealot attacks, if you control three or more Dragons, until end of turn, Nogi becomes a Dragon with base power and toughness 5/5 and gains flying.|
|
||||
Imaryll, Elfhame Elite|Game Night 2022|6|M|{2}{G}{G}|Legendary Creature - Elf Warrior|3|3|Whenever Imaryll, Elfhame Elite attacks, it gets +X/+X until end of turn, where X is the number of other Elves you control.$You may have Imaryll assign its combat damage as though it weren't blocked.|
|
||||
|
|
|
@ -160,6 +160,7 @@ Masters Edition|MED|
|
|||
Game Day|MGDC|
|
||||
Game Night|GNT|
|
||||
Game Night 2019|GN2|
|
||||
Game Night 2022|GN3|
|
||||
Mirage|MIR|
|
||||
Launch Party|MLP|
|
||||
Modern Horizons|MH1|
|
||||
|
|
Loading…
Reference in a new issue