Initial Commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behaviour.entities.1.8.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.8.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": "TODO title"
|
||||
},
|
||||
"set_persistent": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "Allows the actor to be set to persist upon targeting a player",
|
||||
"title": "TODO title"
|
||||
},
|
||||
"yd": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
"description": "The height in blocks the mob jumps when leaping at its target",
|
||||
"title": "TODO title"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user