ModernUO/Projects/Scripts/Engines/Ethics/Evil/Powers/VileBlade.cs
2019-08-02 18:16:11 -07:00

19 lines
No EOL
315 B
C#

namespace Server.Ethics.Evil
{
public sealed class VileBlade : Power
{
public VileBlade()
{
m_Definition = new PowerDefinition(
10,
"Vile Blade",
"Velgo Reyam",
""
);
}
public override void BeginInvoke(Player from)
{
}
}
}