From 5f78483f46537caf451b963fdafe94ab1a5cb3de Mon Sep 17 00:00:00 2001 From: magenoxx Date: Sun, 7 Aug 2011 15:38:06 +0400 Subject: [PATCH] [M12] Arbalest Elite --- .../championsofkamigawa/CloudcrestLake.java | 8 +- .../LanternLitGraveyard.java | 6 +- .../mage/sets/magic2012/ArbalestElite.java | 78 +++++++++++++++++++ ...ct.java => SkipNextUntapSourceEffect.java} | 15 ++-- .../effects/common/UntapSourceEffect.java | 10 +-- 5 files changed, 97 insertions(+), 20 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/magic2012/ArbalestElite.java rename Mage/src/mage/abilities/effects/common/{SkipUntapSourceEffect.java => SkipNextUntapSourceEffect.java} (65%) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/CloudcrestLake.java b/Mage.Sets/src/mage/sets/championsofkamigawa/CloudcrestLake.java index 4bd8ab4385..0ec3ca51ab 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/CloudcrestLake.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/CloudcrestLake.java @@ -29,14 +29,12 @@ package mage.sets.championsofkamigawa; import java.util.UUID; -import mage.Constants; import mage.Constants.CardType; import mage.Constants.Rarity; import mage.abilities.Ability; -import mage.abilities.effects.common.SkipUntapSourceEffect; +import mage.abilities.effects.common.SkipNextUntapSourceEffect; import mage.abilities.mana.BlueManaAbility; import mage.abilities.mana.ColorlessManaAbility; -import mage.abilities.mana.SimpleManaAbility; import mage.abilities.mana.WhiteManaAbility; import mage.cards.CardImpl; @@ -50,10 +48,10 @@ public class CloudcrestLake extends CardImpl { this.expansionSetCode = "CHK"; this.addAbility(new ColorlessManaAbility()); Ability whiteManaAbility = new WhiteManaAbility(); - whiteManaAbility.addEffect(new SkipUntapSourceEffect()); + whiteManaAbility.addEffect(new SkipNextUntapSourceEffect()); this.addAbility(whiteManaAbility); Ability blueManaAbility = new BlueManaAbility(); - blueManaAbility.addEffect(new SkipUntapSourceEffect()); + blueManaAbility.addEffect(new SkipNextUntapSourceEffect()); this.addAbility(blueManaAbility); } diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/LanternLitGraveyard.java b/Mage.Sets/src/mage/sets/championsofkamigawa/LanternLitGraveyard.java index f919f09b93..b8cd374329 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/LanternLitGraveyard.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/LanternLitGraveyard.java @@ -31,7 +31,7 @@ import java.util.UUID; import mage.Constants.CardType; import mage.Constants.Rarity; import mage.abilities.Ability; -import mage.abilities.effects.common.SkipUntapSourceEffect; +import mage.abilities.effects.common.SkipNextUntapSourceEffect; import mage.abilities.mana.BlueManaAbility; import mage.abilities.mana.ColorlessManaAbility; import mage.abilities.mana.RedManaAbility; @@ -48,10 +48,10 @@ public class LanternLitGraveyard extends CardImpl { this.expansionSetCode = "CHK"; this.addAbility(new ColorlessManaAbility()); Ability blueManaAbility = new BlueManaAbility(); - blueManaAbility.addEffect(new SkipUntapSourceEffect()); + blueManaAbility.addEffect(new SkipNextUntapSourceEffect()); this.addAbility(blueManaAbility); Ability redManaAbility = new RedManaAbility(); - redManaAbility.addEffect(new SkipUntapSourceEffect()); + redManaAbility.addEffect(new SkipNextUntapSourceEffect()); this.addAbility(redManaAbility); } diff --git a/Mage.Sets/src/mage/sets/magic2012/ArbalestElite.java b/Mage.Sets/src/mage/sets/magic2012/ArbalestElite.java new file mode 100644 index 0000000000..471379f086 --- /dev/null +++ b/Mage.Sets/src/mage/sets/magic2012/ArbalestElite.java @@ -0,0 +1,78 @@ +/* + * 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.sets.magic2012; + +import java.util.UUID; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.DamageTargetEffect; +import mage.abilities.effects.common.SkipNextUntapSourceEffect; +import mage.cards.CardImpl; +import mage.target.common.TargetAttackingOrBlockingCreature; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author nantuko + */ +public class ArbalestElite extends CardImpl { + + public ArbalestElite(UUID ownerId) { + super(ownerId, 5, "Arbalest Elite", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{W}{W}"); + this.expansionSetCode = "M12"; + this.subtype.add("Human"); + this.subtype.add("Archer"); + + this.color.setWhite(true); + this.power = new MageInt(2); + this.toughness = new MageInt(3); + + // {2}{W}, {tap}: Arbalest Elite deals 3 damage to target attacking or blocking creature. Arbalest Elite doesn't untap during your next untap step. + Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new DamageTargetEffect(3), new ManaCostsImpl("{2}{W}")); + ability.addCost(new TapSourceCost()); + ability.addTarget(new TargetAttackingOrBlockingCreature()); + ability.addEffect(new SkipNextUntapSourceEffect()); + this.addAbility(ability); + } + + public ArbalestElite(final ArbalestElite card) { + super(card); + } + + @Override + public ArbalestElite copy() { + return new ArbalestElite(this); + } +} diff --git a/Mage/src/mage/abilities/effects/common/SkipUntapSourceEffect.java b/Mage/src/mage/abilities/effects/common/SkipNextUntapSourceEffect.java similarity index 65% rename from Mage/src/mage/abilities/effects/common/SkipUntapSourceEffect.java rename to Mage/src/mage/abilities/effects/common/SkipNextUntapSourceEffect.java index 7c34c3374d..3b56ebf47f 100644 --- a/Mage/src/mage/abilities/effects/common/SkipUntapSourceEffect.java +++ b/Mage/src/mage/abilities/effects/common/SkipNextUntapSourceEffect.java @@ -6,20 +6,20 @@ import mage.abilities.effects.ReplacementEffectImpl; import mage.game.Game; import mage.game.events.GameEvent; -public class SkipUntapSourceEffect extends ReplacementEffectImpl { +public class SkipNextUntapSourceEffect extends ReplacementEffectImpl { - public SkipUntapSourceEffect() { - super(Constants.Duration.WhileOnBattlefield, Constants.Outcome.Detriment); + public SkipNextUntapSourceEffect() { + super(Constants.Duration.OneUse, Constants.Outcome.Detriment); staticText = "{this} doesn't untap during your next untap step"; } - public SkipUntapSourceEffect(final SkipUntapSourceEffect effect) { + public SkipNextUntapSourceEffect(final SkipNextUntapSourceEffect effect) { super(effect); } @Override - public SkipUntapSourceEffect copy() { - return new SkipUntapSourceEffect(this); + public SkipNextUntapSourceEffect copy() { + return new SkipNextUntapSourceEffect(this); } @Override @@ -29,7 +29,8 @@ public class SkipUntapSourceEffect extends ReplacementEffectImpl { @Override public boolean apply(Game game, Ability source) { Permanent permanent = game.getPermanent(source.getSourceId()); - if (permanent != null) { - permanent.untap(game); - return true; - } - return false; + if (permanent != null) { + permanent.untap(game); + return true; + } + return false; } @Override