This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-13 21:50:31 +08:00
parent 45558a86fc
commit f1461ec3bf
3 changed files with 11 additions and 1 deletions

View File

@ -1 +1,2 @@
wmsj

wmsj

View File

@ -507,6 +507,9 @@ namespace GameLogic
// 特效播放完毕后销毁
GameObject.Destroy(eGo);
});
// 永久增加推力
m_AllAddPush += ConfigSystem.Instance.Tables.TbSystemConfig.Get(1).YongJiuPower;
}
else if (buff.m_Id == 9)
{

View File

@ -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
/// </summary>
public readonly int InitPower;
/// <summary>
/// 永久推力
/// </summary>
public readonly int YongJiuPower;
/// <summary>
/// Gm解锁密码
/// </summary>
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 + ","
+ "}";
}