2025-11-11 23:19:52 -06:00
|
|
|
|
|
|
|
|
|
|
|
2025-11-12 00:17:30 -06:00
|
|
|
|
using Continentis.MainGame;
|
2025-11-11 23:19:52 -06:00
|
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
|
using Continentis.MainGame.Character;
|
2025-11-12 00:17:30 -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 Sanctuary : CardLogicBase
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
|
|
|
|
|
|
{
|
2025-11-12 00:17:30 -06:00
|
|
|
|
CommandGroup mainGroup = TargetListCommandGroup(targetList,
|
|
|
|
|
|
new Cmd_PlayAnimation(user.characterView, "Skill"),
|
|
|
|
|
|
new Cmd_ParamFunction<CharacterBase>((target) =>
|
|
|
|
|
|
target.combatBuffSubmodule.Dispel(BuffDispelLevel.Basic, user)
|
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
|
|
return new List<CommandBase> { mainGroup };
|
2025-11-11 23:19:52 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|