Added base examples

This commit is contained in:
DaanV2
2021-10-11 18:10:42 +02:00
parent f188cfa6ee
commit 67ccb3d2d1
134 changed files with 2414 additions and 385 deletions

View File

@@ -14,14 +14,30 @@
"maximum": 1,
"title": "Probability"
},
"tame_event": { "title": "Tame Event", "$ref": "../types/event.json", "description": "Event to run when this entity becomes tamed" },
"tame_event": {
"title": "Tame Event",
"$ref": "../types/event.json",
"description": "Event to run when this entity becomes tamed"
},
"tame_items": {
"title": "Tame Items",
"description": "The list of items that can be used to tame this entity",
"oneOf": [
{ "type": "array", "items": { "$ref": "../../../../general/item/identifier.json" } },
{ "$ref": "../../../../general/item/identifier.json" }
{
"type": "array",
"items": {
"$ref": "../../../../general/item/identifier.json"
}
},
{
"$ref": "../../../../general/item/identifier.json"
}
]
}
}
},
"examples": [
{
"probability": 1
}
]
}