Chroma Golem API Documentation

Game Systems

Creating Dynamic Quests

Build engaging quest systems that adapt to player actions and create meaningful story arcs using our quest generation API.

Quick Start Guide

1. Design Quest

Define objectives, rewards, and requirements

2. Add Context

Include NPC motivations and world state

3. Track Progress

Monitor objectives and validate completion

Key components of quest systems

Quest Generation

Generate contextually appropriate quests that match your NPC's personality and current game state.

Example Quest Generation

System Message

You are a quest designer for an RPG game. Generate a quest that fits the NPC's personality and current situation. Include:
- Quest title
- Quest description for the quest log
- Initial dialogue to present the quest
- Required objectives
- Reward type and quantity
- Any prerequisites or level requirements

Format the response as JSON.

User Message

NPC: Sven the Blacksmith
- Friendly craftsman who takes pride in his work
- Worried about increasing bandit activity
- Currently low on iron ore supplies
- Player is level 5 and has basic combat experience

Assistant Response

{
  "title": "The Blacksmith's Supply Run",
  "description": "Sven needs iron ore to keep his forge running, but bandits have made the mining routes dangerous. Help secure his supply line.",
  "initial_dialogue": "Ah, you look capable with that sword! Listen, I'm running desperately low on iron ore, but these blasted bandits... They've been hitting our supply caravans. If you could clear the western mining path and bring back some ore, I'd make it worth your while. Maybe even teach you a thing or two about proper weapon maintenance.",
  "objectives": [
    "Clear bandits from the western mining path (0/3 camps)",
    "Collect iron ore from the mine (0/5 ore)",
    "Return to Sven"
  ],
  "rewards": {
    "gold": 150,
    "items": ["Basic Weapon Maintenance Kit"],
    "reputation": 100,
    "special": "Unlock weapon upgrade options at Sven's forge"
  },
  "requirements": {
    "min_level": 5,
    "prerequisites": ["Basic Combat Training"]
  }
}

More Quest Types

Quests can vary greatly in structure and complexity. Here are some other examples:

Investigation Quest

{
  "title": "The Missing Merchant",
  "description": "A traveling merchant has disappeared. Find clues and discover their fate.",
  "objectives": [
    "Question townspeople about the merchant (0/3 witnesses)",
    "Find clues in the merchant's last known location",
    "Follow the trail to discover what happened",
    "Report findings to the Guard Captain"
  ],
  "quest_type": "investigation",
  "tracking_type": "discovery_based"
}

Time-Sensitive Quest

{
  "title": "Race Against the Plague",
  "description": "Deliver medicine to the outlying farms before the plague spreads.",
  "objectives": [
    "Collect medicine from the healer",
    "Deliver to Northern Farm (Time remaining: 2 days)",
    "Deliver to Western Farm (Time remaining: 2 days)",
    "Deliver to Eastern Farm (Time remaining: 2 days)"
  ],
  "quest_type": "timed_delivery",
  "fail_conditions": "Any delivery not made within 2 in-game days"
}

Quest Resolution

Track quest progress and validate completion through dialogue or in-world actions.

Dialogue-Based Resolution

System Message

You are a quest validator. Given the quest requirements and the conversation history, determine if the quest should be marked as complete.

Quest: "The Blacksmith's Supply Run"
Required objectives:
- Clear bandits from the western mining path (3 camps)
- Collect iron ore from the mine (5 ore)
- Return to Sven

Respond with a JSON object containing completion status and any partial progress.

User Message

Player: "I've cleared out all three bandit camps along the western path and managed to mine some ore. Here's the five chunks you needed."

Current inventory:
- Iron Ore x5
- Bandit Camp Location Maps (Marked Complete)

Assistant Response

{
  "quest_complete": true,
  "objectives_status": {
    "clear_bandits": {"complete": true, "progress": 3, "required": 3},
    "collect_ore": {"complete": true, "progress": 5, "required": 5},
    "return_to_sven": {"complete": true}
  },
  "trigger_events": [
    {
      "type": "COMPLETE_QUEST",
      "quest_id": "blacksmith_supply_run"
    },
    {
      "type": "GIVE_REWARDS",
      "rewards": {
        "gold": 150,
        "items": ["Basic Weapon Maintenance Kit"],
        "reputation": {"target": "blacksmith_guild", "amount": 100},
        "unlock": "weapon_upgrades"
      }
    }
  ]
}

Action-Based Resolution

System Message

You are a quest validator. Given the quest requirements and the player's actions, determine if the quest should be marked as complete.

Quest: "The Blacksmith's Supply Run"
Required objectives:
- Clear bandits from the western mining path (3 camps)
- Collect iron ore from the mine (5 ore)
- Return to Sven

Respond with a JSON object containing completion status and any partial progress.

User Message

Player Actions:
- Entered western mining path region
- Combat encounter completed: "Bandit Camp Alpha" (cleared)
- Combat encounter completed: "Bandit Camp Beta" (cleared)
- Combat encounter completed: "Bandit Camp Gamma" (cleared)
- Mining action completed: Received 2 Iron Ore
- Mining action completed: Received 3 Iron Ore
- Entered Riverforge Town
- Approached Sven's Forge

Assistant Response

{
  "quest_complete": true,
  "objectives_status": {
    "clear_bandits": {
      "complete": true,
      "progress": 3,
      "required": 3,
      "details": ["Alpha", "Beta", "Gamma"]
    },
    "collect_ore": {
      "complete": true,
      "progress": 5,
      "required": 5,
      "details": ["First mining: 2", "Second mining: 3"]
    },
    "return_to_sven": {
      "complete": true,
      "details": "Player at forge location"
    }
  }
}

Quest Summarization

Create clear, actionable summaries for players and maintain quest history for future content generation.

Example Summary Generation

System: Generate a brief quest summary for the player's quest log.

Quest completed: "The Blacksmith's Supply Run"
- Cleared 3 bandit camps along western mining path
- Collected 5 iron ore
- Earned trust of Sven the Blacksmith
- Unlocked weapon upgrade services

Summary: "You helped secure Sven's iron ore supply route by clearing out bandit camps. In return, he taught you about weapon maintenance and now offers special upgrade services at his forge. The western mining path is now safe for merchants."

Summary Types

  • Quest Log Entry: Brief, current objective-focused summary for active quests
  • Historical Record: Detailed summary of completed quest for story continuity
  • NPC Memory: Summary from NPC's perspective for relationship building
  • World State Update: Summary of how the quest changed the game world

Quest Chains

Build branching quest lines that evolve based on player choices and previous outcomes.

Tips for Quest Chains

  • Story Progression: Use completed quest summaries to inform future quest generation
  • Relationship Building: Track NPC relationships and reputation changes
  • Branching Paths: Generate different follow-up quests based on how previous quests were completed
  • World Impact: Reference changes to the game world from previous quests

Example Follow-up Quest

Previous Quest Summary: "The Blacksmith's Supply Run"
Player Actions:
- Cleared bandits non-violently (convinced them to leave)
- Negotiated trade deal with miners
- Built positive reputation with Sven

Generated Follow-up Quest: "The Bandit's Redemption"
- Help reformed bandits establish legitimate trading post
- Negotiate with Sven to become their primary buyer
- Create safe employment opportunities for other bandits
- Rewards include unique merchant discounts and reputation

Quest Validation & Error Handling

Ensure your quests remain completable and provide fallback options when things go wrong.

Common Validation Checks

  • Prerequisite Validation: Ensure all required items/states exist
  • State Consistency: Check that quest state matches world state
  • Blocking Detection: Identify if quest progress is blocked
  • Alternative Paths: Provide multiple ways to complete objectives

Example Validation Check

System: Check if the quest is still completable given current world state.

Quest: "The Blacksmith's Supply Run"
Current State:
- Western mine collapsed
- Bandits have left the area
- Player has 3/5 iron ore

Response: {
  "completable": true,
  "alternate_solutions": [
    {
      "objective": "collect_ore",
      "alternative": "Purchase remaining ore from traveling merchant",
      "location": "Eastern Trading Post"
    }
  ],
  "blocked_paths": [
    {
      "location": "Western Mine",
      "reason": "Cave collapse",
      "suggested_update": "Update quest to acknowledge mine collapse"
    }
  ]
}

Additional Tips

  • Use quest generation to create dynamic content that responds to player choices
  • Maintain consistent quest difficulty and rewards based on player level
  • Track quest outcomes to create coherent story arcs
  • Consider using quest chains to build long-term player engagement
  • Implement fallback options for quest resolution to avoid blocked progress

Want to learn more?

Check out our guides on building NPCs and creating dialogue.

Back to your dashboard
View my API keys