mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[AFR] Implmented Eyes of the Beholder
This commit is contained in:
parent
30e62544be
commit
f022571f96
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/e/EyesOfTheBeholder.java
Normal file
32
Mage.Sets/src/mage/cards/e/EyesOfTheBeholder.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.e;
|
||||
|
||||
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 EyesOfTheBeholder extends CardImpl {
|
||||
|
||||
public EyesOfTheBeholder(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{4}{B}{B}");
|
||||
|
||||
// Target creature gets -11/-11 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-11, -11));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private EyesOfTheBeholder(final EyesOfTheBeholder card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EyesOfTheBeholder copy() {
|
||||
return new EyesOfTheBeholder(this);
|
||||
}
|
||||
}
|
|
@ -72,6 +72,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ellywick Tumblestrum", 181, Rarity.MYTHIC, mage.cards.e.EllywickTumblestrum.class));
|
||||
cards.add(new SetCardInfo("Elturgard Ranger", 182, Rarity.COMMON, mage.cards.e.ElturgardRanger.class));
|
||||
cards.add(new SetCardInfo("Evolving Wilds", 256, Rarity.COMMON, mage.cards.e.EvolvingWilds.class));
|
||||
cards.add(new SetCardInfo("Eyes of the Beholder", 101, Rarity.COMMON, mage.cards.e.EyesOfTheBeholder.class));
|
||||
cards.add(new SetCardInfo("Fates' Reversal", 102, Rarity.COMMON, mage.cards.f.FatesReversal.class));
|
||||
cards.add(new SetCardInfo("Feign Death", 103, Rarity.COMMON, mage.cards.f.FeignDeath.class));
|
||||
cards.add(new SetCardInfo("Fifty Feet of Rope", 244, Rarity.UNCOMMON, mage.cards.f.FiftyFeetOfRope.class));
|
||||
|
|
Loading…
Reference in a new issue