예제 #1
0
        public bool Applicable(POEApi.Model.Item item)
        {
            foreach (var key in keywords)
            {
                if (item.TypeLine == key)
                {
                    return(true);
                }
            }

            return(false);
        }
예제 #2
0
 public bool Applicable(POEApi.Model.Item item)
 {
     return(filters.Any(filter => filter.Applicable(item)));
 }
예제 #3
0
 public bool Applicable(POEApi.Model.Item item)
 {
     return(resistances.Count(r => r.Applicable(item)) == 2);
 }