Skip to content

StanceChangedEvent

The monsters' stance, as behavior — the reaction roll itself is referee.

Full documentation: StanceChangedEvent. Wire type: stance_changed.

Default visibility: player

Message codes: encounter.stance.changed

JSON Schema

{
  "$defs": {
    "Visibility": {
      "description": "Who may see an event.\n\nThe wire values are `\"player\"` and `\"referee\"` \u2014 lowercase, serialized into every\nevent; changing them is a `schema_version` bump.",
      "enum": [
        "player",
        "referee"
      ],
      "title": "Visibility",
      "type": "string"
    }
  },
  "description": "The monsters' stance, as behavior \u2014 the reaction roll itself is referee.",
  "properties": {
    "code": {
      "default": "encounter.stance.changed",
      "title": "Code",
      "type": "string"
    },
    "visibility": {
      "$ref": "#/$defs/Visibility",
      "default": "player"
    },
    "event_type": {
      "const": "stance_changed",
      "default": "stance_changed",
      "title": "Event Type",
      "type": "string"
    },
    "stance": {
      "title": "Stance",
      "type": "string"
    }
  },
  "required": [
    "stance"
  ],
  "title": "StanceChangedEvent",
  "type": "object"
}