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