From a661b0188d5d47b4ddeb511ec7568ca25195a0dd Mon Sep 17 00:00:00 2001 From: chesse20 Date: Sun, 21 May 2023 21:03:30 -0700 Subject: [PATCH] [PLG21] adds Love Your LGS 2021 Promos (#10400) * add plg21 cards * Fix date to 2021 * adds non full use various * date fix part 2 --- Mage.Sets/src/mage/sets/LoveYourLGS2021.java | 34 ++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/LoveYourLGS2021.java diff --git a/Mage.Sets/src/mage/sets/LoveYourLGS2021.java b/Mage.Sets/src/mage/sets/LoveYourLGS2021.java new file mode 100644 index 0000000000..2773424ac7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/LoveYourLGS2021.java @@ -0,0 +1,34 @@ +package mage.sets; + +import mage.cards.ExpansionSet; +import mage.constants.Rarity; +import mage.constants.SetType; + +/** + * https://scryfall.com/sets/plg21 + */ +public class LoveYourLGS2021 extends ExpansionSet { + + private static final LoveYourLGS2021 instance = new LoveYourLGS2021(); + + public static LoveYourLGS2021 getInstance() { + return instance; + } + + private LoveYourLGS2021() { + super("Love Your LGS 2021", "PLG21", ExpansionSet.buildDate(2021, 6, 22), SetType.PROMOTIONAL); + this.hasBoosters = false; + this.hasBasicLands = false; + + cards.add(new SetCardInfo("Aven Mindcensor", 1, Rarity.RARE, mage.cards.a.AvenMindcensor.class)); + cards.add(new SetCardInfo("Bolas's Citadel", 3, Rarity.RARE, mage.cards.b.BolassCitadel.class)); + cards.add(new SetCardInfo("Dig Through Time", 2, Rarity.RARE, mage.cards.d.DigThroughTime.class)); + cards.add(new SetCardInfo("Goblin Guide", 4, Rarity.RARE, mage.cards.g.GoblinGuide.class)); + cards.add(new SetCardInfo("Orb of Dragonkind", "J1", Rarity.RARE, mage.cards.o.OrbOfDragonkind.class,NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Orb of Dragonkind", "J2", Rarity.RARE, mage.cards.o.OrbOfDragonkind.class,NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Orb of Dragonkind", "J3", Rarity.RARE, mage.cards.o.OrbOfDragonkind.class,NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Path of Ancestry", "C3", Rarity.RARE, mage.cards.p.PathOfAncestry.class)); + cards.add(new SetCardInfo("Scavenging Ooze", 5, Rarity.RARE, mage.cards.s.ScavengingOoze.class)); + cards.add(new SetCardInfo("Xantcha, Sleeper Agent", "C1", Rarity.RARE, mage.cards.x.XantchaSleeperAgent.class)); + cards.add(new SetCardInfo("Yuriko, the Tiger's Shadow", "C2", Rarity.RARE, mage.cards.y.YurikoTheTigersShadow.class)); } +}