2026-05-27 15:15:28 -04:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Cielonos.MainGame.Inventory.Collections
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 光子解离器 / Photon Dissociator
|
|
|
|
|
|
/// Polychrome的扩展器,重攻击拆分为3段,每段伤害为原来的50%。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PhotonDissociator : 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
|
|
|
|
}
|
|
|
|
|
|
}
|