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,19 @@
{
"$schema": "../../../schema/entity-definition.json",
"id": "armor",
"name": "Armor",
"description": "SR6 Wearable armor and protective gear providing Defense Rating bonuses.",
"ruleset_id": "sr6",
"version": "1.0.0",
"schema": {
"type": "object",
"required": ["name", "rating"],
"properties": {
"name": { "type": "string" },
"rating": { "type": ["integer", "string"], "description": "Armor rating bonus added to Defense Rating (e.g. 2, 4)." },
"social_modifier": { "type": "integer", "default": 0 },
"capacity": { "type": "integer", "default": 0 },
"notes": { "type": "string" }
}
}
}