修复提示文本

This commit is contained in:
milimoe 2026-01-27 01:35:21 +08:00
parent bf183e7936
commit 9448de07c3
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -63,13 +63,15 @@ namespace Oshima.FunGame.OshimaModules.Skills
{
if (character == Skill.Character)
{
bonus += damage * ;
WriteLine($"[ {Skill.Character} ] 发动了八卦阵!伤害提升了 {Math.Abs(bonus):0.##} 点!");
double bonus2 = damage * ;
bonus += bonus2;
WriteLine($"[ {Skill.Character} ] 发动了八卦阵!伤害提升了 {Math.Abs(bonus2):0.##} 点!");
}
else if (enemy == Skill.Character)
{
bonus += -(damage * );
WriteLine($"[ {Skill.Character} ] 发动了八卦阵!伤害减少了 {Math.Abs(bonus):0.##} 点!");
double bonus2 = damage * ;
bonus -= bonus2;
WriteLine($"[ {Skill.Character} ] 发动了八卦阵!伤害减少了 {Math.Abs(bonus2):0.##} 点!");
}
if ()
{