2025-11-07 01:46:56 -06:00
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
using Continentis.MainGame.Character;
|
|
|
|
|
using Continentis.MainGame.Commands;
|
|
|
|
|
using SLSFramework.General;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Continentis.Mods.Basic.Cards
|
|
|
|
|
{
|
|
|
|
|
public class WoundDeterioration : CardLogicBase
|
|
|
|
|
{
|
2025-11-08 09:50:55 -05:00
|
|
|
protected override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
|
2025-11-07 01:46:56 -06:00
|
|
|
{
|
|
|
|
|
CommandGroup mainGroup = TargetListCommandGroup(targetList,
|
|
|
|
|
new Cmd_ParamFunction<CharacterBase>(0.05f, target =>
|
|
|
|
|
{
|
2025-11-10 01:06:46 -06:00
|
|
|
CreateCharacterBuff<Buffs.WoundDeterioration>(GetAttribute("BuffStack"), GetAttribute("DamageCount")).Apply(target, user, this);
|
2025-11-07 01:46:56 -06:00
|
|
|
}));
|
2025-11-08 09:50:55 -05:00
|
|
|
return new List<CommandBase> { mainGroup };
|
2025-11-07 01:46:56 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|