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

37 lines
787 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RimWorld;
using UnityEngine;
using Verse;
namespace SimpleLootBox
{
public class CompProperties_LootBox : CompProperties_UseEffect
{
public CompProperties_LootBox()
{
this.compClass = typeof(CompLootBox);
}
public List<LootBoxThingDef> lootBoxThingDef;
public List<LootBoxPawnKindDef> lootBoxPawnKindDef;
public ThingDef lootBoxOpenCost;
public int lootBoxOpenCostCount = 0;
public SoundDef lootBoxOpenSound;
public SoundDef lootBoxSpinningSound;
public SoundDef lootBoxBackgroundMusicSound;
public string lootBoxBackgroundTexturePath;
}
}