1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 09:13:45 -09:00

- Fixed text Feedback.

This commit is contained in:
jeffwadsworth 2020-07-25 10:10:20 -05:00
parent 3abe5e796a
commit 202e25208e

View file

@ -1,4 +1,3 @@
package mage.cards.f;
import java.util.UUID;
@ -32,11 +31,13 @@ public final class Feedback extends CardImpl {
this.getSpellAbility().addTarget(auraTarget);
this.getSpellAbility().addEffect(new AttachEffect(Outcome.Detriment));
this.addAbility(new EnchantAbility(auraTarget.getTargetName()));
// At the beginning of the upkeep of enchanted enchantment's controller, Feedback deals 1 damage to that player.
Effect effect = new DamageTargetEffect(1);
effect.setText("{this} deals 1 damage to that player");
this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, effect,
TargetController.CONTROLLER_ATTACHED_TO, false, true));
TargetController.CONTROLLER_ATTACHED_TO, false, true,
"At the beginning of the upkeep of enchanted enchantment's controller, "));
}
public Feedback(final Feedback card) {