ModernUO/Scripts/Engines/Ethics/Hero/Powers/HolyWord.cs
2006-06-15 04:14:30 +00:00

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 )
{
}
}
}