Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/CubicScatterIndexer.cs
SoulliesOfficial 39b43680a9 爆更
2026-07-18 03:16:20 -04:00

16 lines
449 B
C#

namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// 魔方散列索引器 / Cubic Scatter Indexer
/// FutureWand 的扩展器,使 CubicAttack 的多余 CubicBolt 随机重复锁定已有敌人。
/// </summary>
public class CubicScatterIndexer : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(FutureWand);
base.OnObtained();
}
}
}