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

16 lines
419 B
C#

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