diff --git a/Mage.Sets/src/mage/cards/p/PathToTheWorldTree.java b/Mage.Sets/src/mage/cards/p/PathToTheWorldTree.java new file mode 100644 index 0000000000..b398d8868d --- /dev/null +++ b/Mage.Sets/src/mage/cards/p/PathToTheWorldTree.java @@ -0,0 +1,103 @@ +package mage.cards.p; + +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.SacrificeSourceCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.filter.StaticFilters; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.game.permanent.token.BearToken; +import mage.players.Player; +import mage.target.Target; +import mage.target.common.TargetCardInLibrary; +import mage.target.common.TargetCreaturePermanent; +import mage.target.common.TargetOpponent; + +import java.util.Collection; +import java.util.UUID; +import java.util.stream.Collectors; + +/** + * @author TheElk801 + */ +public final class PathToTheWorldTree extends CardImpl { + + public PathToTheWorldTree(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}"); + + // When Path to the World Tree enters the battlefield, search your library for a basic land card, reveal it, put it into your hand, then shuffle your library. + this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect( + new TargetCardInLibrary(StaticFilters.FILTER_CARD_BASIC_LAND), true + ))); + + // {2}{W}{U}{B}{R}{G}, Sacrifice Path to the World Tree: You gain 2 life and draw two cards. Target opponent loses 2 life. Path to the World Tree deals 2 damage to up to one target creature. You create a 2/2 green Bear creature token. + Ability ability = new SimpleActivatedAbility( + new PathToTheWorldTreeEffect(), new ManaCostsImpl("{2}{W}{U}{B}{R}{G}") + ); + ability.addCost(new SacrificeSourceCost()); + ability.addTarget(new TargetOpponent()); + ability.addTarget(new TargetCreaturePermanent(0, 1)); + this.addAbility(ability); + } + + private PathToTheWorldTree(final PathToTheWorldTree card) { + super(card); + } + + @Override + public PathToTheWorldTree copy() { + return new PathToTheWorldTree(this); + } +} + +class PathToTheWorldTreeEffect extends OneShotEffect { + + PathToTheWorldTreeEffect() { + super(Outcome.Benefit); + staticText = "You gain 2 life and draw two cards. Target opponent loses 2 life. " + + "{this} deals 2 damage to up to one target creature. You create a 2/2 green Bear creature token."; + } + + private PathToTheWorldTreeEffect(final PathToTheWorldTreeEffect effect) { + super(effect); + } + + @Override + public PathToTheWorldTreeEffect copy() { + return new PathToTheWorldTreeEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player controller = game.getPlayer(source.getControllerId()); + if (controller != null) { + controller.gainLife(2, game, source); + controller.drawCards(2, source, game); + } + for (UUID targetId : source + .getTargets() + .stream() + .map(Target::getTargets) + .flatMap(Collection::stream) + .collect(Collectors.toList())) { + Player player = game.getPlayer(targetId); + if (player != null) { + player.loseLife(2, game, source, false); + } + Permanent permanent = game.getPermanent(targetId); + if (permanent != null) { + permanent.damage(2, source.getSourceId(), source, game); + } + } + new BearToken().putOntoBattlefield(1, game, source, source.getControllerId()); + return true; + } +} diff --git a/Mage.Sets/src/mage/sets/Kaldheim.java b/Mage.Sets/src/mage/sets/Kaldheim.java index 341ef9cca3..05fe8af2b6 100644 --- a/Mage.Sets/src/mage/sets/Kaldheim.java +++ b/Mage.Sets/src/mage/sets/Kaldheim.java @@ -101,6 +101,7 @@ public final class Kaldheim extends ExpansionSet { cards.add(new SetCardInfo("Masked Vandal", 184, Rarity.COMMON, mage.cards.m.MaskedVandal.class)); cards.add(new SetCardInfo("Maskwood Nexus", 240, Rarity.RARE, mage.cards.m.MaskwoodNexus.class)); cards.add(new SetCardInfo("Niko Aris", 225, Rarity.MYTHIC, mage.cards.n.NikoAris.class)); + cards.add(new SetCardInfo("Path to the World Tree", 186, Rarity.UNCOMMON, mage.cards.p.PathToTheWorldTree.class)); cards.add(new SetCardInfo("Pyre of Heroes", 241, Rarity.RARE, mage.cards.p.PyreOfHeroes.class)); cards.add(new SetCardInfo("Rampage of the Valkyries", 393, Rarity.UNCOMMON, mage.cards.r.RampageOfTheValkyries.class)); cards.add(new SetCardInfo("Ravenform", 72, Rarity.COMMON, mage.cards.r.Ravenform.class));