2021-10-08 12:59:03 +02:00
|
|
|
{
|
2021-10-08 13:04:13 +02:00
|
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.npc",
|
2021-10-08 12:59:03 +02:00
|
|
|
"type": "object",
|
2021-10-08 13:04:13 +02:00
|
|
|
"title": "Npc",
|
2021-10-08 12:59:03 +02:00
|
|
|
"description": "A component that applies a mob effect to entities that get within range.",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"definitions": {
|
|
|
|
|
"rangeXYZ": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": [
|
2021-10-11 18:10:42 +02:00
|
|
|
{
|
|
|
|
|
"type": "number",
|
|
|
|
|
"title": "X"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "number",
|
|
|
|
|
"title": "Y"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "number",
|
|
|
|
|
"title": "Z"
|
|
|
|
|
}
|
2021-10-08 12:59:03 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"properties": {
|
|
|
|
|
"npc_data": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Npc Data",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
|
|
|
|
"portrait_offsets": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Portrait Offsets",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
|
|
|
|
"translate": {
|
|
|
|
|
"$ref": "#/definitions/rangeXYZ",
|
|
|
|
|
"title": "Translate",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED"
|
|
|
|
|
},
|
|
|
|
|
"scale": {
|
|
|
|
|
"$ref": "#/definitions/rangeXYZ",
|
|
|
|
|
"title": "Scale",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"picker_offsets": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Picker Offsets",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
|
|
|
|
"translate": {
|
|
|
|
|
"$ref": "#/definitions/rangeXYZ",
|
|
|
|
|
"title": "Translate",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED"
|
|
|
|
|
},
|
|
|
|
|
"scale": {
|
|
|
|
|
"$ref": "#/definitions/rangeXYZ",
|
|
|
|
|
"title": "Scale",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"skin_list": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"title": "Skin List",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Skin",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
2021-10-11 18:10:42 +02:00
|
|
|
"variant": {
|
|
|
|
|
"title": "Variant",
|
|
|
|
|
"description": "UNDOCUMENTED",
|
|
|
|
|
"$comment": "UNDOCUMENTED",
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"minimum": 0
|
|
|
|
|
}
|
2021-10-08 12:59:03 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-11 18:10:42 +02:00
|
|
|
},
|
|
|
|
|
"examples": [
|
|
|
|
|
{
|
|
|
|
|
"npc_data": {}
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-10-08 12:59:03 +02:00
|
|
|
}
|