forked from Oshima-Studios/OshimaGameModule
提示
This commit is contained in:
parent
8b1a4eef30
commit
c76c295917
@ -36,7 +36,10 @@ namespace Oshima.FunGame.OshimaModules.Effects.ItemEffects
|
||||
|
||||
public override void OnSkillCasted(Character caster, List<Character> targets, Dictionary<string, object> others)
|
||||
{
|
||||
HealToTarget(caster, caster, 实际回复, 能复活);
|
||||
foreach (Character target in targets)
|
||||
{
|
||||
HealToTarget(caster, target, 实际回复, 能复活);
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnSkillCasted(User user, List<Character> targets, Dictionary<string, object> others)
|
||||
|
||||
@ -30,7 +30,11 @@ namespace Oshima.FunGame.OshimaModules.Effects.ItemEffects
|
||||
|
||||
public override void OnSkillCasted(Character caster, List<Character> targets, Dictionary<string, object> others)
|
||||
{
|
||||
caster.MP += 实际回复;
|
||||
foreach (Character target in targets)
|
||||
{
|
||||
target.MP += 实际回复;
|
||||
WriteLine($"[ {target} ] 回复了 {实际回复:0.##} 点魔法值!");
|
||||
}
|
||||
}
|
||||
|
||||
public override void OnSkillCasted(User user, List<Character> targets, Dictionary<string, object> others)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user