mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
* Revitalize - Fixed life gaining, 3 instead of 4.
This commit is contained in:
parent
d1cc207b42
commit
8f27adce46
1 changed files with 1 additions and 2 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue