ProjectKoi-Kalo\Kalo 7ad6f7c8d7 ```
更新宝箱定义与音效配置,优化掉落机制并扩展角色奖励池
```
2025-05-09 13:57:49 +08:00

17 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace SimpleLootBox
{
public class LootBox
{
public ThingDef thingDef;
public float chance = 0.05f;
public float daysBetweenLootBoxSpawns;
}
}