2026-06-30 01:48:58 -04:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Cielonos.MainGame.Inventory.Collections
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 光子折跃器 / Photon Warper
|
|
|
|
|
|
/// Polychrome的扩展器,若敌人在2米之外,重攻击(AttackRA)在起手(Startup)结束时折跃至其身前2米。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PhotonWarper : ExtenderBase
|
|
|
|
|
|
{
|
2026-07-18 03:16:20 -04:00
|
|
|
|
public override void OnObtained()
|
|
|
|
|
|
{
|
|
|
|
|
|
hostType = typeof(Polychrome);
|
|
|
|
|
|
base.OnObtained();
|
|
|
|
|
|
}
|
2026-06-30 01:48:58 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|