mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
Merge pull request #5053 from Sedictious/Battlebond_Boos
Fix Battlebond Partner distribution
This commit is contained in:
commit
fa13786fab
3 changed files with 128 additions and 6 deletions
|
|
@ -9,23 +9,26 @@ import mage.constants.SetType;
|
|||
* @author TheElk801
|
||||
*/
|
||||
public final class Battlebond extends ExpansionSet {
|
||||
|
||||
|
||||
private static final Battlebond instance = new Battlebond();
|
||||
|
||||
|
||||
public static Battlebond getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Battlebond() {
|
||||
super("Battlebond", "BBD", ExpansionSet.buildDate(2018, 6, 8), SetType.SUPPLEMENTAL);
|
||||
this.blockName = "Battlebond";
|
||||
this.hasBasicLands = false;
|
||||
this.hasBoosters = true;
|
||||
this.hasPartnerMechanic = true;
|
||||
this.numBoosterLands = 0;
|
||||
this.numBoosterCommon = 11;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
|
||||
cards.add(new SetCardInfo("Aim High", 189, Rarity.UNCOMMON, mage.cards.a.AimHigh.class));
|
||||
cards.add(new SetCardInfo("Angel of Retribution", 86, Rarity.UNCOMMON, mage.cards.a.AngelOfRetribution.class));
|
||||
cards.add(new SetCardInfo("Angelic Chorus", 87, Rarity.RARE, mage.cards.a.AngelicChorus.class));
|
||||
|
|
@ -283,4 +286,5 @@ public final class Battlebond extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Zndrsplt's Judgment", 43, Rarity.RARE, mage.cards.z.ZndrspltsJudgment.class));
|
||||
cards.add(new SetCardInfo("Zndrsplt, Eye of Wisdom", 5, Rarity.RARE, mage.cards.z.ZndrspltEyeOfWisdom.class));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue