forked from External/mage
47 lines
1.6 KiB
Java
47 lines
1.6 KiB
Java
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
|
import mage.abilities.costs.mana.ColoredManaCost;
|
|
import mage.abilities.effects.common.DamageTargetEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.ColoredManaSymbol;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
import static mage.filter.StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT;
|
|
import mage.target.common.TargetControlledCreaturePermanent;
|
|
import mage.target.common.TargetPlayerOrPlaneswalker;
|
|
|
|
/**
|
|
*
|
|
* @author Loki
|
|
*/
|
|
public final class ScorchedRusalka extends CardImpl {
|
|
|
|
public ScorchedRusalka(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{R}");
|
|
this.subtype.add(SubType.SPIRIT);
|
|
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new ColoredManaCost(ColoredManaSymbol.R));
|
|
ability.addCost(new SacrificeTargetCost(new TargetControlledCreaturePermanent(FILTER_CONTROLLED_CREATURE_SHORT_TEXT)));
|
|
ability.addTarget(new TargetPlayerOrPlaneswalker());
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
public ScorchedRusalka(final ScorchedRusalka card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public ScorchedRusalka copy() {
|
|
return new ScorchedRusalka(this);
|
|
}
|
|
}
|