PatronArrives

A patron enters the tavern. Increments their visit count and sets mood to eager.

Event Version

v1

Executed At

3/3/2026, 7:16:25 AM

Executed By

#4

Schemas

Input Schema

{
  "name": "string",
  "patron_id": "string"
}

Result Schema

{
  "message": "string"
}

State Change Schema

{
  "Patron": "partial"
}

Input

{
  "name": "Aldric the Bold",
  "patron_id": "aldric"
}

Result

{}

State Changes

{
  "Patron:aldric": {
    "mood": "eager",
    "name": "Aldric the Bold",
    "visits": 1
  }
}