19 lines
287 B
C#
19 lines
287 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 )
|
|
{
|
|
}
|
|
}
|
|
}
|