mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[STX] Implemented Crushing Disappointment
This commit is contained in:
parent
b1b3c13d60
commit
4db7db2bd9
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/c/CrushingDisappointment.java
Normal file
32
Mage.Sets/src/mage/cards/c/CrushingDisappointment.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeAllPlayersEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CrushingDisappointment extends CardImpl {
|
||||
|
||||
public CrushingDisappointment(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{B}");
|
||||
|
||||
// Each player loses 2 life. You draw two cards.
|
||||
this.getSpellAbility().addEffect(new LoseLifeAllPlayersEffect(2));
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2).concatBy("You"));
|
||||
}
|
||||
|
||||
private CrushingDisappointment(final CrushingDisappointment card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CrushingDisappointment copy() {
|
||||
return new CrushingDisappointment(this);
|
||||
}
|
||||
}
|
|
@ -58,6 +58,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Crackle with Power", 95, Rarity.MYTHIC, mage.cards.c.CrackleWithPower.class));
|
||||
cards.add(new SetCardInfo("Cram Session", 170, Rarity.COMMON, mage.cards.c.CramSession.class));
|
||||
cards.add(new SetCardInfo("Creative Outburst", 171, Rarity.UNCOMMON, mage.cards.c.CreativeOutburst.class));
|
||||
cards.add(new SetCardInfo("Crushing Disappointment", 68, Rarity.COMMON, mage.cards.c.CrushingDisappointment.class));
|
||||
cards.add(new SetCardInfo("Culmination of Studies", 173, Rarity.RARE, mage.cards.c.CulminationOfStudies.class));
|
||||
cards.add(new SetCardInfo("Curate", 40, Rarity.COMMON, mage.cards.c.Curate.class));
|
||||
cards.add(new SetCardInfo("Daemogoth Titan", 174, Rarity.RARE, mage.cards.d.DaemogothTitan.class));
|
||||
|
|
Loading…
Reference in a new issue