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