mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
Nine-Lives Familiar text
This commit is contained in:
parent
31064f2604
commit
c220f0fa9f
1 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ class NineLivesFamiliarEffect extends OneShotEffect {
|
|||
|
||||
NineLivesFamiliarEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "return it to the battlefield";
|
||||
staticText = "return it to the battlefield with one fewer revival counter on it";
|
||||
}
|
||||
|
||||
private NineLivesFamiliarEffect(final NineLivesFamiliarEffect effect) {
|
||||
|
|
@ -99,7 +99,7 @@ class NineLivesFamiliarEffect extends OneShotEffect {
|
|||
}
|
||||
final int counters = permanent.getCounters(game).getCount(CounterType.REVIVAL) - 1;
|
||||
ReturnSourceFromGraveyardToBattlefieldWithCounterEffect effect = new ReturnSourceFromGraveyardToBattlefieldWithCounterEffect(CounterType.REVIVAL.createInstance(counters), false);
|
||||
effect.setText("return it to the battlefield with one fewer revival counter on it");
|
||||
effect.setText(staticText);
|
||||
effect.apply(game, source);
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue