Skip to content

FatigueEvent

The party gained or recovered from the unrested-fatigue penalty.

Full documentation: FatigueEvent. Wire type: fatigue.

Default visibility: player

Message codes: exploration.fatigue.gained, exploration.fatigue.recovered

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 party gained or recovered from the unrested-fatigue penalty.",
  "properties": {
    "code": {
      "title": "Code",
      "type": "string"
    },
    "visibility": {
      "$ref": "#/$defs/Visibility",
      "default": "player"
    },
    "event_type": {
      "const": "fatigue",
      "default": "fatigue",
      "title": "Event Type",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "title": "FatigueEvent",
  "type": "object"
}