This commit is contained in:
2025-11-03 18:23:41 +08:00
parent d72edae9a3
commit 0c02135040
13 changed files with 1509 additions and 176 deletions

View File

@@ -0,0 +1,17 @@
using Verse;
namespace WulaFallenEmpire
{
public class GlobalWorkTableAirdropExtension : DefModExtension
{
public float maxRange = 50f; // 最大空投范围
public float randomRange = 15f; // 随机散布范围
public int minPods = 1; // 最少空投舱数量
public int maxPods = 10; // 最多空投舱数量
// 必须添加无参数构造函数
public GlobalWorkTableAirdropExtension() { }
// 可以添加其他参数,比如冷却时间、消耗资源等
}
}