mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-22 03:49:35 +08:00
40 lines
1.6 KiB
C#
40 lines
1.6 KiB
C#
using Milimoe.FunGame.Core.Entity;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Oshima.FunGame.OshimaModules.Effects.OpenEffects
|
|
{
|
|
public class NormalAttackHardTimeReduce : Effect
|
|
{
|
|
public override long Id => (long)EffectID.NormalAttackHardTimeReduce;
|
|
public override string Name => Skill.Name;
|
|
public override string Description => $"减少角色的普通攻击 {实际硬直时间减少:0.##} 硬直时间。" + (Source != null && Skill.Character != Source ? $"来自:[ {Source} ]" + (Skill.Item != null ? $" 的 [ {Skill.Item.Name} ]" : "") : "");
|
|
public override EffectType EffectType => EffectType.Item;
|
|
|
|
private readonly double 实际硬直时间减少 = 0;
|
|
|
|
public override void OnEffectGained(Character character)
|
|
{
|
|
character.NormalAttack.HardnessTime -= 实际硬直时间减少;
|
|
}
|
|
|
|
public override void OnEffectLost(Character character)
|
|
{
|
|
character.NormalAttack.HardnessTime += 实际硬直时间减少;
|
|
}
|
|
|
|
public NormalAttackHardTimeReduce(Skill skill, Dictionary<string, object> args, Character? source = null) : base(skill, args)
|
|
{
|
|
GamingQueue = skill.GamingQueue;
|
|
Source = source;
|
|
if (Values.Count > 0)
|
|
{
|
|
string key = Values.Keys.FirstOrDefault(s => s.Equals("nahtr", StringComparison.CurrentCultureIgnoreCase)) ?? "";
|
|
if (key.Length > 0 && double.TryParse(Values[key].ToString(), out double nahtr) && nahtr > 0)
|
|
{
|
|
实际硬直时间减少 = nahtr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|