FlashTerror

This commit is contained in:
FrazeRIP
2025-11-11 00:15:16 -06:00
parent 2aea1a2c81
commit 7260976696
4 changed files with 15 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
using Continentis.MainGame.Card;
using Continentis.MainGame.Character;
using Continentis.MainGame.Commands;
using SLSFramework.General;
using System.Collections.Generic;
@@ -9,7 +10,15 @@ namespace Continentis.Mods.Basic.Cards
{
protected override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
{
return base.PlayEffect(targetList);
CommandGroup mainGroup = TargetListCommandGroup(targetList,
new Cmd_ParamFunction<CharacterBase>(0.01f, target =>
{
if (target != user)
{
CreateCharacterBuff<Buffs.Vulnerable>(GetAttribute("BuffStack")).Apply(target, user, this);
}
}));
return new List<CommandBase> { mainGroup };
}
}
}

View File

@@ -13,7 +13,7 @@ namespace Continentis.Mods.Basic.Cards
{
CommandQueueManager.Instance.AddCommand(user.deckSubmodule.DrawCards(GetAttribute("DrawCount")));
CommandGroup mainGroup = TargetListCommandGroup(targetList,
new Cmd_ParamFunction<CharacterBase>(0.05f, target =>
new Cmd_ParamFunction<CharacterBase>(0.01f, target =>
{
if (target != user)
{