16 lines
464 B
C#
16 lines
464 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
|
|
{
|
|
public class ThinkingCountermeasures : CardLogicBase
|
|
{
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
|
{
|
|
return user.deckSubmodule.DrawCards(GetAttribute("Draw_Card_Count"));
|
|
}
|
|
}
|
|
} |