コード例 #1
0
ファイル: Zukan7b.cs プロジェクト: wooddice/PKHeX
        protected override bool GetSaneFormsToIterate(int species, out int formStart, out int formEnd, int formIn)
        {
            switch (species)
            {
            case 020:     // Raticate
            case 105:     // Marowak
                formStart = 0;
                formEnd   = 1;
                return(true);

            default:
                int count = SaveUtil.GetDexFormCountGG(species);
                formStart = formEnd = 0;
                return(count < formIn);
            }
        }