2025-11-11 23:19:52 -06:00
|
|
|
|
2026-03-20 11:56:50 -04:00
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2025-11-11 23:19:52 -06:00
|
|
|
using Continentis.MainGame.Card;
|
|
|
|
|
using Continentis.MainGame.Character;
|
2025-11-12 00:22:42 -06:00
|
|
|
using Continentis.MainGame.Commands;
|
2025-11-11 23:19:52 -06:00
|
|
|
using SLSFramework.General;
|
|
|
|
|
|
|
|
|
|
namespace Continentis.Mods.Basic.Cards.Cleric
|
|
|
|
|
{
|
|
|
|
|
public class Faith : CardLogicBase
|
|
|
|
|
{
|
2026-03-20 11:56:50 -04:00
|
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
2025-11-11 23:19:52 -06:00
|
|
|
{
|
2026-03-20 11:56:50 -04:00
|
|
|
return user.deckSubmodule.DrawCards(GetAttribute("DrawCount"));
|
2025-11-11 23:19:52 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|