From f43abdc14c05607a9911c7e6bc453dd0c45d2b4a Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期二, 11 十二月 2018 10:44:53 +0800
Subject: [PATCH] 5389 子 【优化】【1.3】【1.3.100】神兵特效展示界面新增战力与属性展示
---
Core/GameEngine/Model/Config/GodWeaponEffectConfig.cs | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/Core/GameEngine/Model/Config/GodWeaponEffectConfig.cs b/Core/GameEngine/Model/Config/GodWeaponEffectConfig.cs
index c4a31f2..e29cc41 100644
--- a/Core/GameEngine/Model/Config/GodWeaponEffectConfig.cs
+++ b/Core/GameEngine/Model/Config/GodWeaponEffectConfig.cs
@@ -15,7 +15,8 @@
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()
{
@@ -33,7 +34,9 @@
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)
{
--
Gitblit v1.8.0