mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Implemented Curse of Fool's Wisdom
This commit is contained in:
parent
edb7fed58e
commit
247973da76
2 changed files with 101 additions and 0 deletions
100
Mage.Sets/src/mage/cards/c/CurseOfFoolsWisdom.java
Normal file
100
Mage.Sets/src/mage/cards/c/CurseOfFoolsWisdom.java
Normal file
|
@ -0,0 +1,100 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.AttachEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.LoseLifeTargetEffect;
|
||||
import mage.abilities.keyword.EnchantAbility;
|
||||
import mage.abilities.keyword.MadnessAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.TargetPlayer;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CurseOfFoolsWisdom extends CardImpl {
|
||||
|
||||
public CurseOfFoolsWisdom(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{4}{B}{B}");
|
||||
|
||||
this.subtype.add(SubType.AURA);
|
||||
this.subtype.add(SubType.CURSE);
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer auraTarget = new TargetPlayer();
|
||||
this.getSpellAbility().addTarget(auraTarget);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
|
||||
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||
this.addAbility(ability);
|
||||
|
||||
// Whenever enchanted player draws a card, they lose 2 life and you gain 2 life.
|
||||
this.addAbility(new CurseOfFoolsWisdomTriggeredAbility());
|
||||
|
||||
// Madness {3}{B}
|
||||
this.addAbility(new MadnessAbility(this, new ManaCostsImpl("{3}{B}")));
|
||||
}
|
||||
|
||||
private CurseOfFoolsWisdom(final CurseOfFoolsWisdom card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CurseOfFoolsWisdom copy() {
|
||||
return new CurseOfFoolsWisdom(this);
|
||||
}
|
||||
}
|
||||
|
||||
class CurseOfFoolsWisdomTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
CurseOfFoolsWisdomTriggeredAbility() {
|
||||
super(Zone.BATTLEFIELD, null, false);
|
||||
}
|
||||
|
||||
private CurseOfFoolsWisdomTriggeredAbility(final CurseOfFoolsWisdomTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.DREW_CARD;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
Permanent enchantment = game.getPermanentOrLKIBattlefield(getSourceId());
|
||||
if (enchantment == null || !event.getPlayerId().equals(enchantment.getAttachedTo())) {
|
||||
return false;
|
||||
}
|
||||
this.getEffects().clear();
|
||||
Effect effect = new LoseLifeTargetEffect(2);
|
||||
effect.setTargetPointer(new FixedTarget(event.getPlayerId(), game));
|
||||
this.addEffect(effect);
|
||||
this.addEffect(new GainLifeEffect(2));
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever enchanted player draws a card, they lose 2 life and you gain 2 life.";
|
||||
}
|
||||
|
||||
@Override
|
||||
public CurseOfFoolsWisdomTriggeredAbility copy() {
|
||||
return new CurseOfFoolsWisdomTriggeredAbility(this);
|
||||
}
|
||||
|
||||
}
|
|
@ -64,6 +64,7 @@ public final class Commander2019Edition extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Commander's Sphere", 212, Rarity.COMMON, mage.cards.c.CommandersSphere.class));
|
||||
cards.add(new SetCardInfo("Crackling Drake", 190, Rarity.UNCOMMON, mage.cards.c.CracklingDrake.class));
|
||||
cards.add(new SetCardInfo("Cultivate", 159, Rarity.COMMON, mage.cards.c.Cultivate.class));
|
||||
cards.add(new SetCardInfo("Curse of Fool's Wisdom", 16, Rarity.RARE, mage.cards.c.CurseOfFoolsWisdom.class));
|
||||
cards.add(new SetCardInfo("Dark Withering", 110, Rarity.COMMON, mage.cards.d.DarkWithering.class));
|
||||
cards.add(new SetCardInfo("Darkwater Catacombs", 238, Rarity.RARE, mage.cards.d.DarkwaterCatacombs.class));
|
||||
cards.add(new SetCardInfo("Deathmist Raptor", 160, Rarity.MYTHIC, mage.cards.d.DeathmistRaptor.class));
|
||||
|
|
Loading…
Reference in a new issue