Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/Polychrome/PhotonPolarizer.cs

17 lines
440 B
C#
Raw Normal View History

2026-05-27 15:15:28 -04:00
using UnityEngine;
namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// 光子偏振器 / Photon Polarizer
/// Polychrome的扩展器可以使完美格挡弹开敌人阻止敌人的连招
/// </summary>
public class PhotonPolarizer : ExtenderBase
{
2026-07-01 06:32:50 -04:00
public override void OnObtained()
{
hostType = typeof(Polychrome);
base.OnObtained();
}
2026-05-27 15:15:28 -04:00
}
}