From e886e8e25711702dccc0f8942084d28646ca026d Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 12 十一月 2019 17:04:59 +0800
Subject: [PATCH] 0312 增加装备评分属性参数

---
 Core/GameEngine/Model/Config/EquipGSParamConfig.cs |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
index eb7adb3..3b96c19 100644
--- a/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
+++ b/Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           Fish
-//    [  Date ]:           Tuesday, October 22, 2019
+//    [  Date ]:           Tuesday, November 12, 2019
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -52,6 +52,9 @@
 	public readonly int SkillReducePerFC;
 	public readonly int SkillReducePerGC;
 	public readonly int ReduceSkillCDPerC;
+	public readonly int LuckyHitPerC;
+	public readonly int FaintDefRateC;
+	public readonly int SuperHitRateC;
 
 	public EquipGSParamConfig()
     {
@@ -140,6 +143,12 @@
 			int.TryParse(tables[37],out SkillReducePerGC); 
 
 			int.TryParse(tables[38],out ReduceSkillCDPerC); 
+
+			int.TryParse(tables[39],out LuckyHitPerC); 
+
+			int.TryParse(tables[40],out FaintDefRateC); 
+
+			int.TryParse(tables[41],out SuperHitRateC); 
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0