19 lines
288 B
C#
19 lines
288 B
C#
namespace Server.Ethics.Hero
|
|
{
|
|
public sealed class HolyBlade : Power
|
|
{
|
|
public HolyBlade()
|
|
{
|
|
m_Definition = new PowerDefinition(
|
|
10,
|
|
"Holy Blade",
|
|
"Erstok Reyam",
|
|
""
|
|
);
|
|
}
|
|
|
|
public override void BeginInvoke( Player from )
|
|
{
|
|
}
|
|
}
|
|
}
|