diff --git a/Mage.Sets/src/mage/cards/a/AstarionTheDecadent.java b/Mage.Sets/src/mage/cards/a/AstarionTheDecadent.java index 239d75dac22..273d44e66cf 100644 --- a/Mage.Sets/src/mage/cards/a/AstarionTheDecadent.java +++ b/Mage.Sets/src/mage/cards/a/AstarionTheDecadent.java @@ -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()); }