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