ModernUO/Projects/UOContent/Engines/Ethics/Definitions/EthicDefinition.cs
Kamron Batman 20596e52fa
fix: Converts ethics system to generic entity persistence (#1824)
### 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.
2024-06-16 10:26:09 -07:00

29 lines
574 B
C#

namespace Server.Ethics;
public class EthicDefinition
{
public EthicDefinition(
int primaryHue, TextDefinition title, TextDefinition adjunct, TextDefinition joinPhrase,
Power[] powers
)
{
PrimaryHue = primaryHue;
Title = title;
Adjunct = adjunct;
JoinPhrase = joinPhrase;
Powers = powers;
}
public int PrimaryHue { get; }
public TextDefinition Title { get; }
public TextDefinition Adjunct { get; }
public TextDefinition JoinPhrase { get; }
public Power[] Powers { get; }
}