mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
[CLB] Implemented Nefarious Imp
This commit is contained in:
parent
2c3139bf91
commit
bb8bfb32c5
2 changed files with 91 additions and 0 deletions
90
Mage.Sets/src/mage/cards/n/NefariousImp.java
Normal file
90
Mage.Sets/src/mage/cards/n/NefariousImp.java
Normal file
|
@ -0,0 +1,90 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.MageItem;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.effects.keyword.ScryEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Controllable;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.ZoneChangeGroupEvent;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.UUID;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class NefariousImp extends CardImpl {
|
||||
|
||||
public NefariousImp(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.IMP);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Whenever one or more permanents you control leave the battlefield, scry 1.
|
||||
this.addAbility(new NefariousImpTriggeredAbility());
|
||||
}
|
||||
|
||||
private NefariousImp(final NefariousImp card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NefariousImp copy() {
|
||||
return new NefariousImp(this);
|
||||
}
|
||||
}
|
||||
|
||||
class NefariousImpTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
NefariousImpTriggeredAbility() {
|
||||
super(Zone.BATTLEFIELD, new ScryEffect(1));
|
||||
}
|
||||
|
||||
private NefariousImpTriggeredAbility(final NefariousImpTriggeredAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NefariousImpTriggeredAbility copy() {
|
||||
return new NefariousImpTriggeredAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.ZONE_CHANGE_GROUP;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
ZoneChangeGroupEvent zEvent = (ZoneChangeGroupEvent) event;
|
||||
return zEvent.getFromZone() == Zone.BATTLEFIELD
|
||||
&& Stream.concat(
|
||||
zEvent.getTokens()
|
||||
.stream(),
|
||||
zEvent.getCards()
|
||||
.stream()
|
||||
.map(MageItem::getId)
|
||||
.map(game::getPermanent)
|
||||
.filter(Objects::nonNull)
|
||||
).map(Controllable::getControllerId).anyMatch(this::isControlledBy);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever one or more permanents you control leave the battlefield, scry 1.";
|
||||
}
|
||||
}
|
|
@ -222,6 +222,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Nature's Lore", 244, Rarity.COMMON, mage.cards.n.NaturesLore.class));
|
||||
cards.add(new SetCardInfo("Nautiloid Ship", 328, Rarity.MYTHIC, mage.cards.n.NautiloidShip.class));
|
||||
cards.add(new SetCardInfo("Navigation Orb", 329, Rarity.COMMON, mage.cards.n.NavigationOrb.class));
|
||||
cards.add(new SetCardInfo("Nefarious Imp", 137, Rarity.COMMON, mage.cards.n.NefariousImp.class));
|
||||
cards.add(new SetCardInfo("Nemesis Phoenix", 189, Rarity.UNCOMMON, mage.cards.n.NemesisPhoenix.class));
|
||||
cards.add(new SetCardInfo("Nimbleclaw Adept", 86, Rarity.COMMON, mage.cards.n.NimbleclawAdept.class));
|
||||
cards.add(new SetCardInfo("Nimblewright Schematic", 330, Rarity.COMMON, mage.cards.n.NimblewrightSchematic.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue