13 lines
374 B
C#
13 lines
374 B
C#
namespace Content.Server.Nyanotrasen.Cloning
|
|
{
|
|
/// <summary>
|
|
/// This tracks how many times you have already been cloned and lowers your chance of getting a humanoid each time.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class MetempsychosisKarmaComponent : Component
|
|
{
|
|
[DataField("score")]
|
|
public int Score = 0;
|
|
}
|
|
}
|