From 8b6f82e18f360cd286f3557ce9d1399ebeb3083d Mon Sep 17 00:00:00 2001 From: theelk801 Date: Thu, 19 Jan 2023 09:25:40 -0500 Subject: [PATCH] [ONE] Implement Bilious Skulldweller --- .../src/mage/cards/b/BiliousSkulldweller.java | 41 +++++++++++++++++++ .../src/mage/sets/PhyrexiaAllWillBeOne.java | 1 + 2 files changed, 42 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BiliousSkulldweller.java diff --git a/Mage.Sets/src/mage/cards/b/BiliousSkulldweller.java b/Mage.Sets/src/mage/cards/b/BiliousSkulldweller.java new file mode 100644 index 0000000000..54e7015e41 --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BiliousSkulldweller.java @@ -0,0 +1,41 @@ +package mage.cards.b; + +import java.util.UUID; + +import mage.MageInt; +import mage.constants.SubType; +import mage.abilities.keyword.DeathtouchAbility; +import mage.abilities.keyword.ToxicAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +/** + * @author TheElk801 + */ +public final class BiliousSkulldweller extends CardImpl { + + public BiliousSkulldweller(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}"); + + this.subtype.add(SubType.PHYREXIAN); + this.subtype.add(SubType.INSECT); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // Deathtouch + this.addAbility(DeathtouchAbility.getInstance()); + + // Toxic 1 + this.addAbility(new ToxicAbility(1)); + } + + private BiliousSkulldweller(final BiliousSkulldweller card) { + super(card); + } + + @Override + public BiliousSkulldweller copy() { + return new BiliousSkulldweller(this); + } +} diff --git a/Mage.Sets/src/mage/sets/PhyrexiaAllWillBeOne.java b/Mage.Sets/src/mage/sets/PhyrexiaAllWillBeOne.java index bf7afc7ad0..e28037967f 100644 --- a/Mage.Sets/src/mage/sets/PhyrexiaAllWillBeOne.java +++ b/Mage.Sets/src/mage/sets/PhyrexiaAllWillBeOne.java @@ -23,6 +23,7 @@ public final class PhyrexiaAllWillBeOne extends ExpansionSet { cards.add(new SetCardInfo("Apostle of Invasion", 3, Rarity.UNCOMMON, mage.cards.a.ApostleOfInvasion.class)); cards.add(new SetCardInfo("Archfiend of the Dross", 82, Rarity.RARE, mage.cards.a.ArchfiendOfTheDross.class)); cards.add(new SetCardInfo("Argentum Masticore", 222, Rarity.RARE, mage.cards.a.ArgentumMasticore.class)); + cards.add(new SetCardInfo("Bilious Skulldweller", 83, Rarity.UNCOMMON, mage.cards.b.BiliousSkulldweller.class)); cards.add(new SetCardInfo("Black Sun's Twilight", 84, Rarity.RARE, mage.cards.b.BlackSunsTwilight.class)); cards.add(new SetCardInfo("Blackcleave Cliffs", 248, Rarity.RARE, mage.cards.b.BlackcleaveCliffs.class)); cards.add(new SetCardInfo("Bloated Contaminator", 159, Rarity.RARE, mage.cards.b.BloatedContaminator.class));