This commit is contained in:
milimoe 2026-04-27 21:59:17 +08:00
parent 1982f0fc6f
commit 8f02fb5232
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -84,6 +84,11 @@ namespace Oshima.FunGame.OshimaModules.Skills
1 => new (Skill, EffectType.Confusion, false, 0, DurationTurn, 0, 1, 0),
_ => new (Skill, EffectType.Cripple, true, Duration, 0, 0, 1, 0),
};
if (e.EffectType == EffectType.Freeze)
{
e.OnSkillCasted(caster, [target], grids, others);
e = new (Skill, EffectType.Vulnerable, false, 0, DurationTurn, 0, 1, 0, DamageType.Magical, 0.3);
}
e.OnSkillCasted(caster, [target], grids, others);
}
}