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,21 @@
{
"$schema": "../../../schema/entity-definition.json",
"id": "augmentation",
"name": "Augmentation",
"description": "SR6 Cyberware and Bioware implants with essence cost, grade, and enhancements.",
"ruleset_id": "sr6",
"version": "1.0.0",
"schema": {
"type": "object",
"required": ["name", "essence"],
"properties": {
"name": { "type": "string" },
"category": { "type": "string", "enum": ["Cyberware", "Bioware", "Nanoware", "Geneware"], "default": "Cyberware" },
"grade": { "type": "string", "enum": ["Standard", "Alphaware", "Betaware", "Deltaware", "Used"], "default": "Standard" },
"rating": { "type": ["integer", "string"] },
"essence": { "type": "number", "description": "Essence loss." },
"capacity_cost": { "type": "integer" },
"notes": { "type": "string" }
}
}
}