Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/Polychrome/PhotonWarper.cs
SoulliesOfficial ddd387ef35 做不出来
2026-06-30 01:48:58 -04:00

18 lines
482 B
C#
Raw 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 Warper
/// Polychrome的扩展器若敌人在2米之外重攻击AttackRA在起手Startup结束时折跃至其身前2米。
/// </summary>
public class PhotonWarper : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(Polychrome);
base.OnObtained();
}
}
}