FututeWand初步
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 168b9a81645e3d54bb1f412198dec8fb
|
||||
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Cielonos.MainGame.Inventory.Collections
|
||||
{
|
||||
/// <summary>
|
||||
/// 光子加速器 / Photon Accelerator
|
||||
/// Polychrome的扩展器,让所有轻攻击(Attack-L)的“StartUp”Interval,加速1.5倍。
|
||||
/// </summary>
|
||||
public class PhotonAccelerator : ExtenderBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 642c7e63e814fe3479d8424f8b612701
|
||||
@@ -8,6 +8,10 @@ namespace Cielonos.MainGame.Inventory.Collections
|
||||
/// </summary>
|
||||
public class PhotonDissociator : ExtenderBase
|
||||
{
|
||||
|
||||
public override void OnObtained()
|
||||
{
|
||||
hostType = typeof(Polychrome);
|
||||
base.OnObtained();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,10 @@ namespace Cielonos.MainGame.Inventory.Collections
|
||||
/// </summary>
|
||||
public class PhotonPolarizer : ExtenderBase
|
||||
{
|
||||
|
||||
public override void OnObtained()
|
||||
{
|
||||
hostType = typeof(Polychrome);
|
||||
base.OnObtained();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,10 +8,6 @@ namespace Cielonos.MainGame.Inventory.Collections
|
||||
/// </summary>
|
||||
public class PhotonWarper : ExtenderBase
|
||||
{
|
||||
public override void OnObtained()
|
||||
{
|
||||
hostType = typeof(Polychrome);
|
||||
base.OnObtained();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user