| | |
| | | public int type { get ; private set ; }
|
| | | public int level { get ; private set ; }
|
| | | public string effect { get ; private set; }
|
| | | public int fightPower { get ; private set ; } |
| | | public int fightPower { get ; private set ; }
|
| | | public string attr { get ; private set; } |
| | | |
| | | public override string getKey() |
| | | { |
| | |
| | |
|
| | | effect = rawContents[3].Trim();
|
| | |
|
| | | fightPower=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0; |
| | | fightPower=IsNumeric(rawContents[4]) ? int.Parse(rawContents[4]):0; |
| | | |
| | | attr = rawContents[5].Trim(); |
| | | } |
| | | catch (Exception ex) |
| | | { |