mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Implemented Labyrinth Raptor
This commit is contained in:
parent
461b54114b
commit
990334d535
2 changed files with 110 additions and 0 deletions
109
Mage.Sets/src/mage/cards/l/LabyrinthRaptor.java
Normal file
109
Mage.Sets/src/mage/cards/l/LabyrinthRaptor.java
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
package mage.cards.l;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.BecomesBlockedAllTriggeredAbility;
|
||||||
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.SacrificeEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.BoostAllEffect;
|
||||||
|
import mage.abilities.keyword.MenaceAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.*;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
|
import mage.filter.predicate.mageobject.AbilityPredicate;
|
||||||
|
import mage.filter.predicate.permanent.BlockedByIdPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class LabyrinthRaptor extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature you control with menace");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(new AbilityPredicate(MenaceAbility.class));
|
||||||
|
filter.add(TargetController.YOU.getControllerPredicate());
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final FilterCreaturePermanent filter2 = filter.copy();
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter2.setMessage("creatures you control with menace");
|
||||||
|
}
|
||||||
|
|
||||||
|
public LabyrinthRaptor(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}{R}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.NIGHTMARE);
|
||||||
|
this.subtype.add(SubType.DINOSAUR);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
// Menace
|
||||||
|
this.addAbility(new MenaceAbility());
|
||||||
|
|
||||||
|
// Whenever a creature you control with menace becomes blocked, defending player sacrifices a creature blocking it.
|
||||||
|
this.addAbility(new BecomesBlockedAllTriggeredAbility(
|
||||||
|
new LabyrinthRaptorEffect(), false, filter, true
|
||||||
|
));
|
||||||
|
|
||||||
|
// {B}{R}: Creatures you control with menace get +1/+0 until end of turn.
|
||||||
|
this.addAbility(new SimpleActivatedAbility(new BoostAllEffect(
|
||||||
|
1, 0, Duration.WhileOnBattlefield, filter2, false
|
||||||
|
), new ManaCostsImpl("{B}{R}")));
|
||||||
|
}
|
||||||
|
|
||||||
|
private LabyrinthRaptor(final LabyrinthRaptor card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LabyrinthRaptor copy() {
|
||||||
|
return new LabyrinthRaptor(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LabyrinthRaptorEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
LabyrinthRaptorEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
staticText = "defending player sacrifices a creature blocking it";
|
||||||
|
}
|
||||||
|
|
||||||
|
private LabyrinthRaptorEffect(final LabyrinthRaptorEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LabyrinthRaptorEffect copy() {
|
||||||
|
return new LabyrinthRaptorEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Permanent permanent = game.getPermanentOrLKIBattlefield(targetPointer.getFirst(game, source));
|
||||||
|
if (permanent == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Player player = game.getPlayer(game.getCombat().getDefendingPlayerId(permanent.getId(), game));
|
||||||
|
if (player == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
FilterPermanent filterPermanent = new FilterPermanent("creature blocking " + permanent.getIdName());
|
||||||
|
filterPermanent.add(new BlockedByIdPredicate(permanent.getId()));
|
||||||
|
Effect effect = new SacrificeEffect(filterPermanent, 1, "");
|
||||||
|
effect.setTargetPointer(new FixedTarget(player.getId(), game));
|
||||||
|
return effect.apply(game, source);
|
||||||
|
}
|
||||||
|
}
|
|
@ -183,6 +183,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Ketria Crystal", 236, Rarity.UNCOMMON, mage.cards.k.KetriaCrystal.class));
|
cards.add(new SetCardInfo("Ketria Crystal", 236, Rarity.UNCOMMON, mage.cards.k.KetriaCrystal.class));
|
||||||
cards.add(new SetCardInfo("Ketria Triome", 250, Rarity.RARE, mage.cards.k.KetriaTriome.class));
|
cards.add(new SetCardInfo("Ketria Triome", 250, Rarity.RARE, mage.cards.k.KetriaTriome.class));
|
||||||
cards.add(new SetCardInfo("Kogla, the Titan Ape", 162, Rarity.RARE, mage.cards.k.KoglaTheTitanApe.class));
|
cards.add(new SetCardInfo("Kogla, the Titan Ape", 162, Rarity.RARE, mage.cards.k.KoglaTheTitanApe.class));
|
||||||
|
cards.add(new SetCardInfo("Labyrinth Raptor", 193, Rarity.RARE, mage.cards.l.LabyrinthRaptor.class));
|
||||||
cards.add(new SetCardInfo("Lava Serpent", 124, Rarity.COMMON, mage.cards.l.LavaSerpent.class));
|
cards.add(new SetCardInfo("Lava Serpent", 124, Rarity.COMMON, mage.cards.l.LavaSerpent.class));
|
||||||
cards.add(new SetCardInfo("Lead the Stampede", 163, Rarity.UNCOMMON, mage.cards.l.LeadTheStampede.class));
|
cards.add(new SetCardInfo("Lead the Stampede", 163, Rarity.UNCOMMON, mage.cards.l.LeadTheStampede.class));
|
||||||
cards.add(new SetCardInfo("Light of Hope", 20, Rarity.COMMON, mage.cards.l.LightOfHope.class));
|
cards.add(new SetCardInfo("Light of Hope", 20, Rarity.COMMON, mage.cards.l.LightOfHope.class));
|
||||||
|
|
Loading…
Reference in a new issue