mirror of
https://github.com/magefree/mage.git
synced 2026-01-22 11:19:55 -08:00
[GRN] Implemented Blood Operative.
This commit is contained in:
parent
41a0ead77c
commit
bf9dfd5878
3 changed files with 257 additions and 160 deletions
97
Mage.Sets/src/mage/cards/b/BloodOperative.java
Normal file
97
Mage.Sets/src/mage/cards/b/BloodOperative.java
Normal file
|
|
@ -0,0 +1,97 @@
|
||||||
|
package mage.cards.b;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.TriggeredAbilityImpl;
|
||||||
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
|
import mage.abilities.costs.common.PayLifeCost;
|
||||||
|
import mage.abilities.effects.common.DoIfCostPaid;
|
||||||
|
import mage.abilities.effects.common.ExileTargetEffect;
|
||||||
|
import mage.abilities.effects.common.ReturnSourceFromGraveyardToHandEffect;
|
||||||
|
import mage.abilities.keyword.LifelinkAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.common.TargetCardInGraveyard;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author LevelX2
|
||||||
|
*/
|
||||||
|
public final class BloodOperative extends CardImpl {
|
||||||
|
|
||||||
|
public BloodOperative(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.VAMPIRE);
|
||||||
|
this.subtype.add(SubType.ASSASSIN);
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
|
// Lifelink
|
||||||
|
this.addAbility(LifelinkAbility.getInstance());
|
||||||
|
|
||||||
|
// When Blood Operative enters the battlefield, you may exile target card from a graveyard.
|
||||||
|
Ability ability = new EntersBattlefieldTriggeredAbility(new ExileTargetEffect(), true);
|
||||||
|
ability.addTarget(new TargetCardInGraveyard());
|
||||||
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
// Whenever you surveil, if Blood Operative is in your graveyard, you may pay 3 life. If you do, return Blood Operative to your hand.
|
||||||
|
this.addAbility(new BloodOperativeTriggeredAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
public BloodOperative(final BloodOperative card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BloodOperative copy() {
|
||||||
|
return new BloodOperative(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BloodOperativeTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
|
public BloodOperativeTriggeredAbility() {
|
||||||
|
super(Zone.BATTLEFIELD, new DoIfCostPaid(new ReturnSourceFromGraveyardToHandEffect(), new PayLifeCost(3)), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public BloodOperativeTriggeredAbility(final BloodOperativeTriggeredAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BloodOperativeTriggeredAbility copy() {
|
||||||
|
return new BloodOperativeTriggeredAbility(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.SURVEIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkTrigger(GameEvent event, Game game) {
|
||||||
|
return event.getPlayerId().equals(getControllerId());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkInterveningIfClause(Game game) {
|
||||||
|
Player controller = game.getPlayer(getControllerId());
|
||||||
|
if (controller != null && controller.getGraveyard().contains(getSourceId())) {
|
||||||
|
return super.checkInterveningIfClause(game);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getRule() {
|
||||||
|
return "Whenever you surveil, if {this} is in your graveyard, you may pay 3 life. If you do, return {this} to your hand.";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -9,11 +9,10 @@ import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.keyword.ProtectionAbility;
|
import mage.abilities.keyword.ProtectionAbility;
|
||||||
import mage.cards.Card;
|
import mage.cards.Card;
|
||||||
import mage.constants.*;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.*;
|
||||||
import mage.filter.FilterCard;
|
import mage.filter.FilterCard;
|
||||||
import mage.filter.common.FilterCreatureCard;
|
|
||||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||||
import mage.game.ExileZone;
|
import mage.game.ExileZone;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
|
|
@ -109,18 +108,18 @@ class MirrorGolemEffect extends ContinuousEffectImpl {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (UUID imprinted : sourceObject.getImprinted()){
|
for (UUID imprinted : sourceObject.getImprinted()) {
|
||||||
if (imprinted != null && exileZone.contains(imprinted)){
|
if (imprinted != null && exileZone.contains(imprinted)) {
|
||||||
Card card = game.getCard(imprinted);
|
Card card = game.getCard(imprinted);
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
for (CardType cardType : card.getCardType()){
|
for (CardType cardType : card.getCardType()) {
|
||||||
FilterCard filterCard;
|
FilterCard filterCard;
|
||||||
if (cardType.equals(CardType.SORCERY)){
|
if (cardType.equals(CardType.SORCERY)) {
|
||||||
filterCard = new FilterCard("sorceries");
|
filterCard = new FilterCard("sorceries");
|
||||||
} else if (cardType.equals(CardType.TRIBAL)){
|
} else if (cardType.equals(CardType.TRIBAL)) {
|
||||||
filterCard = new FilterCard("tribal");
|
filterCard = new FilterCard("tribal");
|
||||||
} else {
|
} else {
|
||||||
filterCard = new FilterCard(cardType.toString()+"s");
|
filterCard = new FilterCard(cardType.toString() + "s");
|
||||||
}
|
}
|
||||||
filterCard.add(new CardTypePredicate(cardType));
|
filterCard.add(new CardTypePredicate(cardType));
|
||||||
sourceObject.addAbility(new ProtectionAbility(filterCard));
|
sourceObject.addAbility(new ProtectionAbility(filterCard));
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Barging Sergeant", 92, Rarity.COMMON, mage.cards.b.BargingSergeant.class));
|
cards.add(new SetCardInfo("Barging Sergeant", 92, Rarity.COMMON, mage.cards.b.BargingSergeant.class));
|
||||||
cards.add(new SetCardInfo("Beast Whisperer", 123, Rarity.RARE, mage.cards.b.BeastWhisperer.class));
|
cards.add(new SetCardInfo("Beast Whisperer", 123, Rarity.RARE, mage.cards.b.BeastWhisperer.class));
|
||||||
cards.add(new SetCardInfo("Blade Instructor", 1, Rarity.COMMON, mage.cards.b.BladeInstructor.class));
|
cards.add(new SetCardInfo("Blade Instructor", 1, Rarity.COMMON, mage.cards.b.BladeInstructor.class));
|
||||||
|
cards.add(new SetCardInfo("Blood Operative", 63, Rarity.RARE, mage.cards.b.BloodOperative.class));
|
||||||
cards.add(new SetCardInfo("Boros Challenger", 156, Rarity.UNCOMMON, mage.cards.b.BorosChallenger.class));
|
cards.add(new SetCardInfo("Boros Challenger", 156, Rarity.UNCOMMON, mage.cards.b.BorosChallenger.class));
|
||||||
cards.add(new SetCardInfo("Boros Guildgate", 243, Rarity.COMMON, mage.cards.b.BorosGuildgate.class));
|
cards.add(new SetCardInfo("Boros Guildgate", 243, Rarity.COMMON, mage.cards.b.BorosGuildgate.class));
|
||||||
cards.add(new SetCardInfo("Boros Guildgate", 244, Rarity.COMMON, mage.cards.b.BorosGuildgate.class));
|
cards.add(new SetCardInfo("Boros Guildgate", 244, Rarity.COMMON, mage.cards.b.BorosGuildgate.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue