Example #1
0
        public static Bitmap DrawClassTypeIcon(uint class_type)
        {
            if (Program.ROM.RomInfo.version() == 8 && Program.ROM.RomInfo.is_multibyte() == false)
            {
                return(SkillSystemsEffectivenessReworkClassTypeForm.DrawClassTypeIcon(class_type));
            }

            return(ImageUtil.BlankDummy());
        }
Example #2
0
        //Class Type拡張
        public static string GetClassType(uint class_type)
        {
            string text = "";

            if (Program.ROM.RomInfo.version() == 8 && Program.ROM.RomInfo.is_multibyte() == false)
            {
                text = SkillSystemsEffectivenessReworkClassTypeForm.GetText(class_type);
            }
            return(text);
        }