From 37c2af3375a60fa1597a7bda3a0433983489ad64 Mon Sep 17 00:00:00 2001
From: Client_PangDeRong <593317293@qq.com>
Date: 星期三, 26 九月 2018 19:12:59 +0800
Subject: [PATCH] 1885 修改神兽装备评分计算

---
 Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs |    2 ++
 Core/GameEngine/Model/Config/EquipGSParamConfig.cs              |   12 +++++++++---
 Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta         |    2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
index 7bf086f..16d42c7 100644
--- a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
+++ b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:			绗簩涓栫晫
-//    [  Date ]:		   Saturday, September 01, 2018
+//    [  Date ]:		   Wednesday, September 26, 2018
 //--------------------------------------------------------
 
 using UnityEngine;
@@ -37,7 +37,9 @@
 		public int SkillAtkRateC { get ; private set ; }
 		public int SpeedPerC { get ; private set ; }
 		public int AtkSpeedC { get ; private set ; }
-		public int SkillAtkRateReduceC { get ; private set ; }
+		public int SkillAtkRateReduceC { get ; private set ; }
+		public int HitC { get ; private set ; }
+		public int MissC { get ; private set ; }
 
 		public override string getKey()
         {
@@ -99,7 +101,11 @@
 			
 				AtkSpeedC=IsNumeric(rawContents[25]) ? int.Parse(rawContents[25]):0; 
 			
-				SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0; 
+				SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0; 
+			
+				HitC=IsNumeric(rawContents[27]) ? int.Parse(rawContents[27]):0; 
+			
+				MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0; 
             }
             catch (Exception ex)
             {
diff --git a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta
index 02ccef0..f984469 100644
--- a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta
+++ b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs.meta
@@ -1,6 +1,6 @@
 fileFormatVersion: 2
 guid: e238f9455d4062c4c867b41cfea2f046
-timeCreated: 1535787590
+timeCreated: 1537960022
 licenseType: Pro
 MonoImporter:
   serializedVersion: 2
diff --git a/Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs b/Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs
index 762826f..e27658c 100644
--- a/Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs
+++ b/Core/GameEngine/Model/TelPartialConfig/tagEquipGSParamConfig.cs
@@ -52,6 +52,8 @@
             _tagGsProValueDict.Add(AttrEnum.MoveSpeedPrecent, gsModel.SpeedPerC);
             _tagGsProValueDict.Add(AttrEnum.ATKSPEED, gsModel.AtkSpeedC);
             _tagGsProValueDict.Add(AttrEnum.SkillHurtPrecent, gsModel.SkillAtkRateReduceC);
+            _tagGsProValueDict.Add(AttrEnum.HIT, gsModel.HitC);
+            _tagGsProValueDict.Add(AttrEnum.MISS, gsModel.MissC);
             return _tagGsProValueDict;
         }
     }

--
Gitblit v1.8.0