Add modeTag + hint of used modes for "choose one that hasn't been chosen" abilities. (#10860)

* Add modeTag + hint of used modes on Three Bowls of Porridge

* add ModesAlreadyUsedHint to all the cards.
This commit is contained in:
Susucre 2023-08-27 05:09:04 +02:00 committed by GitHub
parent dcca63b963
commit be4b568e88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 168 additions and 15 deletions

View file

@ -699,6 +699,11 @@ public class StackAbility extends StackObjectImpl implements Ability {
throw new IllegalArgumentException("Stack ability is not supports hint adding");
}
@Override
public void setModeTag(String tag) {
throw new IllegalArgumentException("Stack ability does not supports setting modeTag");
}
@Override
public List<CardIcon> getIcons() {
return this.ability.getIcons();