### Summary Converts ethics system to entity persistence and removes the persistence item. ### TODO 1. The enable/disable toggle doesn't propagate to all code that does Ethics checks (notoriety, pvp, etc). 2. We need commands to remove them from an ethic.
16 lines
No EOL
299 B
C#
16 lines
No EOL
299 B
C#
namespace Server.Ethics.Hero;
|
|
|
|
public sealed class HolyBlade : Power
|
|
{
|
|
public HolyBlade() =>
|
|
Definition = new PowerDefinition(
|
|
10,
|
|
"Holy Blade",
|
|
"Erstok Reyam",
|
|
""
|
|
);
|
|
|
|
public override void BeginInvoke(Player from)
|
|
{
|
|
}
|
|
} |