forked from External/mage
[FIN] Implement Overkill
This commit is contained in:
parent
572420aa0a
commit
1cfcf41026
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/o/Overkill.java
Normal file
32
Mage.Sets/src/mage/cards/o/Overkill.java
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.o;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Overkill extends CardImpl {
|
||||
|
||||
public Overkill(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}");
|
||||
|
||||
// Target creature gets -0/-9999 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(0, -9999));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private Overkill(final Overkill card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Overkill copy() {
|
||||
return new Overkill(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -264,6 +264,7 @@ public final class FinalFantasy extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Omega, Heartless Evolution", 236, Rarity.UNCOMMON, mage.cards.o.OmegaHeartlessEvolution.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Omega, Heartless Evolution", 347, Rarity.UNCOMMON, mage.cards.o.OmegaHeartlessEvolution.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Omega, Heartless Evolution", 501, Rarity.UNCOMMON, mage.cards.o.OmegaHeartlessEvolution.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Overkill", 109, Rarity.UNCOMMON, mage.cards.o.Overkill.class));
|
||||
cards.add(new SetCardInfo("Paladin's Arms", 28, Rarity.COMMON, mage.cards.p.PaladinsArms.class));
|
||||
cards.add(new SetCardInfo("Phantom Train", 110, Rarity.UNCOMMON, mage.cards.p.PhantomTrain.class));
|
||||
cards.add(new SetCardInfo("Phoenix Down", 29, Rarity.UNCOMMON, mage.cards.p.PhoenixDown.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue