From 0f90fdd591d7de00065400133d64caf2e7dbae4d Mon Sep 17 00:00:00 2001 From: fireshoes Date: Tue, 3 Mar 2015 19:29:38 -0600 Subject: [PATCH] Added Gustcloaks Cavalier, Harrier, Runner, Skirmisher, and Close Quarters --- .../sets/mercadianmasques/CloseQuarters.java | 63 ++++++++++++++ .../mage/sets/onslaught/GustcloakHarrier.java | 52 ++++++++++++ .../mage/sets/onslaught/GustcloakRunner.java | 71 ++++++++++++++++ .../sets/onslaught/GustcloakSkirmisher.java | 75 +++++++++++++++++ .../sets/timespiral/GustcloakCavalier.java | 83 +++++++++++++++++++ .../sets/vintagemasters/GustcloakHarrier.java | 75 +++++++++++++++++ 6 files changed, 419 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/mercadianmasques/CloseQuarters.java create mode 100644 Mage.Sets/src/mage/sets/onslaught/GustcloakHarrier.java create mode 100644 Mage.Sets/src/mage/sets/onslaught/GustcloakRunner.java create mode 100644 Mage.Sets/src/mage/sets/onslaught/GustcloakSkirmisher.java create mode 100644 Mage.Sets/src/mage/sets/timespiral/GustcloakCavalier.java create mode 100644 Mage.Sets/src/mage/sets/vintagemasters/GustcloakHarrier.java diff --git a/Mage.Sets/src/mage/sets/mercadianmasques/CloseQuarters.java b/Mage.Sets/src/mage/sets/mercadianmasques/CloseQuarters.java new file mode 100644 index 0000000000..ad70debcc9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/mercadianmasques/CloseQuarters.java @@ -0,0 +1,63 @@ +/* + * 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.mercadianmasques; + +import java.util.UUID; +import mage.abilities.Ability; +import mage.abilities.common.BecomesBlockedAllTriggeredAbility; +import mage.abilities.effects.common.DamageTargetEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.target.common.TargetCreatureOrPlayer; + +/** + * + * @author fireshoes + */ +public class CloseQuarters extends CardImpl { + + public CloseQuarters(UUID ownerId) { + super(ownerId, 184, "Close Quarters", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{R}{R}"); + this.expansionSetCode = "MMQ"; + + // Whenever a creature you control becomes blocked, Close Quarters deals 1 damage to target creature or player. + Ability ability = new BecomesBlockedAllTriggeredAbility(new DamageTargetEffect(1), true); + ability.addTarget(new TargetCreatureOrPlayer()); + this.addAbility(ability); + } + + public CloseQuarters(final CloseQuarters card) { + super(card); + } + + @Override + public CloseQuarters copy() { + return new CloseQuarters(this); + } +} diff --git a/Mage.Sets/src/mage/sets/onslaught/GustcloakHarrier.java b/Mage.Sets/src/mage/sets/onslaught/GustcloakHarrier.java new file mode 100644 index 0000000000..43772e80ab --- /dev/null +++ b/Mage.Sets/src/mage/sets/onslaught/GustcloakHarrier.java @@ -0,0 +1,52 @@ +/* + * 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.onslaught; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GustcloakHarrier extends mage.sets.vintagemasters.GustcloakHarrier { + + public GustcloakHarrier(UUID ownerId) { + super(ownerId); + this.cardNumber = 34; + this.expansionSetCode = "ONS"; + } + + public GustcloakHarrier(final GustcloakHarrier card) { + super(card); + } + + @Override + public GustcloakHarrier copy() { + return new GustcloakHarrier(this); + } +} diff --git a/Mage.Sets/src/mage/sets/onslaught/GustcloakRunner.java b/Mage.Sets/src/mage/sets/onslaught/GustcloakRunner.java new file mode 100644 index 0000000000..d0c8951029 --- /dev/null +++ b/Mage.Sets/src/mage/sets/onslaught/GustcloakRunner.java @@ -0,0 +1,71 @@ +/* + * 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.onslaught; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.BecomesBlockedTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.RemoveFromCombatSourceEffect; +import mage.abilities.effects.common.UntapSourceEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class GustcloakRunner extends CardImpl { + + public GustcloakRunner(UUID ownerId) { + super(ownerId, 35, "Gustcloak Runner", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{W}"); + this.expansionSetCode = "ONS"; + this.subtype.add("Human"); + this.subtype.add("Soldier"); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // Whenever Gustcloak Runner becomes blocked, you may untap it and remove it from combat. + Ability ability = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true); + Effect effect = new RemoveFromCombatSourceEffect(); + effect.setText("and remove it from combat"); + ability.addEffect(effect); + this.addAbility(ability); + } + + public GustcloakRunner(final GustcloakRunner card) { + super(card); + } + + @Override + public GustcloakRunner copy() { + return new GustcloakRunner(this); + } +} diff --git a/Mage.Sets/src/mage/sets/onslaught/GustcloakSkirmisher.java b/Mage.Sets/src/mage/sets/onslaught/GustcloakSkirmisher.java new file mode 100644 index 0000000000..41d6c2175b --- /dev/null +++ b/Mage.Sets/src/mage/sets/onslaught/GustcloakSkirmisher.java @@ -0,0 +1,75 @@ +/* + * 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.onslaught; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.BecomesBlockedTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.RemoveFromCombatSourceEffect; +import mage.abilities.effects.common.UntapSourceEffect; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class GustcloakSkirmisher extends CardImpl { + + public GustcloakSkirmisher(UUID ownerId) { + super(ownerId, 38, "Gustcloak Skirmisher", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}"); + this.expansionSetCode = "ONS"; + this.subtype.add("Bird"); + this.subtype.add("Soldier"); + this.power = new MageInt(2); + this.toughness = new MageInt(3); + + // Flying + this.addAbility(FlyingAbility.getInstance()); + + // Whenever Gustcloak Skirmisher becomes blocked, you may untap it and remove it from combat. + Ability ability = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true); + Effect effect = new RemoveFromCombatSourceEffect(); + effect.setText("and remove it from combat"); + ability.addEffect(effect); + this.addAbility(ability); + } + + public GustcloakSkirmisher(final GustcloakSkirmisher card) { + super(card); + } + + @Override + public GustcloakSkirmisher copy() { + return new GustcloakSkirmisher(this); + } +} diff --git a/Mage.Sets/src/mage/sets/timespiral/GustcloakCavalier.java b/Mage.Sets/src/mage/sets/timespiral/GustcloakCavalier.java new file mode 100644 index 0000000000..2ae060e543 --- /dev/null +++ b/Mage.Sets/src/mage/sets/timespiral/GustcloakCavalier.java @@ -0,0 +1,83 @@ +/* + * 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.timespiral; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.AttacksTriggeredAbility; +import mage.abilities.common.BecomesBlockedTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.RemoveFromCombatSourceEffect; +import mage.abilities.effects.common.TapTargetEffect; +import mage.abilities.effects.common.UntapSourceEffect; +import mage.abilities.keyword.FlankingAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author fireshoes + */ +public class GustcloakCavalier extends CardImpl { + + public GustcloakCavalier(UUID ownerId) { + super(ownerId, 22, "Gustcloak Cavalier", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{W}{W}"); + this.expansionSetCode = "TSP"; + this.subtype.add("Human"); + this.subtype.add("Knight"); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Flanking + this.addAbility(new FlankingAbility()); + + // Whenever Gustcloak Cavalier attacks, you may tap target creature. + Ability ability = new AttacksTriggeredAbility(new TapTargetEffect(), true); + ability.addTarget(new TargetCreaturePermanent()); + this.addAbility(ability); + + // Whenever Gustcloak Cavalier becomes blocked, you may untap Gustcloak Cavalier and remove it from combat. + Ability ability2 = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true); + Effect effect = new RemoveFromCombatSourceEffect(); + effect.setText("and remove it from combat"); + ability2.addEffect(effect); + this.addAbility(ability2); + } + + public GustcloakCavalier(final GustcloakCavalier card) { + super(card); + } + + @Override + public GustcloakCavalier copy() { + return new GustcloakCavalier(this); + } +} diff --git a/Mage.Sets/src/mage/sets/vintagemasters/GustcloakHarrier.java b/Mage.Sets/src/mage/sets/vintagemasters/GustcloakHarrier.java new file mode 100644 index 0000000000..e695515ad8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/vintagemasters/GustcloakHarrier.java @@ -0,0 +1,75 @@ +/* + * 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.vintagemasters; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.BecomesBlockedTriggeredAbility; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.RemoveFromCombatSourceEffect; +import mage.abilities.effects.common.UntapSourceEffect; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class GustcloakHarrier extends CardImpl { + + public GustcloakHarrier(UUID ownerId) { + super(ownerId, 30, "Gustcloak Harrier", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{W}{W}"); + this.expansionSetCode = "VMA"; + this.subtype.add("Bird"); + this.subtype.add("Soldier"); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Flying + this.addAbility(FlyingAbility.getInstance()); + + // Whenever Gustcloak Harrier becomes blocked, you may untap it and remove it from combat. + Ability ability = new BecomesBlockedTriggeredAbility(new UntapSourceEffect(), true); + Effect effect = new RemoveFromCombatSourceEffect(); + effect.setText("and remove it from combat"); + ability.addEffect(effect); + this.addAbility(ability); + } + + public GustcloakHarrier(final GustcloakHarrier card) { + super(card); + } + + @Override + public GustcloakHarrier copy() { + return new GustcloakHarrier(this); + } +}