Adds import support from our other project.

This commit is contained in:
2026-09-07 21:57:59 -07:00
parent a3d1a139e9
commit a3dace36de
150 changed files with 17716 additions and 21 deletions

View File

@@ -0,0 +1,28 @@
{
"$schema": "../../../schema/entity-definition.json",
"id": "vehicle",
"name": "Vehicle / Drone",
"description": "SR6 Ground vehicles, aircraft, watercraft, and rigger drones.",
"ruleset_id": "sr6",
"version": "1.0.0",
"schema": {
"type": "object",
"required": ["name", "handling", "body", "armor"],
"properties": {
"name": { "type": "string" },
"category": { "type": "string", "enum": ["Drone", "Groundcraft", "Hovercraft", "Watercraft", "Aircraft"] },
"handling": { "type": "string" },
"acceleration": { "type": "string" },
"speed_interval": { "type": "string" },
"top_speed": { "type": "string" },
"body": { "type": ["integer", "string"] },
"armor": { "type": ["integer", "string"] },
"pilot": { "type": ["integer", "string"] },
"sensor": { "type": ["integer", "string"] },
"seats": { "type": ["integer", "string"] },
"mod_slots": { "type": "integer" },
"sensor_array": { "type": "array", "items": { "type": "string" } },
"notes": { "type": "string" }
}
}
}