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

@@ -12,12 +12,25 @@
"description": "The chance of the entity trusting with each item use between 0.0 and 1.0, where 1.0 is 100%",
"title": "Probability"
},
"trust_event": { "$ref": "../types/event.json", "description": "Event to run when this entity becomes trusting", "title": "Trust Event" },
"trust_event": {
"$ref": "../types/event.json",
"description": "Event to run when this entity becomes trusting",
"title": "Trust Event"
},
"trust_items": {
"type": "array",
"description": "The list of items that can be used to get the entity to trust players",
"items": { "$ref": "../../../../general/item/identifier.json", "title": "Trust Item" },
"items": {
"$ref": "../../../../general/item/identifier.json",
"title": "Trust Item"
},
"title": "Trust Items"
}
}
},
"examples": [
{
"probability": 1,
"trust_items": []
}
]
}