2026-05-26 00:21:27 -04:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Cielonos.MainGame.Inventory.Collections
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 飞弹分离膜 / Missile Separation Membrane
|
|
|
|
|
|
/// FutureWand的扩展器,使轻攻击的飞弹在击中敌人后分离一次,飞向附近的敌人。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class MissileSeparationMembrane : ExtenderBase
|
|
|
|
|
|
{
|
2026-07-01 06:32:50 -04:00
|
|
|
|
public override void OnObtained()
|
|
|
|
|
|
{
|
|
|
|
|
|
hostType = typeof(FutureWand);
|
|
|
|
|
|
base.OnObtained();
|
|
|
|
|
|
}
|
2026-05-26 00:21:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|