mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
[LTR] Implement Ringwraiths
This commit is contained in:
parent
bf5b93d1d6
commit
d4307395b1
3 changed files with 94 additions and 1 deletions
88
Mage.Sets/src/mage/cards/r/Ringwraiths.java
Normal file
88
Mage.Sets/src/mage/cards/r/Ringwraiths.java
Normal file
|
@ -0,0 +1,88 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.common.TheRingTemptsYouTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToHandEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
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.Controllable;
|
||||
import mage.game.Game;
|
||||
import mage.target.common.TargetOpponentsCreaturePermanent;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Ringwraiths extends CardImpl {
|
||||
|
||||
public Ringwraiths(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||
|
||||
this.subtype.add(SubType.WRAITH);
|
||||
this.subtype.add(SubType.KNIGHT);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(5);
|
||||
|
||||
// When Ringwraiths enters the battlefield, target creature an opponent controls gets -3/-3 until end of turn. If that creature is legendary, its controller loses 3 life.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(-3, -3));
|
||||
ability.addEffect(new RingwraithsEffect());
|
||||
ability.addTarget(new TargetOpponentsCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
|
||||
// When the Ring tempts you, return Ringwraiths from your graveyard to your hand.
|
||||
this.addAbility(new TheRingTemptsYouTriggeredAbility(
|
||||
Zone.GRAVEYARD, new ReturnSourceFromGraveyardToHandEffect(), false
|
||||
).setTriggerPhrase("When the Ring tempts you, "));
|
||||
}
|
||||
|
||||
private Ringwraiths(final Ringwraiths card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ringwraiths copy() {
|
||||
return new Ringwraiths(this);
|
||||
}
|
||||
}
|
||||
|
||||
class RingwraithsEffect extends OneShotEffect {
|
||||
|
||||
RingwraithsEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "If that creature is legendary, its controller loses 3 life";
|
||||
}
|
||||
|
||||
private RingwraithsEffect(final RingwraithsEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RingwraithsEffect copy() {
|
||||
return new RingwraithsEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return Optional
|
||||
.ofNullable(getTargetPointer().getFirst(game, source))
|
||||
.map(game::getPermanent)
|
||||
.filter(Objects::nonNull)
|
||||
.filter(permanent -> permanent.isLegendary(game))
|
||||
.map(Controllable::getControllerId)
|
||||
.map(game::getPlayer)
|
||||
.filter(Objects::nonNull)
|
||||
.map(player -> player.loseLife(3, game, source, false) > 0)
|
||||
.orElse(false);
|
||||
}
|
||||
}
|
|
@ -168,6 +168,7 @@ public final class TheLordOfTheRingsTalesOfMiddleEarth extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Reprieve", 26, Rarity.UNCOMMON, mage.cards.r.Reprieve.class));
|
||||
cards.add(new SetCardInfo("Revive the Shire", 185, Rarity.COMMON, mage.cards.r.ReviveTheShire.class));
|
||||
cards.add(new SetCardInfo("Ringsight", 220, Rarity.UNCOMMON, mage.cards.r.Ringsight.class));
|
||||
cards.add(new SetCardInfo("Ringwraiths", 284, Rarity.RARE, mage.cards.r.Ringwraiths.class));
|
||||
cards.add(new SetCardInfo("Rising of the Day", 145, Rarity.UNCOMMON, mage.cards.r.RisingOfTheDay.class));
|
||||
cards.add(new SetCardInfo("Rivendell", 259, Rarity.RARE, mage.cards.r.Rivendell.class));
|
||||
cards.add(new SetCardInfo("Rohirrim Lancer", 146, Rarity.COMMON, mage.cards.r.RohirrimLancer.class));
|
||||
|
|
|
@ -12,7 +12,11 @@ import mage.game.events.GameEvent;
|
|||
public class TheRingTemptsYouTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
public TheRingTemptsYouTriggeredAbility(Effect effect) {
|
||||
super(Zone.BATTLEFIELD, effect, false);
|
||||
this(Zone.BATTLEFIELD, effect, false);
|
||||
}
|
||||
|
||||
public TheRingTemptsYouTriggeredAbility(Zone zone, Effect effect, boolean optional) {
|
||||
super(zone, effect, optional);
|
||||
setTriggerPhrase("Whenever the Ring tempts you, ");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue