Removed minecraft.
This commit is contained in:
39
source/behavior/entities/format/components/health.json
Normal file
39
source/behavior/entities/format/components/health.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.entities.minecraft.health",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "object",
|
||||
"title": "Health",
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"dependencies": { "max": ["value"] },
|
||||
"properties": {
|
||||
"max": { "type": "integer", "description": "The maximum health the entity can heal", "title": "Maximum" },
|
||||
"value": {
|
||||
"description": "Current health of the entity",
|
||||
"title": "Value",
|
||||
"oneOf": [
|
||||
{ "type": "integer" },
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["range_min", "range_max"],
|
||||
"properties": {
|
||||
"range_min": {
|
||||
"title": "Range Minimum",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "number"
|
||||
},
|
||||
"range_max": {
|
||||
"title": "Range Maximum",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user