mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
* Verdeloth the Ancient - Fixed that Verdeloth did not get +1/+1 if he becomes a Saproling.
This commit is contained in:
parent
0ee86061b1
commit
1a81c42441
1 changed files with 3 additions and 2 deletions
|
@ -73,8 +73,9 @@ public class VerdelothTheAncient extends CardImpl<VerdelothTheAncient> {
|
|||
// Saproling creatures and other Treefolk creatures get +1/+1.
|
||||
FilterCreaturePermanent filter = new FilterCreaturePermanent("Saproling creatures and other Treefolk creatures");
|
||||
filter.add(Predicates.or(
|
||||
new SubtypePredicate("Treefolk"),
|
||||
new SubtypePredicate("Saproling")));
|
||||
Predicates.and(new SubtypePredicate("Treefolk"), Predicates.not(new PermanentIdPredicate(this.getId()))),
|
||||
new SubtypePredicate("Saproling"))
|
||||
);
|
||||
filter.add(Predicates.not(new PermanentIdPredicate(this.getId())));
|
||||
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostAllEffect(1,1, Duration.WhileOnBattlefield, filter, false)));
|
||||
|
|
Loading…
Reference in a new issue