22 lines
626 B
C#
22 lines
626 B
C#
using Continentis.MainGame.Card;
|
|
using Continentis.MainGame.Character;
|
|
using Continentis.MainGame.Commands;
|
|
using MoreMountains.Tools;
|
|
using SLSFramework.General;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Continentis.Mods.Basic.Cards
|
|
{
|
|
public class Torture : CardLogicBase
|
|
{
|
|
protected override CommandBase PlayEffect(List<CharacterBase> targetList)
|
|
{
|
|
CommandGroup mainGroup = user.deckSubmodule.DrawCards(1);
|
|
mainGroup.AddCommand(new Cmd_PlayAnimation(user.characterView, "Skill"));
|
|
|
|
//Todo: All enemy apply debuff
|
|
return mainGroup;
|
|
}
|
|
}
|
|
}
|