mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[MH2] Implemented Smell Fear
This commit is contained in:
parent
7bedbf6e55
commit
b8c7fd2e12
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/s/SmellFear.java
Normal file
40
Mage.Sets/src/mage/cards/s/SmellFear.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.effects.common.FightTargetsEffect;
|
||||
import mage.abilities.effects.common.counter.ProliferateEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetOpponentsCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SmellFear extends CardImpl {
|
||||
|
||||
public SmellFear(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
|
||||
|
||||
// Proliferate.
|
||||
this.getSpellAbility().addEffect(new ProliferateEffect());
|
||||
|
||||
// Target creature you control fights up to one target creature you don't control.
|
||||
this.getSpellAbility().addEffect(new FightTargetsEffect(
|
||||
"<br>Target creature you control fights up to one target creature you don't control"
|
||||
));
|
||||
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
|
||||
this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent());
|
||||
}
|
||||
|
||||
private SmellFear(final SmellFear card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SmellFear copy() {
|
||||
return new SmellFear(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -238,6 +238,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Skophos Reaver", 140, Rarity.COMMON, mage.cards.s.SkophosReaver.class));
|
||||
cards.add(new SetCardInfo("Slag Strider", 141, Rarity.UNCOMMON, mage.cards.s.SlagStrider.class));
|
||||
cards.add(new SetCardInfo("Slagwoods Bridge", 256, Rarity.COMMON, mage.cards.s.SlagwoodsBridge.class));
|
||||
cards.add(new SetCardInfo("Smell Fear", 173, Rarity.COMMON, mage.cards.s.SmellFear.class));
|
||||
cards.add(new SetCardInfo("So Shiny", 63, Rarity.COMMON, mage.cards.s.SoShiny.class));
|
||||
cards.add(new SetCardInfo("Sojourner's Companion", 235, Rarity.COMMON, mage.cards.s.SojournersCompanion.class));
|
||||
cards.add(new SetCardInfo("Sol Talisman", 236, Rarity.RARE, mage.cards.s.SolTalisman.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue