From f2873d3ce045d02b3ea3f21f92cd8dbf3decd704 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Tue, 26 Sep 2017 14:12:25 -0400 Subject: [PATCH] Implemented Viscerid Drone --- Mage.Sets/src/mage/cards/v/VisceridDrone.java | 107 ++++++++++++++++++ Mage.Sets/src/mage/sets/Alliances.java | 1 + Mage.Sets/src/mage/sets/MastersEditionII.java | 1 + 3 files changed, 109 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/v/VisceridDrone.java diff --git a/Mage.Sets/src/mage/cards/v/VisceridDrone.java b/Mage.Sets/src/mage/cards/v/VisceridDrone.java new file mode 100644 index 00000000000..be780f4290b --- /dev/null +++ b/Mage.Sets/src/mage/cards/v/VisceridDrone.java @@ -0,0 +1,107 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.cards.v; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.CompositeCost; +import mage.abilities.costs.common.SacrificeTargetCost; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.constants.SubType; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SuperType; +import mage.filter.common.FilterControlledPermanent; +import mage.filter.common.FilterCreaturePermanent; +import mage.filter.predicate.Predicates; +import mage.filter.predicate.mageobject.CardTypePredicate; +import mage.filter.predicate.mageobject.SubtypePredicate; +import mage.filter.predicate.mageobject.SupertypePredicate; +import mage.target.common.TargetControlledCreaturePermanent; +import mage.target.common.TargetControlledPermanent; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author TheElk801 + */ +public class VisceridDrone extends CardImpl { + + private static final FilterCreaturePermanent filter1 = new FilterCreaturePermanent("nonartifact creature"); + private static final FilterControlledPermanent filter2 = new FilterControlledPermanent("Swamp"); + private static final FilterControlledPermanent filter3 = new FilterControlledPermanent("snow Swamp"); + + static { + filter1.add(Predicates.not(new CardTypePredicate(CardType.ARTIFACT))); + filter2.add(new SubtypePredicate(SubType.SWAMP)); + filter3.add(new SubtypePredicate(SubType.SWAMP)); + filter3.add(new SupertypePredicate(SuperType.SNOW)); + } + + public VisceridDrone(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}"); + + this.subtype.add(SubType.HOMARID); + this.subtype.add(SubType.DRONE); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // {tap}, Sacrifice a creature and a Swamp: Destroy target nonartifact creature. It can't be regenerated. + Ability ability = new SimpleActivatedAbility(new DestroyTargetEffect(true), new TapSourceCost()); + ability.addCost(new CompositeCost( + new SacrificeTargetCost(new TargetControlledCreaturePermanent()), + new SacrificeTargetCost(new TargetControlledPermanent(filter2)), + "Sacrifice a creature and a Swamp" + )); + ability.addTarget(new TargetCreaturePermanent(filter1)); + this.addAbility(ability); + + // {tap}, Sacrifice a creature and a snow Swamp: Destroy target creature. It can't be regenerated. + ability = new SimpleActivatedAbility(new DestroyTargetEffect(true), new TapSourceCost()); + ability.addCost(new CompositeCost( + new SacrificeTargetCost(new TargetControlledCreaturePermanent()), + new SacrificeTargetCost(new TargetControlledPermanent(filter3)), + "Sacrifice a creature and a snow Swamp" + )); + ability.addTarget(new TargetCreaturePermanent()); + this.addAbility(ability); + } + + public VisceridDrone(final VisceridDrone card) { + super(card); + } + + @Override + public VisceridDrone copy() { + return new VisceridDrone(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Alliances.java b/Mage.Sets/src/mage/sets/Alliances.java index 24e8d98a0fb..6560316d8ab 100644 --- a/Mage.Sets/src/mage/sets/Alliances.java +++ b/Mage.Sets/src/mage/sets/Alliances.java @@ -153,6 +153,7 @@ public class Alliances extends ExpansionSet { cards.add(new SetCardInfo("Varchild's War-Riders", 122, Rarity.RARE, mage.cards.v.VarchildsWarRiders.class)); cards.add(new SetCardInfo("Viscerid Armor", 60, Rarity.COMMON, mage.cards.v.VisceridArmor.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Viscerid Armor", 61, Rarity.COMMON, mage.cards.v.VisceridArmor.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Viscerid Drone", 62, Rarity.UNCOMMON, mage.cards.v.VisceridDrone.class)); cards.add(new SetCardInfo("Wandering Mage", 198, Rarity.RARE, mage.cards.w.WanderingMage.class)); cards.add(new SetCardInfo("Whip Vine", 89, Rarity.COMMON, WhipVine.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Whip Vine", 90, Rarity.COMMON, WhipVine.class, NON_FULL_USE_VARIOUS)); diff --git a/Mage.Sets/src/mage/sets/MastersEditionII.java b/Mage.Sets/src/mage/sets/MastersEditionII.java index d59211cf3f2..354fd8c3f3f 100644 --- a/Mage.Sets/src/mage/sets/MastersEditionII.java +++ b/Mage.Sets/src/mage/sets/MastersEditionII.java @@ -245,6 +245,7 @@ public class MastersEditionII extends ExpansionSet { cards.add(new SetCardInfo("Tundra", 239, Rarity.RARE, mage.cards.t.Tundra.class)); cards.add(new SetCardInfo("Underground Sea", 240, Rarity.RARE, mage.cards.u.UndergroundSea.class)); cards.add(new SetCardInfo("Viscerid Armor", 72, Rarity.COMMON, mage.cards.v.VisceridArmor.class)); + cards.add(new SetCardInfo("Viscerid Drone", 73, Rarity.UNCOMMON, mage.cards.v.VisceridDrone.class)); cards.add(new SetCardInfo("Wall of Kelp", 74, Rarity.COMMON, mage.cards.w.WallOfKelp.class)); cards.add(new SetCardInfo("Warning", 38, Rarity.COMMON, mage.cards.w.Warning.class)); cards.add(new SetCardInfo("Whiteout", 185, Rarity.COMMON, mage.cards.w.Whiteout.class));