| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: 第二世界
|
| | | // [ Date ]: Tuesday, June 19, 2018
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using UnityEngine;
|
| | | using System;
|
| | |
|
| | | namespace TableConfig {
|
| | |
|
| | | |
| | | public partial class EquipGSParamConfig : ConfigBase {
|
| | |
|
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Saturday, September 01, 2018 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | | using System; |
| | | |
| | | namespace TableConfig { |
| | | |
| | | |
| | | public partial class EquipGSParamConfig : ConfigBase { |
| | | |
| | | public int ID { get ; private set ; }
|
| | | public int EquipClass { get ; private set ; }
|
| | | public int EquipColor { get ; private set ; }
|
| | |
| | | public int SkillAtkRateC { get ; private set ; }
|
| | | public int SpeedPerC { get ; private set ; }
|
| | | public int AtkSpeedC { get ; private set ; }
|
| | |
|
| | | public override string getKey()
|
| | | {
|
| | | return ID.ToString();
|
| | | }
|
| | |
|
| | | public override void Parse() {
|
| | | try
|
| | | {
|
| | | public int SkillAtkRateReduce { get ; private set ; } |
| | | |
| | | public override string getKey() |
| | | { |
| | | return ID.ToString(); |
| | | } |
| | | |
| | | public override void Parse() { |
| | | try |
| | | { |
| | | ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
|
| | |
|
| | | EquipClass=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
|
| | |
| | | SpeedPerC=IsNumeric(rawContents[24]) ? int.Parse(rawContents[24]):0;
|
| | |
|
| | | AtkSpeedC=IsNumeric(rawContents[25]) ? int.Parse(rawContents[25]):0;
|
| | | }
|
| | | catch (Exception ex)
|
| | | {
|
| | | DebugEx.Log(ex);
|
| | | }
|
| | | }
|
| | | |
| | | }
|
| | |
|
| | | }
|
| | |
|
| | |
|
| | |
|
| | |
|
| | | |
| | | SkillAtkRateReduce=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0; |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | DebugEx.Log(ex); |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |