23 lines
360 B
C#
23 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Server.Ethics.Hero
|
|
{
|
|
public sealed class HolyWord : Power
|
|
{
|
|
public HolyWord()
|
|
{
|
|
m_Definition = new PowerDefinition(
|
|
100,
|
|
"Holy Word",
|
|
"Erstok Oostrac",
|
|
""
|
|
);
|
|
}
|
|
|
|
public override void BeginInvoke( Player from )
|
|
{
|
|
}
|
|
}
|
|
}
|