23 lines
716 B
C#
23 lines
716 B
C#
using System.Collections.Generic;
|
|
using Continentis.MainGame.Card;
|
|
using Continentis.MainGame.Character;
|
|
using Continentis.MainGame.Commands;
|
|
using SLSFramework.General;
|
|
|
|
namespace Continentis.Mods.Basic.Cards.Cleric
|
|
{
|
|
public class BlessedHolyWater : CardLogicBase
|
|
{
|
|
public override CommandGroup PlayEffect(List<CharacterBase> targetList)
|
|
{
|
|
return Cmd.Sequential(
|
|
new Cmd_PlayAnimation(user.characterView, "Skill"),
|
|
Cmd.Do(() =>
|
|
{
|
|
CardData cardData = GetDerivativeCardData(0);
|
|
CardInstance.GenerateCardInstance(cardData, user.team, "Hand");
|
|
})
|
|
);
|
|
}
|
|
}
|
|
} |