From 70c7349fded5a80b35bca5aa1873af9dea9075fc Mon Sep 17 00:00:00 2001 From: Loki Date: Wed, 29 Dec 2010 23:49:20 +0200 Subject: [PATCH] SOM --- .../sets/scarsofmirrodin/DarksteelMyr.java | 62 ++++++++++ .../scarsofmirrodin/DarksteelSentinel.java | 66 +++++++++++ .../sets/scarsofmirrodin/GolemsHeart.java | 97 +++++++++++++++ .../mage/sets/scarsofmirrodin/Putrefax.java | 2 + .../sets/scarsofmirrodin/SpikeshotElder.java | 112 ++++++++++++++++++ 5 files changed, 339 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelMyr.java create mode 100644 Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelSentinel.java create mode 100644 Mage.Sets/src/mage/sets/scarsofmirrodin/GolemsHeart.java create mode 100644 Mage.Sets/src/mage/sets/scarsofmirrodin/SpikeshotElder.java diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelMyr.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelMyr.java new file mode 100644 index 00000000000..9226ccadf38 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelMyr.java @@ -0,0 +1,62 @@ +/* + * 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.scarsofmirrodin; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.keyword.IndestructibleAbility; +import mage.cards.CardImpl; + +/** + * + * @author Loki + */ +public class DarksteelMyr extends CardImpl { + + public DarksteelMyr (UUID ownerId) { + super(ownerId, 151, "Darksteel Myr", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}"); + this.expansionSetCode = "SOM"; + this.subtype.add("Myr"); + this.power = new MageInt(0); + this.toughness = new MageInt(1); + this.addAbility(IndestructibleAbility.getInstance()); + } + + public DarksteelMyr (final DarksteelMyr card) { + super(card); + } + + @Override + public DarksteelMyr copy() { + return new DarksteelMyr(this); + } + +} diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelSentinel.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelSentinel.java new file mode 100644 index 00000000000..e8d8c10a6db --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/DarksteelSentinel.java @@ -0,0 +1,66 @@ +/* + * 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.scarsofmirrodin; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.keyword.FlashAbility; +import mage.abilities.keyword.IndestructibleAbility; +import mage.abilities.keyword.VigilanceAbility; +import mage.cards.CardImpl; + +/** + * + * @author Loki + */ +public class DarksteelSentinel extends CardImpl { + + public DarksteelSentinel (UUID ownerId) { + super(ownerId, 152, "Darksteel Sentinel", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{6}"); + this.expansionSetCode = "SOM"; + this.subtype.add("Golem"); + this.power = new MageInt(3); + this.toughness = new MageInt(3); + this.addAbility(FlashAbility.getInstance()); + this.addAbility(VigilanceAbility.getInstance()); + this.addAbility(IndestructibleAbility.getInstance()); + } + + public DarksteelSentinel (final DarksteelSentinel card) { + super(card); + } + + @Override + public DarksteelSentinel copy() { + return new DarksteelSentinel(this); + } + +} diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/GolemsHeart.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/GolemsHeart.java new file mode 100644 index 00000000000..1de8f89182d --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/GolemsHeart.java @@ -0,0 +1,97 @@ +/* + * 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.scarsofmirrodin; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Rarity; +import mage.Constants.Zone; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.effects.common.GainLifeEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.stack.Spell; + +/** + * + * @author Loki + */ +public class GolemsHeart extends CardImpl { + + public GolemsHeart (UUID ownerId) { + super(ownerId, 161, "Golem's Heart", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{2}"); + this.expansionSetCode = "SOM"; + this.addAbility(new GolemsHeartAbility()); + } + + public GolemsHeart (final GolemsHeart card) { + super(card); + } + + @Override + public GolemsHeart copy() { + return new GolemsHeart(this); + } + +} + +class GolemsHeartAbility extends TriggeredAbilityImpl { + + public GolemsHeartAbility() { + super(Zone.BATTLEFIELD, new GainLifeEffect(1), true); + } + + public GolemsHeartAbility(final GolemsHeartAbility ability) { + super(ability); + } + + @Override + public GolemsHeartAbility copy() { + return new GolemsHeartAbility(this); + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (event.getType() == GameEvent.EventType.SPELL_CAST) { + Spell spell = game.getStack().getSpell(event.getTargetId()); + if (spell != null && spell.getCardType().contains(CardType.ARTIFACT)) { + return true; + } + } + return false; + } + + @Override + public String getRule() { + return "Whenever a player casts an artifact spell, you may gain 1 life."; + } + +} \ No newline at end of file diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/Putrefax.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/Putrefax.java index 96d89943265..314958457d6 100644 --- a/Mage.Sets/src/mage/sets/scarsofmirrodin/Putrefax.java +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/Putrefax.java @@ -34,6 +34,7 @@ import mage.Constants.Rarity; import mage.MageInt; import mage.abilities.common.OnEventTriggeredAbility; import mage.abilities.effects.common.SacrificeSourceEffect; +import mage.abilities.keyword.HasteAbility; import mage.abilities.keyword.InfectAbility; import mage.abilities.keyword.TrampleAbility; import mage.cards.CardImpl; @@ -53,6 +54,7 @@ public class Putrefax extends CardImpl { this.power = new MageInt(5); this.toughness = new MageInt(3); this.addAbility(TrampleAbility.getInstance()); + this.addAbility(HasteAbility.getInstance()); this.addAbility(InfectAbility.getInstance()); this.addAbility(new OnEventTriggeredAbility(GameEvent.EventType.END_TURN_STEP_PRE, "beginning of the end step", new SacrificeSourceEffect())); } diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/SpikeshotElder.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/SpikeshotElder.java new file mode 100644 index 00000000000..f37f28af468 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/SpikeshotElder.java @@ -0,0 +1,112 @@ +/* + * 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.scarsofmirrodin; + +import java.util.UUID; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Rarity; +import mage.Constants.Zone; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.common.TargetCreatureOrPlayer; + +/** + * + * @author Loki + */ +public class SpikeshotElder extends CardImpl { + + public SpikeshotElder (UUID ownerId) { + super(ownerId, 104, "Spikeshot Elder", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R}"); + this.expansionSetCode = "SOM"; + this.subtype.add("Goblin"); + this.subtype.add("Shaman"); + this.color.setRed(true); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new SpikeshotElderEffect(), new ManaCostsImpl("{1}{R}{R}")); + ability.addTarget(new TargetCreatureOrPlayer()); + this.addAbility(ability); + } + + public SpikeshotElder (final SpikeshotElder card) { + super(card); + } + + @Override + public SpikeshotElder copy() { + return new SpikeshotElder(this); + } +} + +class SpikeshotElderEffect extends OneShotEffect { + public SpikeshotElderEffect() { + super(Constants.Outcome.Damage); + } + + public SpikeshotElderEffect(final SpikeshotElderEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent sourcePermanent = game.getPermanent(source.getSourceId()); + Permanent permanent = game.getPermanent(source.getFirstTarget()); + if (sourcePermanent != null && permanent != null) { + permanent.damage(sourcePermanent.getPower().getValue(), source.getId(), game, true, false); + return true; + } + Player player = game.getPlayer(source.getFirstTarget()); + if (sourcePermanent != null && player != null) { + player.damage(sourcePermanent.getPower().getValue(), source.getId(), game, false, true); + return true; + } + return false; + } + + @Override + public SpikeshotElderEffect copy() { + return new SpikeshotElderEffect(this); + } + + @Override + public String getText(Ability source) { + return "Spikeshot Elder deals damage equal to its power to target creature or player"; + } +} \ No newline at end of file