2026-07-01 06:32:50 -04:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Cielonos.MainGame.Inventory.Collections
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 光子加速器 / Photon Accelerator
|
|
|
|
|
|
/// Polychrome的扩展器,让所有轻攻击(Attack-L)的“StartUp”Interval,加速1.5倍。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PhotonAccelerator : ExtenderBase
|
|
|
|
|
|
{
|
2026-07-18 03:16:20 -04:00
|
|
|
|
public override void OnObtained()
|
|
|
|
|
|
{
|
|
|
|
|
|
hostType = typeof(Polychrome);
|
|
|
|
|
|
base.OnObtained();
|
|
|
|
|
|
}
|
2026-07-01 06:32:50 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|