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