mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[BIG] add set
This commit is contained in:
parent
c45c78b9af
commit
71b524be1b
5 changed files with 29 additions and 0 deletions
|
|
@ -544,6 +544,7 @@ public class ScryfallImageSupportCards {
|
|||
add("MKC"); // Murders at Karlov Manor Commander
|
||||
add("CLU"); // Ravnica: Clue Edition
|
||||
add("OTJ"); // Outlaws of Thunder Junction
|
||||
add("BIG"); // The Big Score
|
||||
add("MH3"); // Modern Horizons 3
|
||||
|
||||
// Custom sets using Scryfall images - must provide a direct link for each card in directDownloadLinks
|
||||
|
|
|
|||
24
Mage.Sets/src/mage/sets/TheBigScore.java
Normal file
24
Mage.Sets/src/mage/sets/TheBigScore.java
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TheBigScore extends ExpansionSet {
|
||||
|
||||
private static final TheBigScore instance = new TheBigScore();
|
||||
|
||||
public static TheBigScore getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
private TheBigScore() {
|
||||
super("The Big Score", "BIG", ExpansionSet.buildDate(2024, 4,19), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
|
||||
this.blockName = "Outlaws of Thunder Junction";
|
||||
this.hasBasicLands = false;
|
||||
this.hasBoosters = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -192,6 +192,7 @@ Oath of the Gatewatch|OathOfTheGatewatch|
|
|||
Odyssey|Odyssey|
|
||||
Onslaught|Onslaught|
|
||||
Outlaws of Thunder Junction|OutlawsOfThunderJunction|
|
||||
The Big Score|TheBigScore|
|
||||
Phyrexia: All Will Be One|PhyrexiaAllWillBeOne|
|
||||
Phyrexia: All Will Be One Commander|PhyrexiaAllWillBeOneCommander|
|
||||
Planar Chaos|PlanarChaos|
|
||||
|
|
|
|||
|
|
@ -52420,3 +52420,5 @@ Island|Modern Horizons 3|305|C||Basic Land - Island|||({T}: Add {U}.)|
|
|||
Swamp|Modern Horizons 3|306|C||Basic Land - Swamp|||({T}: Add {B}.)|
|
||||
Mountain|Modern Horizons 3|307|C||Basic Land - Mountain|||({T}: Add {R}.)|
|
||||
Forest|Modern Horizons 3|308|C||Basic Land - Forest|||({T}: Add {G}.)|
|
||||
Nexus of Becoming|The Big Score|25|M|{6}|Artifact|||At the beginning of combat on your turn, draw a card. Then you may exile an artifact or creature card from your hand. If you do, create a token that's a copy of the exiled card, except it's a 3/3 Golem artifact creature in addition to its other types.|
|
||||
Sword of Wealth and Power|The Big Score|26|M|{3}|Artifact- Equipment|||Equipped creature gets +2/+2 and has protection from instants and from sorceries.$Whenever equipped creature deals combat damage to a player, create a Treasure token. When you next cast an instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.$Equip {2}|
|
||||
|
|
|
|||
|
|
@ -194,6 +194,7 @@ Odyssey|ODY|
|
|||
Oath of the Gatewatch|OGW|
|
||||
Onslaught|ONS|
|
||||
Outlaws of Thunder Junction|OTJ|
|
||||
The Big Score|BIG|
|
||||
Magic Origins|ORI|
|
||||
Phyrexia: All Will Be One|ONE|
|
||||
Phyrexia: All Will Be One Commander|ONC|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue