| | |
| | | public int[] BaseAttrValues;
|
| | | public int[] HelpBattleSkills;
|
| | | public int FightPowerEx { get ; private set ; }
|
| | | public string EquipPlaceColorList { get ; private set; } |
| | | public int[] EquipPlaceColorList; |
| | | |
| | | public override string getKey() |
| | | { |
| | |
| | |
|
| | | FightPowerEx=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0;
|
| | |
|
| | | EquipPlaceColorList = rawContents[7].Trim(); |
| | | string[] EquipPlaceColorListStringArray = rawContents[7].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | EquipPlaceColorList = new int[EquipPlaceColorListStringArray.Length]; |
| | | for (int i=0;i<EquipPlaceColorListStringArray.Length;i++) |
| | | { |
| | | int.TryParse(EquipPlaceColorListStringArray[i],out EquipPlaceColorList[i]); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |