[AFR] Implemented Treasure Chest

This commit is contained in:
Evan Kranzler 2021-07-02 08:58:48 -04:00
parent 841aac30a8
commit 4b8a419d28
3 changed files with 109 additions and 0 deletions

View file

@ -923,6 +923,10 @@ public final class CardUtil {
return vowels.contains(text.substring(0, 1)) ? "an " + text : "a " + text;
}
public static String italicizeWithEmDash(String text) {
return "<i>" + text + "</i> &mdash; ";
}
public static Set<UUID> getAllSelectedTargets(Ability ability, Game game) {
return ability.getModes().getSelectedModes()
.stream()