17 lines
442 B
C#
17 lines
442 B
C#
using UnityEngine;
|
||
|
||
namespace Cielonos.MainGame.Inventory.Collections
|
||
{
|
||
/// <summary>
|
||
/// 光子解离器 / Photon Dissociator
|
||
/// Polychrome的扩展器,重攻击拆分为3段,每段伤害为原来的50%。
|
||
/// </summary>
|
||
public class PhotonDissociator : ExtenderBase
|
||
{
|
||
public override void OnObtained()
|
||
{
|
||
hostType = typeof(Polychrome);
|
||
base.OnObtained();
|
||
}
|
||
}
|
||
} |