37 lines
1.2 KiB
JSON
37 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.behaviour.entities.1.16.0.minecraft.behavior.leap_at_target",
|
|
"description": "Allows monsters to jump at and attack their target. Can only be used by hostile mobs.",
|
|
"type": "object",
|
|
"title": "Behavior.leap_at_target 1.16.0",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"properties": {
|
|
"priority": { "$ref": "types/base_priority.json" },
|
|
"must_be_on_ground": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "If true, the mob will only jump at its target if its on the ground. Setting it to false will allow it to jump even if its already in the air",
|
|
"title": "Must be on ground"
|
|
},
|
|
"set_persistent": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Allows the actor to be set to persist upon targeting a player",
|
|
"title": "Set persistent"
|
|
},
|
|
"yd": {
|
|
"type": "number",
|
|
"default": 0,
|
|
"description": "The height in blocks the mob jumps when leaping at its target",
|
|
"title": "Yd"
|
|
},
|
|
"target_dist": {
|
|
"type": "number",
|
|
"default": 0,
|
|
"description": "UNDOCUMENTATED",
|
|
"title": "Target dist"
|
|
}
|
|
}
|
|
}
|