From f1461ec3bf6336f59a022f83ed04fd574af92656 Mon Sep 17 00:00:00 2001 From: "DESKTOP-SAJ6RKV\\Administrator" Date: Fri, 13 Jun 2025 21:50:31 +0800 Subject: [PATCH] 1 --- .../Configs/bytes/systemconfig_tbsystemconfig.bytes | 3 ++- .../Assets/GameScripts/HotFix/GameLogic/Actor/ActorHItem.cs | 3 +++ .../GameProto/GameConfig/systemConfig/SystemConfig.cs | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/UnityProject/Assets/AssetRaw/Configs/bytes/systemconfig_tbsystemconfig.bytes b/UnityProject/Assets/AssetRaw/Configs/bytes/systemconfig_tbsystemconfig.bytes index 1fc823bf..4c7eb1b6 100644 --- a/UnityProject/Assets/AssetRaw/Configs/bytes/systemconfig_tbsystemconfig.bytes +++ b/UnityProject/Assets/AssetRaw/Configs/bytes/systemconfig_tbsystemconfig.bytes @@ -1 +1,2 @@ -wmsj \ No newline at end of file + +wmsj \ No newline at end of file diff --git a/UnityProject/Assets/GameScripts/HotFix/GameLogic/Actor/ActorHItem.cs b/UnityProject/Assets/GameScripts/HotFix/GameLogic/Actor/ActorHItem.cs index fba8eb38..6c06311b 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameLogic/Actor/ActorHItem.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameLogic/Actor/ActorHItem.cs @@ -507,6 +507,9 @@ namespace GameLogic // 特效播放完毕后销毁 GameObject.Destroy(eGo); }); + + // 永久增加推力 + m_AllAddPush += ConfigSystem.Instance.Tables.TbSystemConfig.Get(1).YongJiuPower; } else if (buff.m_Id == 9) { diff --git a/UnityProject/Assets/GameScripts/HotFix/GameProto/GameConfig/systemConfig/SystemConfig.cs b/UnityProject/Assets/GameScripts/HotFix/GameProto/GameConfig/systemConfig/SystemConfig.cs index 4c4d91eb..8d3e3f0c 100644 --- a/UnityProject/Assets/GameScripts/HotFix/GameProto/GameConfig/systemConfig/SystemConfig.cs +++ b/UnityProject/Assets/GameScripts/HotFix/GameProto/GameConfig/systemConfig/SystemConfig.cs @@ -21,6 +21,7 @@ public sealed partial class SystemConfig : Luban.BeanBase ActorMaxScale = _buf.ReadInt(); MaxPlayerId = _buf.ReadInt(); InitPower = _buf.ReadInt(); + YongJiuPower = _buf.ReadInt(); GmPassworld = _buf.ReadString(); } @@ -50,6 +51,10 @@ public sealed partial class SystemConfig : Luban.BeanBase /// public readonly int InitPower; /// + /// 永久推力 + /// + public readonly int YongJiuPower; + /// /// Gm解锁密码 /// public readonly string GmPassworld; @@ -69,6 +74,7 @@ public sealed partial class SystemConfig : Luban.BeanBase + "ActorMaxScale:" + ActorMaxScale + "," + "MaxPlayerId:" + MaxPlayerId + "," + "InitPower:" + InitPower + "," + + "YongJiuPower:" + YongJiuPower + "," + "GmPassworld:" + GmPassworld + "," + "}"; }