12 lines
385 B
C#
12 lines
385 B
C#
namespace NeonSprawl.Server.Game.Skills;
|
|
|
|
/// <summary>NEO-42: prototype craft/refine completion → <c>refine</c> skill XP via <c>sourceKind: activity</c>.</summary>
|
|
public static class RefineSkillXpConstants
|
|
{
|
|
public const int ActivityXpPerCraftRefineCompletion = 10;
|
|
|
|
public const string RefineSkillId = "refine";
|
|
|
|
public const string ActivitySourceKind = "activity";
|
|
}
|