mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Form of the Dragon - Fixed tooltip text.
This commit is contained in:
parent
8a50dacc9f
commit
e2c8b8f583
2 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ import mage.target.common.TargetCreatureOrPlayer;
|
|||
*/
|
||||
public class FormOfTheDragon extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Creatures without flying");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures without flying");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
|
|
|
@ -45,13 +45,13 @@ public class CantAttackYouAllEffect extends RestrictionEffect {
|
|||
private final FilterCreaturePermanent filterAttacker;
|
||||
|
||||
public CantAttackYouAllEffect(Duration duration) {
|
||||
this(duration, new FilterCreaturePermanent());
|
||||
this(duration, new FilterCreaturePermanent("creatures"));
|
||||
}
|
||||
|
||||
public CantAttackYouAllEffect(Duration duration, FilterCreaturePermanent filter) {
|
||||
super(duration, Outcome.Benefit);
|
||||
this.filterAttacker = filter;
|
||||
staticText = "Creatures can't attack you";
|
||||
staticText = filterAttacker.getMessage() + " can't attack you";
|
||||
}
|
||||
|
||||
CantAttackYouAllEffect(final CantAttackYouAllEffect effect) {
|
||||
|
|
Loading…
Reference in a new issue