use crate::card::valid_filter::MatchContext;
use crate::card::Card;
pub(crate) fn matches_selector_domain_predicate(
raw: &str,
_card: &Card,
_context: MatchContext<'_>,
) -> Option<bool> {
let lower = raw.trim().to_ascii_lowercase();
if lower.starts_with("castsa ")
|| lower == "canenchantsource"
|| lower.starts_with("hasability ")
{
return Some(false);
}
None
}