存一下

This commit is contained in:
2025-07-21 13:45:52 +08:00
parent b8f3fc5bcd
commit 2c8166b832
18 changed files with 510 additions and 1065 deletions

View File

@@ -0,0 +1,17 @@
using RimWorld;
using Verse;
namespace WulaFallenEmpire
{
public class CompProperties_AbilityEmergencyEnergyRestore : CompProperties_AbilityEffect
{
public int durationTicks = 600; // 默认10秒
public HediffDef hediffDef;
public bool requireDowned = true; // 是否需要倒地才能使用
public CompProperties_AbilityEmergencyEnergyRestore()
{
compClass = typeof(CompAbilityEffect_EmergencyEnergyRestore);
}
}
}