mirror of
https://github.com/correl/mage.git
synced 2025-03-17 01:06:26 -09:00
- little text fix on Spirit of the Spires
This commit is contained in:
parent
fbeedf7036
commit
0f53d2970a
1 changed files with 6 additions and 3 deletions
|
@ -13,6 +13,7 @@ import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.filter.predicate.mageobject.AbilityPredicate;
|
import mage.filter.predicate.mageobject.AbilityPredicate;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author TheElk801
|
* @author TheElk801
|
||||||
|
@ -20,7 +21,7 @@ import java.util.UUID;
|
||||||
public final class SpiritOfTheSpires extends CardImpl {
|
public final class SpiritOfTheSpires extends CardImpl {
|
||||||
|
|
||||||
private static final FilterCreaturePermanent filter
|
private static final FilterCreaturePermanent filter
|
||||||
= new FilterCreaturePermanent("creatures you control with flying");
|
= new FilterCreaturePermanent();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new AbilityPredicate(FlyingAbility.class));
|
filter.add(new AbilityPredicate(FlyingAbility.class));
|
||||||
|
@ -37,9 +38,11 @@ public final class SpiritOfTheSpires extends CardImpl {
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// Other creatures you control with flying get +0/+1.
|
// Other creatures you control with flying get +0/+1.
|
||||||
this.addAbility(new SimpleStaticAbility(new BoostControlledEffect(
|
Effect effect = new BoostControlledEffect(
|
||||||
0, 1, Duration.WhileOnBattlefield, filter, true
|
0, 1, Duration.WhileOnBattlefield, filter, true
|
||||||
)));
|
);
|
||||||
|
effect.setText("Other creatures you control with flying get +0/+1");
|
||||||
|
this.addAbility(new SimpleStaticAbility(effect));
|
||||||
}
|
}
|
||||||
|
|
||||||
private SpiritOfTheSpires(final SpiritOfTheSpires card) {
|
private SpiritOfTheSpires(final SpiritOfTheSpires card) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue