[AFC] added missing hint to revivify

This commit is contained in:
Evan Kranzler 2021-07-13 19:19:59 -04:00
parent 4fb63ab950
commit 6a5112959f

View file

@ -45,6 +45,7 @@ public final class Revivify extends CardImpl {
); );
this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addWatcher(new CardsPutIntoGraveyardWatcher()); this.getSpellAbility().addWatcher(new CardsPutIntoGraveyardWatcher());
this.getSpellAbility().addHint(hint);
// 1-14 | Return all creature cards in your graveyard that were put there from the battlefield this turn to your hand. // 1-14 | Return all creature cards in your graveyard that were put there from the battlefield this turn to your hand.
effect.addTableEntry(1, 14, new RevivifyEffect(true)); effect.addTableEntry(1, 14, new RevivifyEffect(true));