This commit is contained in:
xenohedron 2024-03-07 22:29:13 -05:00
parent 5f15227af2
commit 59bbb1f2b0

View file

@ -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());
}