public static bool AnyHighGrowStepMonster(List <MonsterData> monsterUserDataList)
        {
            bool result = false;

            for (int i = 0; i < monsterUserDataList.Count; i++)
            {
                if (MonsterGrowStepData.IsGrowStepHigh(monsterUserDataList[i].GetMonsterMaster().Group.growStep))
                {
                    result = true;
                    break;
                }
            }
            return(result);
        }
        public static bool IsGrowStepHigh(string growStep)
        {
            int growStep2 = int.Parse(growStep);

            return(MonsterGrowStepData.IsGrowStepHigh(growStep2));
        }