mirror of
https://github.com/correl/mage.git
synced 2024-12-30 19:10:36 +00:00
Merge pull request #10207 from Grath/master
[MOC] Implement Katilda and Lier
This commit is contained in:
commit
c418067b00
2 changed files with 89 additions and 0 deletions
88
Mage.Sets/src/mage/cards/k/KatildaAndLier.java
Normal file
88
Mage.Sets/src/mage/cards/k/KatildaAndLier.java
Normal file
|
@ -0,0 +1,88 @@
|
|||
package mage.cards.k;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
||||
import mage.abilities.effects.ContinuousEffectImpl;
|
||||
import mage.abilities.keyword.FlashbackAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.game.Game;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class KatildaAndLier extends CardImpl {
|
||||
|
||||
private static final FilterSpell filterSpell = new FilterSpell("a Human spell");
|
||||
private static final FilterCard filterCard = new FilterCard("instant or sorcery card in your graveyard");
|
||||
|
||||
static {
|
||||
filterSpell.add(SubType.HUMAN.getPredicate());
|
||||
filterCard.add(Predicates.or(
|
||||
CardType.INSTANT.getPredicate(),
|
||||
CardType.SORCERY.getPredicate()));
|
||||
}
|
||||
|
||||
public KatildaAndLier(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{W}{U}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Each instant and sorcery card in your graveyard has flashback. The flashback cost is equal to that card's mana cost.
|
||||
Ability ability = new SpellCastControllerTriggeredAbility(new KatildaAndLierEffect(), filterSpell, false);
|
||||
ability.addTarget(new TargetCardInYourGraveyard(filterCard));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private KatildaAndLier(final KatildaAndLier card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KatildaAndLier copy() {
|
||||
return new KatildaAndLier(this);
|
||||
}
|
||||
}
|
||||
|
||||
class KatildaAndLierEffect extends ContinuousEffectImpl {
|
||||
|
||||
public KatildaAndLierEffect() {
|
||||
super(Duration.EndOfTurn, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
|
||||
this.staticText = "target instant or sorcery card in your graveyard gains flashback until end of turn. The flashback cost is equal to its mana cost";
|
||||
}
|
||||
|
||||
public KatildaAndLierEffect(final KatildaAndLierEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KatildaAndLierEffect copy() {
|
||||
return new KatildaAndLierEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Card card = game.getCard(targetPointer.getFirst(game, source));
|
||||
if (card != null) {
|
||||
FlashbackAbility ability = new FlashbackAbility(card, card.getManaCost());
|
||||
ability.setSourceId(card.getId());
|
||||
ability.setControllerId(card.getOwnerId());
|
||||
game.getState().addOtherAbility(card, ability);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
|
@ -160,6 +160,7 @@ public final class MarchOfTheMachineCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Kalonian Hydra", 305, Rarity.MYTHIC, mage.cards.k.KalonianHydra.class));
|
||||
cards.add(new SetCardInfo("Karn's Bastion", 409, Rarity.RARE, mage.cards.k.KarnsBastion.class));
|
||||
cards.add(new SetCardInfo("Kasla, the Broken Halo", 4, Rarity.MYTHIC, mage.cards.k.KaslaTheBrokenHalo.class));
|
||||
cards.add(new SetCardInfo("Katilda and Lier", 446, Rarity.MYTHIC, mage.cards.k.KatildaAndLier.class));
|
||||
cards.add(new SetCardInfo("Keeper of the Accord", 191, Rarity.RARE, mage.cards.k.KeeperOfTheAccord.class));
|
||||
cards.add(new SetCardInfo("Keskit, the Flesh Sculptor", 254, Rarity.UNCOMMON, mage.cards.k.KeskitTheFleshSculptor.class));
|
||||
cards.add(new SetCardInfo("Kessig Wolf Run", 410, Rarity.RARE, mage.cards.k.KessigWolfRun.class));
|
||||
|
|
Loading…
Reference in a new issue