2026-04-01 12:23:27 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
using Continentis.MainGame.Character;
|
|
|
|
|
using Continentis.MainGame.Commands;
|
2026-04-17 12:01:50 -04:00
|
|
|
using SLSUtilities.General;
|
2026-04-01 12:23:27 -04:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Continentis.Mods.Basic.Cards
|
|
|
|
|
{
|
|
|
|
|
public class BasicHealing : CardLogicBase
|
|
|
|
|
{
|
|
|
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
|
|
|
|
{
|
|
|
|
|
return ForEachTarget(targetList, target => Cmd.Parallel(
|
|
|
|
|
new Cmd_PlayAnimation(user.characterView, "Action"),
|
|
|
|
|
Cmd.Do(() =>
|
|
|
|
|
{
|
|
|
|
|
target.Heal(GetAttribute("HealAmount"));
|
|
|
|
|
})));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|