Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/Polychrome/DisorderedPhotonCollector.cs
SoulliesOfficial 347237443f FututeWand初步
2026-07-01 06:32:50 -04:00

18 lines
566 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>
/// 无序光子收集器 / Disordered Photon Collector
/// Polychrome的扩展器使用UltimateAttack之后如果Passion等级为C级别直接提升到A级的0%进度如果是其它等级直接提升一级100%进度)。
/// </summary>
public class DisorderedPhotonCollector : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(Polychrome);
base.OnObtained();
}
}
}