This commit is contained in:
2025-11-29 11:15:01 +08:00
parent 728d52259c
commit 14e018e312
13 changed files with 248 additions and 36 deletions

View File

@@ -23,10 +23,10 @@ namespace WulaFallenEmpire
public bool affectPrisoners = false;
public bool affectSlaves = false;
// 传送设置 - 移除冷却时间
public int checkIntervalTicks = 30; // 检查间隔
public int stunTicks = 30; // 传送后眩晕时间
public int maxPositionAdjustRadius = 5; // 最大位置调整半径
// 传送设置
public int checkIntervalTicks = 30;
public int stunTicks = 30;
public int maxPositionAdjustRadius = 5;
// 效果设置
public EffecterDef entryEffecter;
@@ -39,6 +39,14 @@ namespace WulaFallenEmpire
public ClamorDef destClamorType;
public float destClamorRadius = 2f;
// 新增:科技需求
public ResearchProjectDef requiredResearch;
public bool requireResearchToUse = false;
// 新增:开关控制
public bool canBeToggled = true;
public bool defaultEnabled = true;
public CompProperties_AreaTeleporter()
{
compClass = typeof(ThingComp_AreaTeleporter);