Files
abysmal-isle/Scripts/Services/Ethics/Evil/Powers/UnholyWord.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

20 lines
384 B
C#

using System;
namespace Server.Ethics.Evil
{
public sealed class UnholyWord : Power
{
public UnholyWord()
{
this.m_Definition = new PowerDefinition(
100,
"Unholy Word",
"Velgo Oostrac",
"");
}
public override void BeginInvoke(Player from)
{
}
}
}