mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
User requested condense trigger ability text for Tuktuk Scrapper
This commit is contained in:
parent
3f3d39222f
commit
783a828cde
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue