27 lines
628 B
C#
27 lines
628 B
C#
|
using ET;
|
|||
|
using Sirenix.OdinInspector;
|
|||
|
using UnityEngine;
|
|||
|
#if UNITY_EDITOR
|
|||
|
#endif
|
|||
|
|
|||
|
namespace Cal
|
|||
|
{
|
|||
|
[GUIColor(0.95f, 0.08f, 0f)]
|
|||
|
[System.Serializable]
|
|||
|
public class SkillOption_改变伤害倍率 : SkillOptionBase
|
|||
|
{
|
|||
|
public override SkillOptionType optionType => SkillOptionType.改变伤害倍率;
|
|||
|
|
|||
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|||
|
[LabelText("目标选择")]
|
|||
|
public SelectTargetBase selectTarget;
|
|||
|
|
|||
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|||
|
[LabelText("倍数")]
|
|||
|
#if UNITY
|
|||
|
[SerializeField]
|
|||
|
#endif
|
|||
|
public SkillParam param;
|
|||
|
}
|
|||
|
}
|