Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/LightningConcentrator.cs
SoulliesOfficial b047eb5e6d 引雷标记extender
2026-07-26 09:42:03 -04:00

16 lines
440 B
C#

namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// 引雷标记 / Lightning Concentrator
/// 将 FutureWand 的 Lightning 集中到单个目标,并将其转化为 Disruption 攻击。
/// </summary>
public class LightningConcentrator : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(FutureWand);
base.OnObtained();
}
}
}