18 lines
407 B
C#
18 lines
407 B
C#
|
|
|
|
using Continentis.MainGame.Card;
|
|
using Continentis.MainGame.Character;
|
|
using SLSFramework.General;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Continentis.Mods.Basic.Cards.Cleric
|
|
{
|
|
public class ShieldOfDevotion : CardLogicBase
|
|
{
|
|
protected override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
|
|
{
|
|
return base.PlayEffect(targetList);
|
|
}
|
|
}
|
|
}
|