| | |
| | | public int MaxUseCnt { get ; private set ; }
|
| | | public int RecycleExp { get ; private set ; }
|
| | | public int Sort { get ; private set ; }
|
| | | public int RecipeLv { get ; private set ; } |
| | | public int[] RecipeLv; |
| | | |
| | | public override string getKey() |
| | | { |
| | |
| | |
|
| | | Sort=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0;
|
| | |
|
| | | RecipeLv=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0; |
| | | string[] RecipeLvStringArray = rawContents[5].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | RecipeLv = new int[RecipeLvStringArray.Length]; |
| | | for (int i=0;i<RecipeLvStringArray.Length;i++) |
| | | { |
| | | int.TryParse(RecipeLvStringArray[i],out RecipeLv[i]); |
| | | } |
| | | } |
| | | catch (Exception ex) |
| | | { |