From 23d14fcdb8581d060032030e516a2fccd86a8aec Mon Sep 17 00:00:00 2001 From: milimoe Date: Mon, 23 Jun 2025 23:39:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8A=E5=BC=B1=E6=B0=94=E7=BB=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OshimaModules/Skills/魔法/混沌烙印.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OshimaModules/Skills/魔法/混沌烙印.cs b/OshimaModules/Skills/魔法/混沌烙印.cs index ef97269..ba30b9f 100644 --- a/OshimaModules/Skills/魔法/混沌烙印.cs +++ b/OshimaModules/Skills/魔法/混沌烙印.cs @@ -12,13 +12,13 @@ namespace Oshima.FunGame.OshimaModules.Skills public override string DispelDescription => Effects.Count > 0 ? Effects.First(e => e is 造成气绝).DispelDescription : ""; public override double MPCost => Level > 0 ? 65 + (70 * (Level - 1)) : 65; public override double CD => Level > 0 ? 65 - (1.5 * (Level - 1)) : 65; - public override double CastTime => 9; - public override double HardnessTime { get; set; } = 7; + public override double CastTime => 4; + public override double HardnessTime { get; set; } = 5; public override int CanSelectTargetCount => 1; public 混沌烙印(Character? character = null) : base(SkillType.Magic, character) { - Effects.Add(new 造成气绝(this, true, 4, 0, 0.5, true, 0, 0.3)); + Effects.Add(new 造成气绝(this, true, 4, 0, 0.5, true, 0, 0.05)); } } }