From febbc3e92a5542fc2634e3dfb9764671de07e74a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 10 Sep 2017 10:23:30 +0200 Subject: [PATCH] * Vindictive Lich - Fixed that the 3rd option was set to lose 2 life instead of correctly 5 life. --- Mage.Sets/src/mage/cards/v/VindictiveLich.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/v/VindictiveLich.java b/Mage.Sets/src/mage/cards/v/VindictiveLich.java index bf8182a2d25..13a00730842 100644 --- a/Mage.Sets/src/mage/cards/v/VindictiveLich.java +++ b/Mage.Sets/src/mage/cards/v/VindictiveLich.java @@ -83,7 +83,7 @@ public class VindictiveLich extends CardImpl { // *Target opponent loses 5 life. mode = new Mode(); - mode.getEffects().add(new LoseLifeTargetEffect(2)); + mode.getEffects().add(new LoseLifeTargetEffect(5)); filter = new FilterOpponent("opponent (life loss)"); filter.add(new AnotherTargetPredicate(3, true)); target = new TargetOpponent(filter, false);