From fda843ef019c51d706957236277f6949fd323cc5 Mon Sep 17 00:00:00 2001
From: Client_PangDeRong <593317293@qq.com>
Date: 星期六, 01 九月 2018 11:33:22 +0800
Subject: [PATCH] 3164 装备评分增加技能减伤
---
Core/GameEngine/Model/Config/EquipGSParamConfig.cs | 75 +++++++++++++++++++------------------
1 files changed, 39 insertions(+), 36 deletions(-)
diff --git a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
index 6f082b5..6923d56 100644
--- a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
+++ b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,16 +1,16 @@
-锘�//--------------------------------------------------------
-// [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 ; }
@@ -37,15 +37,16 @@
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;
@@ -97,17 +98,19 @@
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);
+ }
+ }
+
+ }
+
+}
+
+
+
+
--
Gitblit v1.8.0