Skip to content

Commit

Permalink
[BIG] add set
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Feb 24, 2024
1 parent c45c78b commit 71b524b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 24 additions & 0 deletions Mage.Sets/src/mage/sets/TheBigScore.java
Original file line number Diff line number Diff line change
@@ -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;
}
}
1 change: 1 addition & 0 deletions Utils/known-sets.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
2 changes: 2 additions & 0 deletions Utils/mtg-cards-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}|
1 change: 1 addition & 0 deletions Utils/mtg-sets-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit 71b524b

Please sign in to comment.