User requested condense trigger ability text for Tuktuk Scrapper

This commit is contained in:
drmDev 2016-03-05 06:10:54 -05:00
parent 3f3d39222f
commit 783a828cde

View file

@ -113,7 +113,12 @@ class TuktukScrapperTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Whenever {this} or another Ally enters the battlefield under your control, you may destroy target artifact. If that artifact is put into a graveyard this way, {this} deals damage to that artifact's controller equal to the number of Allies you control.";
// originally returned fullText, user reported that because the trigger text is so lengthy, they cannot click Yes/No buttons
//String fullText = "Whenever {this} or another Ally enters the battlefield under your control, you may destroy target artifact. If that artifact is put into a graveyard this way, {this} deals damage to that artifact's controller equal to the number of Allies you control.";
String condensedText = "Whenever {this} or another Ally you enters the battlefield under your control, you may destroy target artifact. If you do, {this} deals damage to that controller equal to the number of Allies you control.";
return condensedText;
}
}