[BRO] Implemented Depth Charge Colossus

This commit is contained in:
Evan Kranzler 2022-10-30 18:31:03 -04:00
parent 0b0ad8e223
commit 85a69148ad
2 changed files with 48 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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));