forked from External/mage
63 lines
2.2 KiB
Java
63 lines
2.2 KiB
Java
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.dynamicvalue.common.ManacostVariableValue;
|
|
import mage.abilities.effects.common.DamageAllEffect;
|
|
import mage.abilities.effects.common.DamageTargetEffect;
|
|
import mage.abilities.keyword.ChannelAbility;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
import mage.constants.Zone;
|
|
import mage.filter.common.FilterCreaturePermanent;
|
|
import mage.filter.predicate.mageobject.AbilityPredicate;
|
|
import mage.target.TargetPermanent;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public final class ArashiTheSkyAsunder extends CardImpl {
|
|
|
|
static final private FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with flying");
|
|
|
|
static {
|
|
filter.add(new AbilityPredicate(FlyingAbility.class));
|
|
}
|
|
|
|
public ArashiTheSkyAsunder(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}{G}");
|
|
addSuperType(SuperType.LEGENDARY);
|
|
this.subtype.add(SubType.SPIRIT);
|
|
|
|
this.power = new MageInt(5);
|
|
this.toughness = new MageInt(5);
|
|
|
|
// {X}{G}, {tap}: Arashi, the Sky Asunder deals X damage to target creature with flying.
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(ManacostVariableValue.instance), new ManaCostsImpl("{X}{G}"));
|
|
ability.addCost(new TapSourceCost());
|
|
ability.addTarget(new TargetPermanent(filter));
|
|
this.addAbility(ability);
|
|
|
|
// Channel - {X}{G}{G}, Discard Arashi: Arashi deals X damage to each creature with flying.
|
|
this.addAbility(new ChannelAbility("{X}{G}{G}", new DamageAllEffect(ManacostVariableValue.instance, filter)));
|
|
}
|
|
|
|
public ArashiTheSkyAsunder(final ArashiTheSkyAsunder card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public ArashiTheSkyAsunder copy() {
|
|
return new ArashiTheSkyAsunder(this);
|
|
}
|
|
}
|