16 lines
450 B
C#
16 lines
450 B
C#
namespace Cielonos.MainGame.Inventory.Collections
|
|
{
|
|
/// <summary>
|
|
/// 星环速铸器 / Stellar Ring Quickcaster
|
|
/// FutureWand 的扩展器,使 SpinArea 跳过蓄力流程并以指定强化等级直接释放。
|
|
/// </summary>
|
|
public class StellarRingQuickcaster : ExtenderBase
|
|
{
|
|
public override void OnObtained()
|
|
{
|
|
hostType = typeof(FutureWand);
|
|
base.OnObtained();
|
|
}
|
|
}
|
|
}
|