mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[SNC] Implemented Incandescent Aria
This commit is contained in:
parent
601ddbbe86
commit
30c7d68392
2 changed files with 40 additions and 0 deletions
39
Mage.Sets/src/mage/cards/i/IncandescentAria.java
Normal file
39
Mage.Sets/src/mage/cards/i/IncandescentAria.java
Normal file
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.i;
|
||||
|
||||
import mage.abilities.effects.common.DamageAllEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.TokenPredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class IncandescentAria extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("nontoken creature");
|
||||
|
||||
static {
|
||||
filter.add(TokenPredicate.FALSE);
|
||||
}
|
||||
|
||||
public IncandescentAria(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{R}{G}{W}");
|
||||
|
||||
// Incandescent Aria deals 3 damage to each nontoken creature.
|
||||
this.getSpellAbility().addEffect(new DamageAllEffect(3, filter));
|
||||
}
|
||||
|
||||
private IncandescentAria(final IncandescentAria card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IncandescentAria copy() {
|
||||
return new IncandescentAria(this);
|
||||
}
|
||||
}
|
|
@ -73,6 +73,7 @@ public final class StreetsOfNewCapenna extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Hypnotic Grifter", 45, Rarity.UNCOMMON, mage.cards.h.HypnoticGrifter.class));
|
||||
cards.add(new SetCardInfo("Illicit Shipment", 83, Rarity.UNCOMMON, mage.cards.i.IllicitShipment.class));
|
||||
cards.add(new SetCardInfo("Illuminator Virtuoso", 17, Rarity.UNCOMMON, mage.cards.i.IlluminatorVirtuoso.class));
|
||||
cards.add(new SetCardInfo("Incandescent Aria", 192, Rarity.RARE, mage.cards.i.IncandescentAria.class));
|
||||
cards.add(new SetCardInfo("Incriminate", 84, Rarity.COMMON, mage.cards.i.Incriminate.class));
|
||||
cards.add(new SetCardInfo("Island", 264, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Jaxis, the Troublemaker", 112, Rarity.RARE, mage.cards.j.JaxisTheTroublemaker.class));
|
||||
|
|
Loading…
Reference in a new issue