mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Merge pull request #10054 from Grath/grath/fix-lulu
[CLB] Fix Lulu, Loyal Hollyphant
This commit is contained in:
commit
50caccabb6
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import mage.counters.CounterType;
|
||||||
import mage.filter.FilterPermanent;
|
import mage.filter.FilterPermanent;
|
||||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
import mage.filter.predicate.permanent.TappedPredicate;
|
import mage.filter.predicate.permanent.TappedPredicate;
|
||||||
|
import mage.watchers.common.RevoltWatcher;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -51,7 +52,7 @@ public final class LuluLoyalHollyphant extends CardImpl {
|
||||||
TargetController.YOU, RevoltCondition.instance, false
|
TargetController.YOU, RevoltCondition.instance, false
|
||||||
);
|
);
|
||||||
ability.addEffect(new UntapAllEffect(filter).setText(", then untap them"));
|
ability.addEffect(new UntapAllEffect(filter).setText(", then untap them"));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability, new RevoltWatcher());
|
||||||
|
|
||||||
// Choose a Background
|
// Choose a Background
|
||||||
this.addAbility(ChooseABackgroundAbility.getInstance());
|
this.addAbility(ChooseABackgroundAbility.getInstance());
|
||||||
|
|
Loading…
Reference in a new issue