Merge origin/master

This commit is contained in:
LevelX2 2015-01-08 17:30:22 +01:00
commit 09977ec705
3 changed files with 133 additions and 1 deletions

View file

@ -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.fatereforged;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.common.BecomesTargetTriggeredAbility;
import mage.abilities.effects.common.SacrificeSourceEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class FrostWalker extends CardImpl {
public FrostWalker(UUID ownerId) {
super(ownerId, 35, "Frost Walker", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
this.expansionSetCode = "FRF";
this.subtype.add("Elemental");
this.power = new MageInt(4);
this.toughness = new MageInt(1);
// When Frost Walker becomes the target of a spell or ability, sacrifice it.
this.addAbility(new BecomesTargetTriggeredAbility(new SacrificeSourceEffect()));
}
public FrostWalker(final FrostWalker card) {
super(card);
}
@Override
public FrostWalker copy() {
return new FrostWalker(this);
}
}

View file

@ -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.fatereforged;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.keyword.DashAbility;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class MarduScout extends CardImpl {
public MarduScout(UUID ownerId) {
super(ownerId, 108, "Mardu Scout", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{R}{R}");
this.expansionSetCode = "FRF";
this.subtype.add("Goblin");
this.subtype.add("Scout");
this.power = new MageInt(3);
this.toughness = new MageInt(1);
// Dash {1}{R}
this.addAbility(new DashAbility(this, "{1}{R}"));
}
public MarduScout(final MarduScout card) {
super(card);
}
@Override
public MarduScout copy() {
return new MarduScout(this);
}
}

View file

@ -25232,7 +25232,7 @@ Soulfire Grand Master|Fate Reforged|27|M|{1}{W}|Creature - Human Monk|2|2|Lifeli
Valorous Stance|Fate Reforged|28|U|{1}{W}|Instant|||Choose one —$• Target creature gains indestructible until end of turn.$• Destroy target creature with toughness 4 or greater.|
Wandering Champion|Fate Reforged|29|U|{1}{W}|Creature - Human Monk|3|1|Whenever Wandering Champion deals combat damage to a player, if you control a blue or red permanent, you may discard a card. If you do, draw a card.|
Wardscale Dragon|Fate Reforged|30|U|{4}{W}{W}|Creature - Dragon|4|4|Flying$As long as Wardscale Dragon is attacking, defending player can't cast spells.|
Reality Shift|Fate Reforged|?|U|{1}{U}|Instant|||Exile target creature. Its controller manifests the top card of his or her library.<i> (That player puts it onto the battlefield face down as a 2/2 creature. If it's a creature card, it can be turned face up at any time for its mana cost.)</i>$Exile target creature. Its controller manifests the top card of his or her library.<i> (That player puts it onto the battlefield face down as a 2/2 creature. If it's a creature card, it can be turned face up at any time for its mana cost.)</i>|
Reality Shift|Fate Reforged|46|U|{1}{U}|Instant|||Exile target creature. Its controller manifests the top card of his or her library.<i> (That player puts it onto the battlefield face down as a 2/2 creature. If it's a creature card, it can be turned face up at any time for its mana cost.)</i>$Exile target creature. Its controller manifests the top card of his or her library.<i> (That player puts it onto the battlefield face down as a 2/2 creature. If it's a creature card, it can be turned face up at any time for its mana cost.)</i>|
Jeskai Infiltrator|Fate Reforged|36|R|{2}{U}|Creature - Human Monk|2|3|Jeskai Infiltrator is unblockable as long as you control no other creatures.$Whenever Jeskai Infiltrator deals combat damage to a player, exile it and the top card of your library in a face-down pile, shuffle that pile, then manifest those cards. <i>(To manifest a card, put it onto the battlefield face down as a 2/2 creature. You may turn it face up at any time for its mana cost if it is a creature card.)</i>|
Jeskai Sage|Fate Reforged|38|C|{1}{U}|Creature - Human Monk|1|1|Prowess <i>(Whenever you cast a noncreature spell, this creature gets +1/+1 until end of turn)</i>$When Jeskai Sage dies, draw a card.|
Marang River Prowler|Fate Reforged|40|U|{2}{U}|Creature - Human Rogue|2|1|Marang River Prowler can't block and can't be blocked.$You may cast Marang River Prowler from your graveyard as long as you control a black or green permanent.|
@ -25247,6 +25247,7 @@ Torrent Elemental|Fate Reforged|56|M|{4}{U}|Creature - Elemental|3|5|Flying$When
Write into Being|Fate Reforged|59|C|{2}{U}|Sorcery|||Look at the top two cards of your library. Manifest one of those cards, then put the other on top or bottom of your library. <i>(To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up at any time for its mana cost if it's a creature card.)</i>$Look at the top two cards of your library. Manifest one of those cards, then put the other on top or bottom of your library. <i>(To manifest a card, put it onto the battlefield face down as a 2/2 creature. Turn it face up at any time for its mana cost if it's a creature card.)</i>|
Archfiend of Depravity|Fate Reforged|62|R|{3}{B}{B}|Creature - Demon|5|4|At the beginning of each opponent's end step, that player chooses up to two creatures he or she controls, then sacrifices the rest.|
Battle Brawler|Fate Reforged|63|U|{1}{B}|Creature - Orc Warrior|2|2|As long as you control a red or white permanent, Battle Brawler gets +1/+0 and has first strike.|
Renowned Weaponsmith|Fate Reforged|48|U|{1}{U}|Creature - Human Artificer|1|3|{t}: Add {2} to your mana pool. Spend this mana only to cast artifact spells or activate abilities of artifacts.${U}, {t}: Search your library for a card named Heart-Piercer Bow or Vial of Dragonfire, reveal it, put it into your hand, then shuffle your library.|
Brutal Hordechief|Fate Reforged|64|M|{3}{B}|Creature - Orc Warrior|3|3|Whenever a creature you control attacks, defending player loses 1 life and you gain 1 life.${3}{RW}{RW}: Creatures your opponents control block this turn if able, and you choose how those creatures block.|
Crux of Fate|Fate Reforged|65|R|{3}{B}{B}|Sorcery|||Choose one —$• Destroy all Dragon creatures.$• Destroy all non-Dragon creatures.|
Gurmag Angler|Fate Reforged|72|C|{6}{B}|Creature - Zombie Fish|5|5|Delve|
@ -25301,7 +25302,12 @@ Silumgar, the Drifting Death|Fate Reforged|157|R|{4}{U}{B}|Legendary Creature -
War Flare|Fate Reforged|158|C|{2}{R}{W}|Instant|||Creatures you control get +2/+1 until end of turn. Untap those creatures.|
Cut-Stone Retainers|Fate Reforged|161|U|{3}|Artifact Creature - Golem|4|4|Cast Cut-Stone Retainers only if you've cast another spell this turn.|
Scroll of the Masters|Fate Reforged|163|R|{2}|Artifact|||Whenever you cast a noncreature spell, put a lore counter on Scroll of the Masters. ${3},{T}: Target creature you control gets +1/+1 for each lore counter on Scroll of the Masters|
Mardu Scout|Fate Reforged|108|C|{R}{R}|Creature - Goblin Scout|3|1|Dash {1}{R}|
Ghastly Conscription|Fate Reforged|70|M|{5}{B}{B}|Sorcery|||Exile all creature cards from target player's graveyard in a face-down pile, shuffle that pile, then manifest those cards.|
Mardu Woe-Reaper|Fate Reforged|18|U|{W}|Creature - Human Warrior|2|1|Whenever Mardu Woe-Reaper or another Warrior enters the battlefield under your control, you may exile target creature card from a graveyard. If you do, you gain 1 life.|
Ugin's Construct|Fate Reforged|164|U|{4}|Artifact Creature - Construct|4|5|When Ugin's Construct enters the battlefield, sacrifice a permanent that's one or more colors.|
Rally the Ancestors|Fate Reforged|22|R|{X}{W}{W}|Instant|||Return each creature card with converted mana cost X or less from your graveyard to the battlefield. Exile those creatures at the beginning of your next upkeep. Exile Rally the Ancestors.|
Frost Walker|Fate Reforged|35|U|{1}{U}|Creature - Elemental|4|1|When Frost Walker becomes the target of a spell or ability, sacrifice it.|
Abzan Beastmaster|Fate Reforged|119|U|{2}{G}|Creature - Hound Shaman|2|1|At the beginning of your upkeep, draw a card if you control the creature with the greatest toughness or tied for the greatest toughness.$At the beginning of your upkeep, draw a card if you control the creature with the greatest toughness or tied for the greatest toughness.|
Bloodfell Caves|Fate Reforged|165|C||Land|||Bloodfell Caves enters the battlefield tapped.$When Bloodfell Caves enters the battlefield, you gain 1 life.${T}: Add {B} or {R} to your mana pool.|
Blossoming Sands|Fate Reforged|166|C||Land|||Blossoming Sands enters the battlefield tapped.$When Blossoming Sands enters the battlefield, you gain 1 life.${T}: Add {G} or {W} to your mana pool.|