Skip to content

Commit

Permalink
[BLB] add set
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Feb 24, 2024
1 parent 71b524b commit 41b443b
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ public class ScryfallImageSupportCards {
add("OTJ"); // Outlaws of Thunder Junction
add("BIG"); // The Big Score
add("MH3"); // Modern Horizons 3
add("BLB"); // Bloomburrow

// Custom sets using Scryfall images - must provide a direct link for each card in directDownloadLinks
add("CALC"); // Custom Alchemized versions of existing cards
Expand Down
26 changes: 26 additions & 0 deletions Mage.Sets/src/mage/sets/Bloomburrow.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package mage.sets;

import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;

/**
* @author TheElk801
*/
public final class Bloomburrow extends ExpansionSet {

private static final Bloomburrow instance = new Bloomburrow();

public static Bloomburrow getInstance() {
return instance;
}

private Bloomburrow() {
super("Bloomburrow", "BLB", ExpansionSet.buildDate(2024, 8, 2), SetType.EXPANSION);
this.blockName = "Bloomburrow"; // for sorting in GUI
this.hasBasicLands = true;
this.hasBoosters = false; // temporary

cards.add(new SetCardInfo("Mountain", 274, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
}
}
3 changes: 1 addition & 2 deletions Mage.Sets/src/mage/sets/TheBigScore.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package mage.sets;

import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;

/**
Expand All @@ -16,7 +15,7 @@ public static TheBigScore getInstance() {
}

private TheBigScore() {
super("The Big Score", "BIG", ExpansionSet.buildDate(2024, 4,19), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
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;
Expand Down
1 change: 1 addition & 0 deletions Utils/known-sets.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Avacyn Restored|AvacynRestored|
Battlebond|Battlebond|
Battle for Zendikar|BattleForZendikar|
Betrayers of Kamigawa|BetrayersOfKamigawa|
Bloomburrow|Bloomburrow|
Born of the Gods|BornOfTheGods|
Champions of Kamigawa|ChampionsOfKamigawa|
Champs|Champs|
Expand Down
5 changes: 5 additions & 0 deletions Utils/mtg-cards-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52422,3 +52422,8 @@ 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}|
Lumra, Bellow of the Woods|Bloomburrow|183|M|{4}{G}{G}|Legendary Creature - Elemental Bear|*|*|Vigilance, reach$Lumra, Bellow of the Woods's power and toughness are each equal to the number of lands you control.$When Lumra enters, mill four cards. Then return all land cards from your graveyard to the battlefield tapped.|
Mabel, Heir to Cragflame|Bloomburrow|224|R|{1}{R}{W}|Legendary Creature - Mouse Soldier|3|3|Other Mice you control get +1/+1.$When Mabel, Heir to Cragflame enters, create Cragflame, a legendary colorless Equipment artifact token with "Equipped creature gets +1/+1 and has vigilance, trample, and haste" and equip {2}.|
Mountain|Bloomburrow|274|C||Basic Land - Mountain|||({T}: Add {R}.)|
Bria, Riptide Rogue|Bloomburrow|379|M|{2}{U}{R}|Legendary Creature - Otter Rogue|3|3|Prowess$Other creatures you control have prowess.$Whenever you cast a noncreature spell, target creature you control can't be blocked this turn.|
Byrke, Long Ear of the Law|Bloomburrow|380|M|{4}{G}{W}|Legendary Creature - Rabbit Soldier|4|4|Vigilance$When Byrke, Long Ear of the Law enters, put a +1/+1 counter on each of up to two target creatures.$Whenever a creature you control with a +1/+1 counter on it attacks, double the number of +1/+1 counters on it.|
1 change: 1 addition & 0 deletions Utils/mtg-sets-data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Born of the Gods|BNG|
Betrayers of Kamigawa|BOK|
Battle Royale Box Set|BRB|
Beatdown Box Set|BTD|
Bloomburrow|BLB|
Commander 2013 Edition|C13|
Commander 2014 Edition|C14|
Commander 2015 Edition|C15|
Expand Down

0 comments on commit 41b443b

Please sign in to comment.