2026-03-20 11:56:50 -04:00
|
|
|
using System.Collections.Generic;
|
2025-11-09 23:47:10 -06:00
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
using Continentis.MainGame.Character;
|
2025-11-10 12:57:04 -05:00
|
|
|
using Continentis.MainGame.Commands;
|
2026-03-20 11:56:50 -04:00
|
|
|
using SLSFramework.General;
|
2025-11-09 23:47:10 -06:00
|
|
|
|
2025-11-11 23:19:52 -06:00
|
|
|
namespace Continentis.Mods.Basic.Cards.Assassin
|
2025-11-09 23:47:10 -06:00
|
|
|
{
|
|
|
|
|
public class KnifeTrick : CardLogicBase
|
|
|
|
|
{
|
2026-03-20 11:56:50 -04:00
|
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
2025-11-09 23:47:10 -06:00
|
|
|
{
|
2026-03-20 11:56:50 -04:00
|
|
|
return Cmd.Sequential(
|
2025-12-14 00:51:34 -05:00
|
|
|
new Cmd_PlayAnimation(user.characterView, "Action"),
|
2026-03-20 11:56:50 -04:00
|
|
|
Cmd.Do(() =>
|
|
|
|
|
CreateCharacterBuff<Buffs.KnifeTrick>(GetAttribute("BuffStack_KnifeTrick")).Apply(user, user, this)
|
|
|
|
|
)
|
|
|
|
|
);
|
2025-11-09 23:47:10 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|