forked from External/mage
text fix
This commit is contained in:
parent
5f15227af2
commit
59bbb1f2b0
1 changed files with 5 additions and 2 deletions
|
|
@ -51,14 +51,17 @@ public final class AstarionTheDecadent extends CardImpl {
|
|||
// At the beginning of your end step, choose one —
|
||||
// • Feed — Target opponent loses life equal to the amount of life they lost this turn.
|
||||
Ability ability = new BeginningOfEndStepTriggeredAbility(
|
||||
new LoseLifeTargetEffect(AstarionTheDecadentValue.instance), TargetController.YOU, false
|
||||
new LoseLifeTargetEffect(AstarionTheDecadentValue.instance)
|
||||
.setText("target opponent loses life equal to the amount of life they lost this turn"),
|
||||
TargetController.YOU, false
|
||||
);
|
||||
ability.addTarget(new TargetOpponent());
|
||||
ability.withFirstModeFlavorWord("Feed");
|
||||
ability.addHint(ControllerGainedLifeCount.getHint());
|
||||
|
||||
// • Friends — You gain life equal to the amount of life you gained this turn.
|
||||
ability.addMode(new Mode(new GainLifeEffect(ControllerGainedLifeCount.instance)).withFlavorWord("Friends"));
|
||||
ability.addMode(new Mode(new GainLifeEffect(ControllerGainedLifeCount.instance)
|
||||
.setText("you gain life equal to the amount of life you gained this turn")).withFlavorWord("Friends"));
|
||||
this.addAbility(ability.addHint(AstarionTheDecadentHint.instance), new PlayerGainedLifeWatcher());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue