namespace NeonSprawl.Server.Game.Quests; /// Quest objective kind strings aligned with quest-objective-def.schema.json (NEO-118). 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"; }