mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
[DSK] Implement Grab the Prize (#13049)
This commit is contained in:
parent
01dd97ae21
commit
0853ac81cb
2 changed files with 61 additions and 0 deletions
60
Mage.Sets/src/mage/cards/g/GrabThePrize.java
Normal file
60
Mage.Sets/src/mage/cards/g/GrabThePrize.java
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.costs.common.DiscardCardCost;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.DamagePlayersEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.TargetController;
|
||||
import mage.game.Game;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
/**
|
||||
* @author Jamaninja
|
||||
*/
|
||||
public final class GrabThePrize extends CardImpl {
|
||||
|
||||
public GrabThePrize(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{R}");
|
||||
|
||||
// As an additional cost to cast this spell, discard a card.
|
||||
this.getSpellAbility().addCost(new DiscardCardCost());
|
||||
|
||||
// Draw two cards.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2));
|
||||
|
||||
// If the discarded card wasn't a land card, {this} deals two damage to each opponent.
|
||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||
new DamagePlayersEffect(2, TargetController.OPPONENT),
|
||||
GrabThePrizeCondition.instance,
|
||||
"If the discarded card wasn't a land card, {this} deals two damage to each opponent."));
|
||||
}
|
||||
|
||||
private GrabThePrize(final GrabThePrize card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GrabThePrize copy() {
|
||||
return new GrabThePrize(this);
|
||||
}
|
||||
}
|
||||
|
||||
enum GrabThePrizeCondition implements Condition {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return CardUtil.castStream(source.getCosts().stream(), DiscardCardCost.class)
|
||||
.map(DiscardCardCost::getCards)
|
||||
.flatMap(Collection::stream)
|
||||
.anyMatch(card -> !card.isLand(game));
|
||||
}
|
||||
}
|
||||
|
|
@ -108,6 +108,7 @@ public final class DuskmournHouseOfHorror extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Glimmerburst", 62, Rarity.COMMON, mage.cards.g.Glimmerburst.class));
|
||||
cards.add(new SetCardInfo("Glimmerlight", 249, Rarity.COMMON, mage.cards.g.Glimmerlight.class));
|
||||
cards.add(new SetCardInfo("Gloomlake Verge", 260, Rarity.RARE, mage.cards.g.GloomlakeVerge.class));
|
||||
cards.add(new SetCardInfo("Grab the Prize", 138, Rarity.COMMON, mage.cards.g.GrabThePrize.class));
|
||||
cards.add(new SetCardInfo("Grasping Longneck", 180, Rarity.COMMON, mage.cards.g.GraspingLongneck.class));
|
||||
cards.add(new SetCardInfo("Gremlin Tamer", 215, Rarity.UNCOMMON, mage.cards.g.GremlinTamer.class));
|
||||
cards.add(new SetCardInfo("Grievous Wound", 102, Rarity.RARE, mage.cards.g.GrievousWound.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue