Files
SoulliesOfficial 39b43680a9 爆更
2026-07-18 03:16:20 -04:00

18 lines
462 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using UnityEngine;
namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// 光子加速器 / Photon Accelerator
/// Polychrome的扩展器让所有轻攻击Attack-L的“StartUp”Interval加速1.5倍。
/// </summary>
public class PhotonAccelerator : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(Polychrome);
base.OnObtained();
}
}
}