Moved to source folder

This commit is contained in:
DaanV2
2021-02-01 18:39:12 +01:00
parent c434801daf
commit ac0f3d12d6
1000 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,83 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.npc",
"type": "object",
"title": "Npc 1.8.0",
"description": "A component that applies a mob effect to entities that get within range.",
"additionalProperties": false,
"definitions": {
"rangeXYZ": {
"type": "array",
"items": [
{ "type": "number", "title": "X" },
{ "type": "number", "title": "Y" },
{ "type": "number", "title": "Z" }
]
}
},
"properties": {
"npc_data": {
"type": "object",
"title": "Npc data",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"portrait_offsets": {
"type": "object",
"title": "Portrait offsets",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"translate": {
"$ref": "#/definitions/rangeXYZ",
"title": "Translate",
"description": "UNDOCUMENTATED"
},
"scale": {
"$ref": "#/definitions/rangeXYZ",
"title": "Scale",
"description": "UNDOCUMENTATED"
}
}
},
"picker_offsets": {
"type": "object",
"title": "Picker offsets",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"translate": {
"$ref": "#/definitions/rangeXYZ",
"title": "Translate",
"description": "UNDOCUMENTATED"
},
"scale": {
"$ref": "#/definitions/rangeXYZ",
"title": "Scale",
"description": "UNDOCUMENTATED"
}
}
},
"skin_list": {
"type": "array",
"title": "Skin list",
"description": "UNDOCUMENTATED",
"items": {
"type": "object",
"title": "Skin",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"variant": {
"title": "Variant",
"description": "UNDOCUMENTATED",
"type": "integer",
"minimum": 0
}
}
}
}
}
}
}
}