16 lines
449 B
C#
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();
|
|
}
|
|
}
|
|
}
|