More test

This commit is contained in:
FrazeRIP
2025-11-04 01:00:38 -06:00
parent f64f25edcf
commit c5c3e2c5d8
8 changed files with 28 additions and 12 deletions

View File

@@ -10,15 +10,10 @@ namespace Continentis.Mods.Basic.Cards
{
protected override CommandBase PlayEffect(List<CharacterBase> targetList)
{
CommandGroup mainGroup = TargetListCommandGroup(targetList,
new Cmd_PlayAnimation(user.characterView, "Skill"),
new Cmd_ParamFunction<CharacterBase>(0.1f, target =>
{
user.deckSubmodule.DrawCards(1);
//Todo: Apply debuff
}));
return base.PlayEffect(targetList);
CommandGroup mainGroup = new CommandGroup(ExecutionMode.Sequential, new Cmd_PlayAnimation(user.characterView, "Skill"));
mainGroup.AddCommand(new Cmd_DrawCards(user.deckSubmodule, 1));
//Todo: All enemy apply debuff
return mainGroup;
}
}
}