-
Notifications
You must be signed in to change notification settings - Fork 36
Sitreps
John A edited this page Oct 19, 2025
·
3 revisions
Adds additional preset SITREPs in the Encounter Builder. These must be stored under a file named sitreps.json that contains a single array of sitrep data objects:
sitreps.json
[
{
"id": string,
"name": string,
"description": string,
"deployment"?: string,
"objective"?: string,
"extraction"?: string,
"conditions"?: { title: string, condition: string }[]
},
...
]Internal identifier. This must be globally unique. See Item ID Guidelines for more information.
The display name of the item
Detail and rules text. HTML syntax is allowed.
Optional deployment rules or details. HTML syntax allowed.
Optional objective rules or details. HTML syntax allowed.
Optional extraction rules or details. HTML syntax allowed.
Optional additional rules, details, clarifications, etc. Conditions are in the following format:
{
"title": string,
"condition": string
}The title of the condition.
Condition detail or rules text.
from lancer-data/lib/sitreps.json
{
"id": "sitrep_escort",
"name": "Escort",
"description": "ESCORT missions require the PCs to bring an OBJECTIVE safely to the Extraction Zone and get the hell out of there.",
"pcVictory": "The Objective is safely extracted.",
"enemyVictory": "The Objective hasn’t been extracted at the end of the eighth round. If there are any PCs remaining on the field when this takes place, they are captured or overrun.",
"noVictory": "The Objective is destroyed.",
"deployment": "The PCs deploy first, choosing positions for their characters and the Objective in the Allied Deployment Zone; then, the GM deploys enemy forces in the EDZ.",
"extraction": "While in the Extraction Zone, PCs can extract as a free action at the end of their turn. Extracted PCs are removed from the battlefield. If the Objective is adjacent to a PC when they extract and isn’t contested by any characters from the opposing side, it is safely extracted."
},Pilot Data
Licensed Data
Other
- Manifest (lcp_manifest.json)
- Base Actions (actions.json)
- Downtime Actions (actions.json)
- Environments (environments.json)
- Manufacturers (manufacturers.json)
- SITREPs (sitreps.json)
- Statuses & Conditions (statuses.json)
- Tables (tables.json)
- Lists (lists.json)
- Tags (tags.json)
- Custom Stat Data (custom_stats.json)