mage/Mage.Sets/src/mage/cards/a/AetherGale.java
xenohedron ba9ede4d66
fix some text and StaticFilters (#10698)
* StaticFilters: "a noncreature spell"

* StaticFilters: "other creatures you control"

* unrelated text fixes

* CMM text fixes

* fix error

* fix apostrophe

* adjustments
2023-07-29 13:46:16 -04:00

34 lines
946 B
Java

package mage.cards.a;
import java.util.UUID;
import mage.abilities.effects.common.ReturnToHandTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.filter.StaticFilters;
import mage.target.common.TargetNonlandPermanent;
/**
*
* @author LevelX2
*/
public final class AetherGale extends CardImpl {
public AetherGale(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{3}{U}{U}");
// Return six target nonland permanents to their owners' hands.
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
this.getSpellAbility().addTarget(new TargetNonlandPermanent(6,6, StaticFilters.FILTER_PERMANENTS_NON_LAND, false));
}
private AetherGale(final AetherGale card) {
super(card);
}
@Override
public AetherGale copy() {
return new AetherGale(this);
}
}