mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[STX] Implemented Kianne, Dean of Substance / Imbraham, Dean of Theory
This commit is contained in:
parent
a34e4ee227
commit
6d2eb26a9e
2 changed files with 209 additions and 0 deletions
208
Mage.Sets/src/mage/cards/k/KianneDeanOfSubstance.java
Normal file
208
Mage.Sets/src/mage/cards/k/KianneDeanOfSubstance.java
Normal file
|
@ -0,0 +1,208 @@
|
|||
package mage.cards.k;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.*;
|
||||
import mage.constants.*;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterOwnedCard;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.FractalToken;
|
||||
import mage.game.permanent.token.Token;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetCard;
|
||||
import mage.target.common.TargetCardInExile;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class KianneDeanOfSubstance extends ModalDoubleFacesCard {
|
||||
|
||||
public KianneDeanOfSubstance(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo,
|
||||
new CardType[]{CardType.CREATURE}, new SubType[]{SubType.ELF, SubType.DRUID}, "{2}{G}",
|
||||
"Imbraham, Dean of Theory", new CardType[]{CardType.CREATURE}, new SubType[]{SubType.BIRD, SubType.WIZARD}, "{2}{U}{U}");
|
||||
|
||||
// 1.
|
||||
// Kianne, Dean of Substance
|
||||
// Legendary Creature - Elf Druid
|
||||
this.getLeftHalfCard().addSuperType(SuperType.LEGENDARY);
|
||||
this.getLeftHalfCard().setPT(2, 2);
|
||||
|
||||
// {T}: Exile the top card of your library. If it's a land card, put it into your hand. Otherwise, put a study counter on it.
|
||||
this.getLeftHalfCard().addAbility(new SimpleActivatedAbility(
|
||||
new KianneDeanOfSubstanceExileEffect(), new TapSourceCost()
|
||||
));
|
||||
|
||||
// {4}{G}: Create a 0/0 green and blue Fractal creature token. Put a +1/+1 counter on it for each different mana value among nonland cards you own in exile with study counters on them.
|
||||
this.getLeftHalfCard().addAbility(new SimpleActivatedAbility(
|
||||
new KianneDeanOfSubstanceTokenEffect(), new ManaCostsImpl("{4}{G}")
|
||||
));
|
||||
|
||||
// 2.
|
||||
// Imbraham, Dean of Theory
|
||||
// Legendary Creature - Bird Wizard
|
||||
this.getRightHalfCard().addSuperType(SuperType.LEGENDARY);
|
||||
this.getRightHalfCard().setPT(3, 3);
|
||||
|
||||
// Flying
|
||||
this.getRightHalfCard().addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// {X}{U}{U}, {T}: Exile the top X cards of your library and put a study counter on each of them. Then you may put a card you own in exile with a study counter on it into your hand.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
new ImbrahamDeanOfTheoryEffect(), new ManaCostsImpl("{X}{U}{U}")
|
||||
);
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.getRightHalfCard().addAbility(ability);
|
||||
}
|
||||
|
||||
private KianneDeanOfSubstance(final KianneDeanOfSubstance card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KianneDeanOfSubstance copy() {
|
||||
return new KianneDeanOfSubstance(this);
|
||||
}
|
||||
}
|
||||
|
||||
class KianneDeanOfSubstanceExileEffect extends OneShotEffect {
|
||||
|
||||
KianneDeanOfSubstanceExileEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Exile the top card of your library. If it's a land card, " +
|
||||
"put it into your hand. Otherwise, put a study counter on it.";
|
||||
}
|
||||
|
||||
private KianneDeanOfSubstanceExileEffect(final KianneDeanOfSubstanceExileEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KianneDeanOfSubstanceExileEffect copy() {
|
||||
return new KianneDeanOfSubstanceExileEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
Card card = player.getLibrary().getFromTop(game);
|
||||
if (card == null) {
|
||||
return false;
|
||||
}
|
||||
player.moveCards(card, Zone.EXILED, source, game);
|
||||
if (card.isLand()) {
|
||||
return player.moveCards(card, Zone.HAND, source, game);
|
||||
}
|
||||
return card.getMainCard().addCounters(
|
||||
CounterType.STUDY.createInstance(),
|
||||
player.getId(), source, game
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class KianneDeanOfSubstanceTokenEffect extends OneShotEffect {
|
||||
|
||||
KianneDeanOfSubstanceTokenEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "create a 0/0 green and blue Fractal creature token. Put a +1/+1 counter on it " +
|
||||
"for each different mana value among nonland cards you own in exile with study counters on them";
|
||||
}
|
||||
|
||||
private KianneDeanOfSubstanceTokenEffect(final KianneDeanOfSubstanceTokenEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KianneDeanOfSubstanceTokenEffect copy() {
|
||||
return new KianneDeanOfSubstanceTokenEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Token token = new FractalToken();
|
||||
token.putOntoBattlefield(1, game, source, source.getControllerId());
|
||||
int exileCount = game
|
||||
.getExile()
|
||||
.getAllCards(game)
|
||||
.stream()
|
||||
.filter(Objects::nonNull)
|
||||
.filter(card -> card.isOwnedBy(source.getControllerId()))
|
||||
.map(MageObject::getConvertedManaCost)
|
||||
.distinct()
|
||||
.mapToInt(x -> 1)
|
||||
.sum();
|
||||
if (exileCount < 1) {
|
||||
return true;
|
||||
}
|
||||
for (UUID tokenId : token.getLastAddedTokenIds()) {
|
||||
Permanent permanent = game.getPermanent(tokenId);
|
||||
if (permanent == null) {
|
||||
continue;
|
||||
}
|
||||
permanent.addCounters(CounterType.P1P1.createInstance(exileCount), source.getControllerId(), source, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
class ImbrahamDeanOfTheoryEffect extends OneShotEffect {
|
||||
|
||||
private static final FilterCard filter = new FilterOwnedCard("card you own in exile with a study counter on it");
|
||||
|
||||
static {
|
||||
filter.add(CounterType.STUDY.getPredicate());
|
||||
}
|
||||
|
||||
ImbrahamDeanOfTheoryEffect() {
|
||||
super(Outcome.DrawCard);
|
||||
staticText = "Exile the top X cards of your library and put a study counter on each of them. " +
|
||||
"Then you may put a card you own in exile with a study counter on it into your hand.";
|
||||
}
|
||||
|
||||
private ImbrahamDeanOfTheoryEffect(final ImbrahamDeanOfTheoryEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ImbrahamDeanOfTheoryEffect copy() {
|
||||
return new ImbrahamDeanOfTheoryEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
Cards cards = new CardsImpl(player.getLibrary().getTopCards(game, source.getManaCostsToPay().getX()));
|
||||
player.moveCards(cards, Zone.EXILED, source, game);
|
||||
for (Card card : cards.getCards(game)) {
|
||||
if (card == null) {
|
||||
continue;
|
||||
}
|
||||
card.addCounters(CounterType.STUDY.createInstance(), source.getControllerId(), source, game);
|
||||
}
|
||||
TargetCard targetCard = new TargetCardInExile(0, 1, filter, null);
|
||||
targetCard.setNotTarget(true);
|
||||
player.choose(outcome, targetCard, source.getSourceId(), game);
|
||||
Card card = game.getCard(targetCard.getFirstTarget());
|
||||
if (card != null) {
|
||||
player.moveCards(card, Zone.HAND, source, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -43,6 +43,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Island", 368, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 369, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Kasmina, Enigma Sage", 196, Rarity.MYTHIC, mage.cards.k.KasminaEnigmaSage.class));
|
||||
cards.add(new SetCardInfo("Kianne, Dean of Substance", 152, Rarity.RARE, mage.cards.k.KianneDeanOfSubstance.class));
|
||||
cards.add(new SetCardInfo("Lorehold Apprentice", 198, Rarity.UNCOMMON, mage.cards.l.LoreholdApprentice.class));
|
||||
cards.add(new SetCardInfo("Lorehold Command", 199, Rarity.RARE, mage.cards.l.LoreholdCommand.class));
|
||||
cards.add(new SetCardInfo("Mountain", 372, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
Loading…
Reference in a new issue