Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/behaviors/minecraft.behavior.move_through_village.json
2020-11-01 17:22:42 +01:00

20 lines
741 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.behavior.move_through_village",
"type": "object",
"title": "Behavior.move_through_village 1.8.0",
"description": "Can only be used by Villagers. Allows the villagers to create paths around the village.",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"only_at_night": {
"type": "boolean",
"default": false,
"description": "If true, the mob will only move through the village during night time",
"title": "Only At Night"
}
}
}