2025-11-11 23:19:52 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
|
using Continentis.MainGame.Character;
|
2025-11-12 00:01:35 -06:00
|
|
|
|
using Continentis.MainGame.Commands;
|
2025-11-11 23:19:52 -06:00
|
|
|
|
using SLSFramework.General;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Continentis.Mods.Basic.Cards.Cleric
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PrayerOfHealing : CardLogicBase
|
|
|
|
|
|
{
|
2025-11-15 12:17:34 -05:00
|
|
|
|
public override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
|
2025-11-11 23:19:52 -06:00
|
|
|
|
{
|
2025-11-12 00:01:35 -06:00
|
|
|
|
CommandGroup mainGroup = TargetListCommandGroup(targetList,
|
|
|
|
|
|
new Cmd_PlayAnimation(user.characterView, "Skill"),
|
|
|
|
|
|
new Cmd_ParamFunction<CharacterBase>(0.01f, target =>
|
|
|
|
|
|
{
|
|
|
|
|
|
target.Heal(GetAttribute("Heal"));
|
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
return new List<CommandBase> { mainGroup };
|
2025-11-11 23:19:52 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|