Create Cleric card data and script, add namespace to Assassin cards
This commit is contained in:
17
Assets/Mods/Basic/Cards/Scripts/Cleric/DivinePunishment.cs
Normal file
17
Assets/Mods/Basic/Cards/Scripts/Cleric/DivinePunishment.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
using Continentis.MainGame.Card;
|
||||
using Continentis.MainGame.Character;
|
||||
using SLSFramework.General;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Continentis.Mods.Basic.Cards.Cleric
|
||||
{
|
||||
public class DivinePunishment : CardLogicBase
|
||||
{
|
||||
protected override List<CommandBase> PlayEffect(List<CharacterBase> targetList)
|
||||
{
|
||||
return base.PlayEffect(targetList);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user