[TLA] various text fixes

This commit is contained in:
theelk801 2025-11-18 09:21:40 -05:00
parent 00c5daa5ea
commit 790361f59f
33 changed files with 68 additions and 47 deletions

View file

@ -304,7 +304,8 @@ public class VerifyCardDataTest {
*/
private static boolean evergreenCheck(String s) {
return evergreenKeywords.contains(s) || s.startsWith("protection from") || s.startsWith("hexproof from")
|| s.startsWith("ward ") || s.startsWith("rampage ") || s.startsWith("annihilator");
|| s.startsWith("ward ") || s.startsWith("rampage ") || s.startsWith("annihilator")
|| s.matches("^firebending \\d");
}
private static <T> boolean eqSet(Collection<T> a, Collection<T> b) {