| | |
| | | public readonly int suiteID; |
| | | public readonly int suiteCnt; |
| | | public readonly int star; |
| | | public readonly int[] attr; |
| | | public readonly Int2 attr; |
| | | public readonly int skillID; |
| | | public readonly string description; |
| | | |
| | | public EquipSuitConfig() |
| | | { |
| | |
| | | |
| | | int.TryParse(tables[4],out star); |
| | | |
| | | string[] attrStringArray = tables[5].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | attr = new int[attrStringArray.Length]; |
| | | for (int i=0;i<attrStringArray.Length;i++) |
| | | { |
| | | int.TryParse(attrStringArray[i],out attr[i]); |
| | | } |
| | | Int2.TryParse(tables[5],out attr); |
| | | |
| | | int.TryParse(tables[6],out skillID); |
| | | |
| | | description = tables[7]; |
| | | } |
| | | catch (Exception ex) |
| | | { |