[ZNC] fixed missing ability for enigma thief (#7085)

This commit is contained in:
Evan Kranzler 2020-09-26 16:09:53 -04:00
parent d403f1082e
commit 37a25f8c03

View file

@ -42,6 +42,8 @@ public final class EnigmaThief extends CardImpl {
// When Enigma Thief enters the battlefield, for each opponent, return up to one target nonland permanent that player controls to its owner's hand.
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(true)
.setText("for each opponent, return up to one target nonland permanent that player controls to its owner's hand"));
ability.setTargetAdjuster(EnigmaThiefAdjuster.instance);
this.addAbility(ability);
}
private EnigmaThief(final EnigmaThief card) {