コード例 #1
0
        public static bool HasValue(object o, SearchCategory category)
        {
            if (o is AosAttribute && (AosAttribute)o == AosAttribute.CastSpeed)
            {
                return(true);
            }

            if (category.Category == Category.RequiredSkill)
            {
                return(false);
            }

            if (o is string && (string)o == "ArtifactRarity")
            {
                return(true);
            }

            return(Imbuing.GetMaxValue(o) > 1);
        }