2026-01-07 02:05:18 +08:00

29 lines
1.4 KiB
C#

using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Library.Constant;
using Oshima.FunGame.OshimaModules.Effects.SkillEffects;
namespace Oshima.FunGame.OshimaModules.Skills
{
public class : Skill
{
public override long Id => (long)SkillID.;
public override string Name => "绝影";
public override string Description => string.Join("", Effects.Select(e => e.Description));
public override string DispelDescription => Effects.Count > 0 ? Effects.First(e => e is ).DispelDescription : "";
public override string ExemptionDescription => Effects.Count > 0 ? Effects.First(e => e is ).ExemptionDescription : "";
public override double EPCost => 60;
public override double CD => 18;
public override double HardnessTime { get; set; } = 7;
public override int CanSelectTargetRange => 4;
public override bool IsNonDirectional => true;
public override SkillRangeType SkillRangeType => SkillRangeType.LinePass;
public (Character? character = null) : base(SkillType.Skill, character)
{
CastRange = 6;
Effects.Add(new _带基础伤害(this, 70, 55, 0.095, 0.045, DamageType.Physical));
Effects.Add(new (this, EffectType.Delay, true, 15, 0, 0, 1, 0, 0.3));
}
}
}