25 lines
926 B
JSON
25 lines
926 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.trusting",
|
|
"type": "object",
|
|
"title": "Trusting 1.8.0",
|
|
"description": "Defines the rules for a mob to trust players.",
|
|
"required": [],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"probability": {
|
|
"type": "number",
|
|
"default": 1,
|
|
"description": "The chance of the entity trusting with each item use between 0.0 and 1.0, where 1.0 is 100%",
|
|
"title": "TODO Title"
|
|
},
|
|
"trust_event": { "$ref": "../types/event.json", "description": "Event to run when this entity becomes trusting", "title": "TODO Title" },
|
|
"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": "TODO Title"
|
|
}
|
|
}
|
|
}
|