Cradle of Vitality - fixed not workinggain life effect (fixes #7235).

This commit is contained in:
LevelX2 2020-12-11 14:05:18 +01:00
parent e6c79b94d9
commit 2bb472607b

View file

@ -27,7 +27,7 @@ public final class CradleOfVitality extends CardImpl {
// Whenever you gain life, you may pay {1}{W}. If you do, put a +1/+1 counter on target creature for each 1 life you gained.
Ability ability = new GainLifeControllerTriggeredAbility(new DoIfCostPaid(
new CradleOfVitalityEffect(), new ManaCostsImpl("{1}{W}")
), false);
), false, true);
ability.addTarget(new TargetCreaturePermanent());
this.addAbility(ability);
}