From 406e6d485ce67acb8667c5e72eb858644d8efdbf Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期一, 20 八月 2018 09:47:35 +0800
Subject: [PATCH] Merge branch 'master' into DogzDungeon
---
Core/GameEngine/Model/Config/TreasureUpConfig.cs | 58 +++++++++++++++++++++++++++++-----------------------------
1 files changed, 29 insertions(+), 29 deletions(-)
diff --git a/Core/GameEngine/Model/Config/TreasureUpConfig.cs b/Core/GameEngine/Model/Config/TreasureUpConfig.cs
index 22aa595..fc7c72a 100644
--- a/Core/GameEngine/Model/Config/TreasureUpConfig.cs
+++ b/Core/GameEngine/Model/Config/TreasureUpConfig.cs
@@ -1,14 +1,14 @@
-锘�//--------------------------------------------------------
-// [Author]: 绗簩涓栫晫
-// [ Date ]: Thursday, June 07, 2018
-//--------------------------------------------------------
-
-using UnityEngine;
-using System;
-
-namespace TableConfig {
-
-
+锘�//--------------------------------------------------------
+// [Author]: 绗簩涓栫晫
+// [ Date ]: Thursday, August 16, 2018
+//--------------------------------------------------------
+
+using UnityEngine;
+using System;
+
+namespace TableConfig {
+
+
public partial class TreasureUpConfig : ConfigBase {
public int ID { get ; private set ; }
@@ -18,15 +18,15 @@
public string AddAttr { get ; private set; }
public int[] UnLockSkill;
public int UnLockFuncID { get ; private set ; }
- public int Privilege { get ; private set ; }
- public int LVLimit { get ; private set ; }
-
+ public int ActiveMWID { get ; private set ; }
+ public string ItemAward { get ; private set; }
+
public override string getKey()
{
return ID.ToString();
- }
-
- public override void Parse() {
+ }
+
+ public override void Parse() {
try
{
ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
@@ -48,20 +48,20 @@
UnLockFuncID=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0;
- Privilege=IsNumeric(rawContents[7]) ? int.Parse(rawContents[7]):0;
+ ActiveMWID=IsNumeric(rawContents[7]) ? int.Parse(rawContents[7]):0;
- LVLimit=IsNumeric(rawContents[8]) ? int.Parse(rawContents[8]):0;
+ ItemAward = rawContents[8].Trim();
}
catch (Exception ex)
{
DebugEx.Log(ex);
- }
- }
-
- }
-
-}
-
-
-
-
+ }
+ }
+
+ }
+
+}
+
+
+
+
--
Gitblit v1.8.0