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 HolyBlade : Power
|
|
{
|
|
public HolyBlade()
|
|
{
|
|
m_Definition = new PowerDefinition(
|
|
10,
|
|
"Holy Blade",
|
|
"Erstok Reyam",
|
|
""
|
|
);
|
|
}
|
|
|
|
public override void BeginInvoke( Player from )
|
|
{
|
|
}
|
|
}
|
|
}
|