Stx add cards (#7709)

* WIP

* Implement Confront the Past

* Don't modify test

* Implement Plargg // Augusta

* Implement Shaile // Embrose

* Fix FDoC

* Fix CtP

* fix ordering

* remove extra plains

* FDoC PR fixes

* Augusta PR fixes

* Shaile PR fixes

* don't capitalize "learn"
This commit is contained in:
htrajan 2021-04-02 15:07:30 -07:00 committed by GitHub
parent 754a5b38eb
commit 0a3a4bc189
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 467 additions and 0 deletions

View file

@ -67,6 +67,9 @@ public class AttacksWithCreaturesTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
if (minAttackers == 0) {
return "Whenever you attack, " + super.getRule();
}
StringBuilder sb = new StringBuilder("Whenever you attack with " + CardUtil.numberToText(minAttackers) + " or more ");
sb.append(filter.getMessage());
sb.append(", ");