From ce3255b65c0ab6fb2a93e416d39d547632287b51 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 16 四月 2024 17:08:38 +0800
Subject: [PATCH] 10019 【砍树】回合战斗(增加技能被动效果5015 5016 5017) 1. 增加技能被动效果ID 5015 - 被攻击触发,附加负面状态判断 2. 增加技能被动效果ID 5016 - 灵宠攻击后触发,附加目标负面状态判断 3. 增加技能被动效果ID 5017 - 攻击时提升攻击力,附加当前血量判
---
Tool/RobotTest/ConfigurationReader/ConfigIniReader.py | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py b/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
index afa4c07..36b9343 100644
--- a/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
+++ b/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
@@ -61,7 +61,16 @@
self.ProcessFindTJGTime = config.GetIntValue( "ProcessFindTJGTime")
self.ServerDBConfigPath = config.GetValue( "ServerDBConfigPath")
self.StartRunTime = config.GetIntValue( "StartRunTime")
-
+ self.AccountSource = config.GetIntValue( "AccountSource")
+ self.MaxPlayerCnt = config.GetIntValue( "MaxPlayerCnt")
+
+ def GetMaxPlayerCnt(self):
+ return self.MaxPlayerCnt
+
+ # 账号获取来源 0:自动生成, 1:取库中已有账号
+ def GetAccountSource(self):
+ return self.AccountSource
+
def GetIOThreadNum(self):
return self.IOThreadNum
--
Gitblit v1.8.0