Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/StellarRingQuickcaster.cs
SoulliesOfficial 39b43680a9 爆更
2026-07-18 03:16:20 -04:00

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();
}
}
}