added Maralen of the Mornsong

This commit is contained in:
Andy Fries 2015-01-24 14:40:31 -08:00
parent 3d55659568
commit 72eda0e4b3

View file

@ -0,0 +1,187 @@
/*
* 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.morningtide;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.ReplacementEffectImpl;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.filter.Filter;
import mage.filter.FilterCard;
import mage.filter.predicate.mageobject.CardTypePredicate;
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetCardInLibrary;
import mage.target.targetpointer.FixedTarget;
/**
*
* @author andyfries
*/
public class MaralenOfTheMornsong extends CardImpl {
public MaralenOfTheMornsong(UUID ownerId) {
super(ownerId, 65, "Maralen of the Mornsong", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
this.expansionSetCode = "MOR";
this.supertype.add("Legendary");
this.subtype.add("Elf");
this.subtype.add("Wizard");
this.power = new MageInt(2);
this.toughness = new MageInt(3);
// Players can't draw cards.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new MaralenOfTheMornsongEffect()));
// At the beginning of each player's draw step, that player loses 3 life, searches his or her library for a card, puts it into his or her hand, then shuffles his or her library.
this.addAbility(new MaralenOfTheMornsongAbility());
}
public MaralenOfTheMornsong(final MaralenOfTheMornsong card) {
super(card);
}
@Override
public MaralenOfTheMornsong copy() {
return new MaralenOfTheMornsong(this);
}
}
class MaralenOfTheMornsongEffect extends ReplacementEffectImpl {
public MaralenOfTheMornsongEffect() {
super(Duration.WhileOnBattlefield, Outcome.Neutral);
staticText = "Players can't draw cards";
}
public MaralenOfTheMornsongEffect(final MaralenOfTheMornsongEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
return true;
}
@Override
public MaralenOfTheMornsongEffect copy() {
return new MaralenOfTheMornsongEffect(this);
}
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
return true;
}
@Override
public boolean applies(GameEvent event, Ability source, Game game) {
if (event.getType() == GameEvent.EventType.DRAW_CARD) {
return true;
}
return false;
}
}
class MaralenOfTheMornsongAbility extends TriggeredAbilityImpl {
public MaralenOfTheMornsongAbility() {
super(Zone.BATTLEFIELD, new MaralenOfTheMornsongEffect2());
}
public MaralenOfTheMornsongAbility(final MaralenOfTheMornsongAbility ability) {
super(ability);
}
@Override
public MaralenOfTheMornsongAbility copy() {
return new MaralenOfTheMornsongAbility(this);
}
@Override
public boolean checkTrigger(GameEvent event, Game game) {
if (event.getType() == GameEvent.EventType.DRAW_STEP_PRE) {
this.getEffects().get(0).setTargetPointer(new FixedTarget(event.getPlayerId()));
return true;
}
return false;
}
@Override
public String getRule() {
return "At the beginning of each player's draw step, that player loses 3 life, searches his or her library for a card, puts it into his or her hand, then shuffles his or her library.";
}
}
class MaralenOfTheMornsongEffect2 extends OneShotEffect {
public MaralenOfTheMornsongEffect2() {
super(Outcome.LoseLife);
}
public MaralenOfTheMornsongEffect2(final MaralenOfTheMornsongEffect2 effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player != null) {
player.loseLife(3, game);
TargetCardInLibrary target = new TargetCardInLibrary();
if (player.searchLibrary(target, game)) {
for (UUID cardId : target.getTargets()) {
Card card = player.getLibrary().getCard(cardId, game);
player.putInHand(card, game);
}
}
player.shuffleLibrary(game);
return true;
}
return false;
}
@Override
public MaralenOfTheMornsongEffect2 copy() {
return new MaralenOfTheMornsongEffect2(this);
}
}