public bool Load(string path, AssetBundle nonLocalizedBundle, AssetBundle localizedBundle, string locale)
        {
            string str = string.Concat(path, "NonLocalized/GarrFollowerXAbility.txt");

            if (this.m_records.Count > 0)
            {
                Debug.Log(string.Concat("Already loaded static db ", str));
                return(false);
            }
            TextAsset textAsset = nonLocalizedBundle.LoadAsset <TextAsset>(str);

            if (textAsset == null)
            {
                Debug.Log(string.Concat("Unable to load static db ", str));
                return(false);
            }
            string str1 = textAsset.ToString();
            int    num  = 0;
            int    num1 = 0;

            do
            {
                num = str1.IndexOf('\n', num1);
                if (num < 0)
                {
                    continue;
                }
                string str2 = str1.Substring(num1, num - num1 + 1).Trim();
                GarrFollowerXAbilityRec garrFollowerXAbilityRec = new GarrFollowerXAbilityRec();
                garrFollowerXAbilityRec.Deserialize(str2);
                this.m_records.Add(garrFollowerXAbilityRec.ID, garrFollowerXAbilityRec);
                num1 = num + 1;
            }while (num > 0);
            return(true);
        }
        public bool Load(string path, AssetBundle nonLocalizedBundle, AssetBundle localizedBundle, string locale)
        {
            string text = path + "NonLocalized/GarrFollowerXAbility.txt";

            if (this.m_records.Count > 0)
            {
                Debug.Log("Already loaded static db " + text);
                return(false);
            }
            TextAsset textAsset = nonLocalizedBundle.LoadAsset <TextAsset>(text);

            if (textAsset == null)
            {
                Debug.Log("Unable to load static db " + text);
                return(false);
            }
            string text2 = textAsset.ToString();
            int    num   = 0;
            int    num2;

            do
            {
                num2 = text2.IndexOf('\n', num);
                if (num2 >= 0)
                {
                    string valueLine = text2.Substring(num, num2 - num + 1).Trim();
                    GarrFollowerXAbilityRec garrFollowerXAbilityRec = new GarrFollowerXAbilityRec();
                    garrFollowerXAbilityRec.Deserialize(valueLine);
                    this.m_records.Add(garrFollowerXAbilityRec.ID, garrFollowerXAbilityRec);
                    num = num2 + 1;
                }
            }while (num2 > 0);
            return(true);
        }