From bc49768eaf9757e20bd264dc6183b2497780ee08 Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期二, 18 九月 2018 14:18:08 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
Core/GameEngine/Model/Config/TreasureUpConfig.cs | 79 ++++++++++++++++++++-------------------
1 files changed, 41 insertions(+), 38 deletions(-)
diff --git a/Core/GameEngine/Model/Config/TreasureUpConfig.cs b/Core/GameEngine/Model/Config/TreasureUpConfig.cs
index aaa7b2a..a95e605 100644
--- a/Core/GameEngine/Model/Config/TreasureUpConfig.cs
+++ b/Core/GameEngine/Model/Config/TreasureUpConfig.cs
@@ -1,16 +1,16 @@
-锘�//--------------------------------------------------------
-// [Author]: 绗簩涓栫晫
-// [ Date ]: Monday, September 03, 2018
-//--------------------------------------------------------
-
-using UnityEngine;
-using System;
-
-namespace TableConfig {
-
-
- public partial class TreasureUpConfig : ConfigBase {
-
+锘�//--------------------------------------------------------
+// [Author]: 绗簩涓栫晫
+// [ Date ]: Tuesday, September 18, 2018
+//--------------------------------------------------------
+
+using UnityEngine;
+using System;
+
+namespace TableConfig {
+
+
+ public partial class TreasureUpConfig : ConfigBase {
+
public int ID { get ; private set ; }
public int MWID { get ; private set ; }
public int LV { get ; private set ; }
@@ -20,16 +20,17 @@
public int UnLockFuncID { get ; private set ; }
public int ActiveMWID { get ; private set ; }
public string ItemAward { get ; private set; }
- public string DescriptionMainWin { get ; private set; }
-
- public override string getKey()
- {
- return ID.ToString();
- }
-
- public override void Parse() {
- try
- {
+ public int SoulID { get ; private set ; }
+ public string DescriptionMainWin { get ; private set; }
+
+ public override string getKey()
+ {
+ return ID.ToString();
+ }
+
+ public override void Parse() {
+ try
+ {
ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
MWID=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
@@ -53,18 +54,20 @@
ItemAward = rawContents[8].Trim();
- DescriptionMainWin = rawContents[9].Trim();
- }
- catch (Exception ex)
- {
- DebugEx.Log(ex);
- }
- }
-
- }
-
-}
-
-
-
-
+ SoulID=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0;
+
+ DescriptionMainWin = rawContents[10].Trim();
+ }
+ catch (Exception ex)
+ {
+ DebugEx.Log(ex);
+ }
+ }
+
+ }
+
+}
+
+
+
+
--
Gitblit v1.8.0