Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/CubicScatterIndexer.cs

16 lines
449 B
C#
Raw Normal View History

2026-07-18 03:16:20 -04:00
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();
}
}
}