* Revitalize - Fixed life gaining, 3 instead of 4.

This commit is contained in:
LevelX2 2018-06-24 10:43:10 +02:00
parent d1cc207b42
commit 8f27adce46

View file

@ -1,4 +1,3 @@
package mage.cards.r;
import java.util.UUID;
@ -18,7 +17,7 @@ public final class Revitalize extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{W}");
// You gain 3 life.
this.getSpellAbility().addEffect(new GainLifeEffect(4));
this.getSpellAbility().addEffect(new GainLifeEffect(3));
// Draw a card.
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));