keyword testing

This commit is contained in:
Lily 2025-04-06 17:53:40 -04:00
parent 18972aa6d8
commit 453750b8f3
No known key found for this signature in database
GPG key ID: D916CEDDF4F93CE7

View file

@ -33,6 +33,9 @@ QUERY(NonMatchingType, cat, "t:kithkin", false)
QUERY(MatchingType, cat, "t:creature", true) QUERY(MatchingType, cat, "t:creature", true)
QUERY(Not1, cat, "NOT t:kithkin", true) QUERY(Not1, cat, "NOT t:kithkin", true)
QUERY(Not2, cat, "NOT t:creature", false) QUERY(Not2, cat, "NOT t:creature", false)
QUERY(NonKeyword1, cat, "not t:kithkin", false)
QUERY(NonKeyword2, cat, "not t:creature", true)
QUERY(NonKeyword3, cat, "t:bat or t:creature", false)
QUERY(Case, cat, "t:cReAtUrE", true) QUERY(Case, cat, "t:cReAtUrE", true)
QUERY(And, cat, "t:creature t:creature", true) QUERY(And, cat, "t:creature t:creature", true)