[MBS] Kuldotha Flamefiend

This commit is contained in:
North 2011-08-08 22:15:44 +03:00
parent d5bdc6f703
commit 26fa594a5b
3 changed files with 103 additions and 11 deletions

View file

@ -27,8 +27,6 @@
*/
package mage.sets.magic2010;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import mage.Constants;
@ -47,15 +45,9 @@ import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.Cards;
import mage.cards.CardsImpl;
import mage.choices.Choice;
import mage.choices.ChoiceImpl;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import org.w3c.dom.css.Counter;
/**
*
@ -96,8 +88,6 @@ public class DjinnOfWishes extends CardImpl<DjinnOfWishes> {
class DjinnOfWishesEffect1 extends OneShotEffect<DjinnOfWishesEffect1> {
private static FilterPermanent filter = new FilterCreaturePermanent();
public DjinnOfWishesEffect1() {
super(Constants.Outcome.PlayForFree);
staticText = "Reveal the top card of your library. You may play that card without paying its mana cost. If you don't, exile it";

View file

@ -0,0 +1,103 @@
/*
* 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.mirrodinbesieged;
import java.util.UUID;
import mage.Constants.CardType;
import mage.Constants.Outcome;
import mage.Constants.Rarity;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.DamageMultiEffect;
import mage.cards.CardImpl;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.target.common.TargetArtifactPermanent;
import mage.target.common.TargetCreatureOrPlayerAmount;
/**
*
* @author North
*/
public class KuldothaFlamefiend extends CardImpl<KuldothaFlamefiend> {
public KuldothaFlamefiend(UUID ownerId) {
super(ownerId, 69, "Kuldotha Flamefiend", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{R}{R}");
this.expansionSetCode = "MBS";
this.subtype.add("Elemental");
this.color.setRed(true);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// When Kuldotha Flamefiend enters the battlefield, you may sacrifice an artifact. If you do, Kuldotha Flamefiend deals 4 damage divided as you choose among any number of target creatures and/or players.
EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new SacrificeArtifactEffect(), true);
ability.addEffect(new DamageMultiEffect(4));
ability.addTarget(new TargetCreatureOrPlayerAmount(4));
ability.addTarget(new TargetArtifactPermanent());
}
public KuldothaFlamefiend(final KuldothaFlamefiend card) {
super(card);
}
@Override
public KuldothaFlamefiend copy() {
return new KuldothaFlamefiend(this);
}
}
class SacrificeArtifactEffect extends OneShotEffect<SacrificeArtifactEffect> {
public SacrificeArtifactEffect() {
super(Outcome.Sacrifice);
this.staticText = "sacrifice an artifact";
}
public SacrificeArtifactEffect(final SacrificeArtifactEffect effect) {
super(effect);
}
@Override
public SacrificeArtifactEffect copy() {
return new SacrificeArtifactEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(source.getTargets().get(1).getFirstTarget());
if (permanent != null) {
permanent.sacrifice(source.getSourceId(), game);
return true;
}
return false;
}
}

View file

@ -34,7 +34,6 @@ import mage.abilities.effects.Effect;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.events.GameEvent.EventType;
import mage.target.TargetPlayer;
import mage.target.targetpointer.FixedTarget;
/**