From 85a69148ad8c43ab48a93cf74d7614e976ca4382 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sun, 30 Oct 2022 18:31:03 -0400 Subject: [PATCH] [BRO] Implemented Depth Charge Colossus --- .../src/mage/cards/d/DepthChargeColossus.java | 47 +++++++++++++++++++ Mage.Sets/src/mage/sets/TheBrothersWar.java | 1 + 2 files changed, 48 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/d/DepthChargeColossus.java diff --git a/Mage.Sets/src/mage/cards/d/DepthChargeColossus.java b/Mage.Sets/src/mage/cards/d/DepthChargeColossus.java new file mode 100644 index 0000000000..2df2da220e --- /dev/null +++ b/Mage.Sets/src/mage/cards/d/DepthChargeColossus.java @@ -0,0 +1,47 @@ +package mage.cards.d; + +import mage.MageInt; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.common.DontUntapInControllersUntapStepSourceEffect; +import mage.abilities.effects.common.UntapSourceEffect; +import mage.abilities.keyword.PrototypeAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class DepthChargeColossus extends CardImpl { + + public DepthChargeColossus(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{9}"); + + this.subtype.add(SubType.DREADNOUGHT); + this.power = new MageInt(9); + this.toughness = new MageInt(9); + + // Prototype {4}{U}{U} -- 6/6 + this.addAbility(new PrototypeAbility(this, "{4}{U}{U}", 6, 6)); + + // Depth Charge Colossus doesn't untap during your untap step. + this.addAbility(new SimpleStaticAbility(new DontUntapInControllersUntapStepSourceEffect())); + + // {3}: Untap Depth Charge Colossus. + this.addAbility(new SimpleActivatedAbility(new UntapSourceEffect(), new GenericManaCost(3))); + } + + private DepthChargeColossus(final DepthChargeColossus card) { + super(card); + } + + @Override + public DepthChargeColossus copy() { + return new DepthChargeColossus(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index a1aaee9ef0..94e31277c3 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -33,6 +33,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Blast Zone", 258, Rarity.RARE, mage.cards.b.BlastZone.class)); cards.add(new SetCardInfo("Brushland", 259, Rarity.RARE, mage.cards.b.Brushland.class)); cards.add(new SetCardInfo("Clay Revenant", 118, Rarity.COMMON, mage.cards.c.ClayRevenant.class)); + cards.add(new SetCardInfo("Depth Charge Colossus", 78, Rarity.COMMON, mage.cards.d.DepthChargeColossus.class)); cards.add(new SetCardInfo("Drafna, Founder of Lat-Nam", 47, Rarity.RARE, mage.cards.d.DrafnaFounderOfLatNam.class)); cards.add(new SetCardInfo("Feldon, Ronom Excavator", 135, Rarity.RARE, mage.cards.f.FeldonRonomExcavator.class)); cards.add(new SetCardInfo("Forest", 286, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));