Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/SigilBreakWedge.cs

16 lines
419 B
C#
Raw Normal View History

2026-07-18 03:16:20 -04:00
namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// 印记破稳楔 / Sigil Break Wedge
/// FutureWand 的扩展器,使 FutureWand 引爆 Fusion 后追加韧性削减。
/// </summary>
public class SigilBreakWedge : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(FutureWand);
base.OnObtained();
}
}
}