14 lines
441 B
C#
14 lines
441 B
C#
namespace NeonSprawl.Server.Game.Quests;
|
|
|
|
/// <summary>Quest objective kind strings aligned with <c>quest-objective-def.schema.json</c> (NEO-118).</summary>
|
|
public static class QuestObjectiveKinds
|
|
{
|
|
public const string GatherItem = "gather_item";
|
|
|
|
public const string CraftRecipe = "craft_recipe";
|
|
|
|
public const string EncounterComplete = "encounter_complete";
|
|
|
|
public const string InventoryHasItem = "inventory_has_item";
|
|
}
|