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