| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: Fish
|
| | | // [ Date ]: 2024年12月30日
|
| | | // [ Date ]: 2024年12月31日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public readonly long expLimit;
|
| | | public readonly string Img;
|
| | | public readonly int Quality;
|
| | | public readonly int FightPower;
|
| | | public readonly int effectId;
|
| | | public readonly int requireIconEffect;
|
| | | public readonly Dictionary<int, int[]> LearnSkillIDInfo;
|
| | | public readonly int AddFreePoint;
|
| | | public readonly int EquipLV;
|
| | |
| | |
|
| | | int.TryParse(tables[10],out Quality);
|
| | |
|
| | | int.TryParse(tables[11],out FightPower); |
| | | LearnSkillIDInfo = ConfigParse.ParseIntArrayDict(tables[11]); |
| | |
|
| | | int.TryParse(tables[12],out effectId); |
| | | int.TryParse(tables[12],out AddFreePoint); |
| | |
|
| | | int.TryParse(tables[13],out requireIconEffect); |
| | |
|
| | | LearnSkillIDInfo = ConfigParse.ParseIntArrayDict(tables[14]); |
| | |
|
| | | int.TryParse(tables[15],out AddFreePoint); |
| | |
|
| | | int.TryParse(tables[16],out EquipLV); |
| | | int.TryParse(tables[13],out EquipLV); |
| | | }
|
| | | catch (Exception ex)
|
| | | {
|