restore: import verified wave3 baseline

This commit is contained in:
Codex
2026-07-28 03:16:01 -04:00
parent 4157f8790d
commit cf9507a9dd
41 changed files with 12251 additions and 982 deletions
+128 -22
View File
@@ -2,37 +2,143 @@
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ItemSpec",
"type": "object",
"properties": {
"description": {
"type": "string"
},
"header": {
"$ref": "#/$defs/ResourceHeader"
},
"hidden_facts": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"lore_refs": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"mechanics": {
"$ref": "#/$defs/ItemMechanics"
},
"name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"header",
"name",
"description",
"tags",
"lore_refs",
"mechanics",
"hidden_facts"
"mechanics"
],
"properties": {
"header": {
"$ref": "resource-header.schema.json"
"$defs": {
"ItemMechanics": {
"type": "object",
"properties": {
"check_modifier": {
"type": [
"integer",
"null"
],
"format": "int8",
"maximum": 127,
"minimum": -128
},
"grants_tags": {
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"usable": {
"type": "boolean"
}
},
"required": [
"usable"
]
},
"name": {
"ResourceHeader": {
"type": "object",
"properties": {
"content_hash": {
"type": "string"
},
"dependencies": {
"type": "array",
"default": [],
"items": {
"$ref": "#/$defs/ResourceRef"
}
},
"id": {
"type": "string"
},
"kind": {
"$ref": "#/$defs/ResourceKind"
},
"revision": {
"type": "string"
},
"schema_version": {
"type": "integer",
"format": "uint32",
"minimum": 0
}
},
"required": [
"id",
"kind",
"schema_version",
"revision",
"content_hash"
]
},
"ResourceKind": {
"type": "string",
"minLength": 1
"enum": [
"character",
"world_book",
"persona",
"plot_module",
"item_spec"
]
},
"description": {
"type": "string"
},
"tags": {
"type": "array"
},
"lore_refs": {
"type": "array"
},
"mechanics": {
"type": "object"
},
"hidden_facts": {
"type": "array"
"ResourceRef": {
"type": "object",
"properties": {
"content_hash": {
"type": "string"
},
"id": {
"type": "string"
},
"kind": {
"$ref": "#/$defs/ResourceKind"
},
"revision": {
"type": "string"
}
},
"required": [
"id",
"kind",
"revision",
"content_hash"
]
}
}
}