(client) feat:实现健康状态定义,实现事件定义

This commit is contained in:
m0_75251201
2025-08-27 22:39:34 +08:00
parent f4ce4fcf1f
commit 9713ad9129
22 changed files with 313 additions and 32 deletions

View File

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Data
{
public class HediffDef:Define
{
// 默认安装的身体部位 (例如 "Lung", "Heart")
public string defaultInstallPart = null;
// 是否阻止肺部疾病 (例如肺腐烂)
public bool preventsLungRot = false;
// Hediff的发展阶段列表
public List<HediffStageDef> stages = new List<HediffStageDef>();
// 附加的组件列表
public List<HediffCompDef> comps = new List<HediffCompDef>();
}
}