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

[DMU] Implemented Inscribed Tablet

This commit is contained in:
Daniel Bomar 2022-08-22 18:23:08 -05:00
parent 7f439e23ab
commit 5a6212985b
No known key found for this signature in database
GPG key ID: C86C8658F4023918
2 changed files with 91 additions and 0 deletions
Mage.Sets/src/mage

View file

@ -0,0 +1,90 @@
package mage.cards.i;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.SacrificeSourceCost;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.effects.OneShotEffect;
import mage.cards.*;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.players.Player;
import mage.target.TargetCard;
/**
*
* @author weirddan455
*/
public final class InscribedTablet extends CardImpl {
public InscribedTablet(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}");
// {1}, {T}, Sacrifice Inscribed Tablet: Reveal the top five cards of your library.
// Put a land card from among them into your hand and the rest on the bottom of your library in a random order.
// If you didn't put a card into your hand this way, draw a card.
Ability ability = new SimpleActivatedAbility(new InscribedTabletEffect(), new GenericManaCost(1));
ability.addCost(new TapSourceCost());
ability.addCost(new SacrificeSourceCost());
this.addAbility(ability);
}
private InscribedTablet(final InscribedTablet card) {
super(card);
}
@Override
public InscribedTablet copy() {
return new InscribedTablet(this);
}
}
class InscribedTabletEffect extends OneShotEffect {
public InscribedTabletEffect() {
super(Outcome.DrawCard);
this.staticText = "Reveal the top five cards of your library. " +
"Put a land card from among them into your hand and the rest on the bottom of your library in a random order. " +
"If you didn't put a card into your hand this way, draw a card.";
}
private InscribedTabletEffect(final InscribedTabletEffect effect) {
super(effect);
}
@Override
public InscribedTabletEffect copy() {
return new InscribedTabletEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller == null) {
return false;
}
Cards cards = new CardsImpl(controller.getLibrary().getTopCards(game, 5));
controller.revealCards(source, cards, game);
boolean landToHand = false;
if (cards.count(StaticFilters.FILTER_CARD_LAND, controller.getId(), source, game) > 0) {
TargetCard target = new TargetCard(Zone.LIBRARY, StaticFilters.FILTER_CARD_LAND);
controller.chooseTarget(outcome, cards, target, source, game);
Card land = game.getCard(target.getFirstTarget());
if (land != null) {
cards.remove(land);
landToHand = controller.moveCards(land, Zone.HAND, source, game);
}
}
controller.putCardsOnBottomOfLibrary(cards, game, source, false);
if (!landToHand) {
controller.drawCards(1, source, game);
}
return true;
}
}

View file

@ -54,6 +54,7 @@ public final class DominariaUnited extends ExpansionSet {
cards.add(new SetCardInfo("Herd Migration", 165, Rarity.RARE, mage.cards.h.HerdMigration.class));
cards.add(new SetCardInfo("Hero's Heirloom", 231, Rarity.UNCOMMON, mage.cards.h.HerosHeirloom.class));
cards.add(new SetCardInfo("Impede Momentum", 54, Rarity.COMMON, mage.cards.i.ImpedeMomentum.class));
cards.add(new SetCardInfo("Inscribed Tablet", 232, Rarity.UNCOMMON, mage.cards.i.InscribedTablet.class));
cards.add(new SetCardInfo("Island", 265, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Jaya, Fiery Negotiator", 133, Rarity.MYTHIC, mage.cards.j.JayaFieryNegotiator.class));
cards.add(new SetCardInfo("Jhoira, Ageless Innovator", 202, Rarity.RARE, mage.cards.j.JhoiraAgelessInnovator.class));