[PL21] add set

This commit is contained in:
theelk801 2023-08-06 09:05:02 -04:00
parent 4fb0cc91d2
commit 4242f2b226
2 changed files with 30 additions and 0 deletions

View file

@ -486,6 +486,7 @@ public class ScryfallImageSupportCards {
add("KLR"); // Kaladesh Remastered
add("CMR"); // Commander Legends
add("CC1"); // Commander Collection: Green
add("PL21"); // Year of the Ox 2021
add("KHM"); // Kaldheim
add("KHC"); // Kaldheim Commander
add("TSR"); // Time Spiral Remastered

View file

@ -0,0 +1,29 @@
package mage.sets;
import mage.cards.ExpansionSet;
import mage.constants.Rarity;
import mage.constants.SetType;
/**
* https://scryfall.com/sets/pl21
*/
public class YearOfTheOx2021 extends ExpansionSet {
private static final YearOfTheOx2021 instance = new YearOfTheOx2021();
public static YearOfTheOx2021 getInstance() {
return instance;
}
private YearOfTheOx2021() {
super("Year of the Ox 2021", "PL21", ExpansionSet.buildDate(2021, 1, 25), SetType.PROMOTIONAL);
this.hasBoosters = false;
this.hasBasicLands = false;
cards.add(new SetCardInfo("Angrath, the Flame-Chained", 3, Rarity.MYTHIC, mage.cards.a.AngrathTheFlameChained.class));
cards.add(new SetCardInfo("Moraug, Fury of Akoum", 1, Rarity.MYTHIC, mage.cards.m.MoraugFuryOfAkoum.class));
cards.add(new SetCardInfo("Ox of Agonas", 2, Rarity.MYTHIC, mage.cards.o.OxOfAgonas.class));
cards.add(new SetCardInfo("Sethron, Hurloon General", "1*", Rarity.RARE, mage.cards.s.SethronHurloonGeneral.class));
cards.add(new SetCardInfo("Tahngarth, First Mate", 4, Rarity.RARE, mage.cards.t.TahngarthFirstMate.class));
}
}