1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

[STX] Implemented Lorehold Excavation

This commit is contained in:
Evan Kranzler 2021-03-30 19:35:07 -04:00
parent f831eac6fc
commit f8f9ee6973
2 changed files with 89 additions and 0 deletions

View file

@ -0,0 +1,88 @@
package mage.cards.l;
import mage.abilities.Ability;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.ExileFromGraveCost;
import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.effects.Effect;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.DamagePlayersEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.TargetController;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.game.permanent.token.LoreholdToken;
import mage.players.Player;
import mage.target.common.TargetCardInYourGraveyard;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class LoreholdExcavation extends CardImpl {
public LoreholdExcavation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{R}{W}");
// At the beginning of your end step, mill a card. If a land card was milled this way, you gain 1 life. Otherwise, Lorehold Excavation deals 1 damage to each opponent.
this.addAbility(new BeginningOfEndStepTriggeredAbility(
new LoreholdExcavationEffect(), TargetController.YOU, false
));
// {5}, Exile a creature card from your graveyard: Create a tapped 3/2 red and white Spirit creature token.
Ability ability = new SimpleActivatedAbility(new CreateTokenEffect(
new LoreholdToken(), 1, true, false
), new GenericManaCost(5));
ability.addCost(new ExileFromGraveCost(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE)));
this.addAbility(ability);
}
private LoreholdExcavation(final LoreholdExcavation card) {
super(card);
}
@Override
public LoreholdExcavation copy() {
return new LoreholdExcavation(this);
}
}
class LoreholdExcavationEffect extends OneShotEffect {
private static final Effect effect = new DamagePlayersEffect(1, TargetController.OPPONENT);
LoreholdExcavationEffect() {
super(Outcome.Benefit);
staticText = "mill a card. If a land card was milled this way, you gain 1 life. " +
"Otherwise, {this} deals 1 damage to each opponent";
}
private LoreholdExcavationEffect(final LoreholdExcavationEffect effect) {
super(effect);
}
@Override
public LoreholdExcavationEffect copy() {
return new LoreholdExcavationEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
if (player == null) {
return false;
}
if (player.millCards(1, source, game).count(StaticFilters.FILTER_CARD_LAND, game) > 0) {
player.gainLife(1, game, source);
return true;
}
effect.apply(game, source);
return true;
}
}

View file

@ -63,6 +63,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
cards.add(new SetCardInfo("Lorehold Apprentice", 198, Rarity.UNCOMMON, mage.cards.l.LoreholdApprentice.class));
cards.add(new SetCardInfo("Lorehold Campus", 268, Rarity.COMMON, mage.cards.l.LoreholdCampus.class));
cards.add(new SetCardInfo("Lorehold Command", 199, Rarity.RARE, mage.cards.l.LoreholdCommand.class));
cards.add(new SetCardInfo("Lorehold Excavation", 200, Rarity.UNCOMMON, mage.cards.l.LoreholdExcavation.class));
cards.add(new SetCardInfo("Lorehold Pledgemage", 201, Rarity.COMMON, mage.cards.l.LoreholdPledgemage.class));
cards.add(new SetCardInfo("Magma Opus", 203, Rarity.MYTHIC, mage.cards.m.MagmaOpus.class));
cards.add(new SetCardInfo("Mountain", 372, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));