20 lines
564 B
C#
20 lines
564 B
C#
using System.Collections.Generic;
|
|
using Continentis.MainGame.Card;
|
|
using Continentis.MainGame.Character;
|
|
using Continentis.MainGame.Commands;
|
|
using SLSUtilities.General;
|
|
|
|
namespace Continentis.Mods.Basic.Cards.Assassin
|
|
{
|
|
public class Stealth : CardLogicBase
|
|
{
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
|
{
|
|
return Cmd.Sequential(
|
|
Cmd.Do(() => user.deckSubmodule.ReshuffleDeck()),
|
|
user.deckSubmodule.DrawCards(GetAttribute("DrawCount"))
|
|
);
|
|
}
|
|
}
|
|
}
|