Updated filter refernences

This commit is contained in:
DaanV2
2021-06-03 14:11:45 +02:00
parent 8edda85149
commit 85f00c81cf
217 changed files with 277 additions and 349 deletions

View File

@@ -6,7 +6,7 @@
"title": "Avoid Mob Type 1.8.0",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"max_dist": { "type": "number", "default": 0, "description": "Maximum distance to look for an entity", "title": "Max Dist" },
"max_flee": {
"type": "number",

View File

@@ -6,7 +6,7 @@
"description": "Allows this mob to look at and follow the player that holds food they like.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"items": {
"type": "array",
"description": "List of items that this mob likes",

View File

@@ -4,6 +4,6 @@
"title": "Break Door 1.8.0",
"description": "Allows this mob to break doors.",
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" } },
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "./types/speed_multiplier.json" } },
"additionalProperties": false
}

View File

@@ -5,5 +5,5 @@
"title": "Breed 1.8.0",
"description": "Allows this mob to breed with other mobs.",
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "./types/speed_multiplier.json" } }
}

View File

@@ -5,7 +5,7 @@
"description": "This allows the mob celebrate by jumping up and playing a sound periodically.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"celebration_sound": { "type": "string", "default": "", "description": "The sound to occasionally play.", "title": "Celebration Sound" },
"duration": { "type": "number", "default": 1, "description": "The duration of the celebration (in seconds).", "title": "Duration" },
"jump_interval": {

View File

@@ -5,5 +5,5 @@
"title": "Charge Attack 1.8.0",
"description": "Allows the mob to attack its target by running at it.",
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" } }
}

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"items": {
"type": "array",
"title": "Items",

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to move in a circle around a point or a target.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": {
"type": "number",
"default": 1.0,

View File

@@ -5,7 +5,7 @@
"title": "Controlled By Player 1.8.0",
"description": "Allows the mob to be controlled by the player.",
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"mount_speed_multiplier": {
"type": "number",
"default": 1,

View File

@@ -5,7 +5,7 @@
"description": "Allows the mob to target another mob that hurts an entity it trusts.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"aggro_sound": { "type": "string", "default": "", "description": "Sound to occasionally play while defending.", "title": "Aggro Sound" },
"attack_interval": { "type": "integer", "default": 0, "description": "Time in seconds between attacks", "title": "Attack Interval" },
"must_see": {

View File

@@ -5,7 +5,7 @@
"title": "Defend Village Target 1.8.0",
"description": "Allows the mob to stay in the village and fight mobs hostile to the villagers.",
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": {
"$ref": "../types/entity_types.json",
"description": "List of entity types this mob considers a threat to the village",

View File

@@ -5,8 +5,8 @@
"title": "Delayed Attack 1.8.0",
"description": "Allows the mob to drink potions based on specified environment conditions.",
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"attack_duration": { "type": "number", "default": 1, "description": "The duration of the attack animation in seconds", "title": "TODO Title" },
"attack_once": { "type": "boolean", "default": false, "description": "If true, this mob will attack only one time.", "title": "TODO Title" },
"attack_types": { "type": "string", "default": "", "description": "Defines the entity types this mob will attack", "title": "TODO Title" },

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Door Interact 1.8.0",
"description": "Allows the mob to drink potions based on specified environment conditions.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonchargeplayer 1.8.0",
"description": "Allows the dragon to attack a player by flying fast at them. The player is chosen by the dragonscanning goal. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragondeath 1.8.0",
"description": "Allows the dragon to go out with glory. This controls the Ender Dragon's death animation and can't be used by other mobs.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonflaming 1.8.0",
"description": "Allows the dragon to use its flame breath attack. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonholdingpattern 1.8.0",
"description": "Allows the Dragon to fly around in a circle around the center podium. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonlanding 1.8.0",
"description": "Allows the Dragon to stop flying and transition into perching mode. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonscanning 1.8.0",
"description": "Allows the dragon to look around for a player to attack while in perch mode. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragonstrafeplayer 1.8.0",
"description": "Allows the dragon to fly around looking for a player and shoot fireballs at them. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -4,5 +4,5 @@
"type": "object",
"title": "Dragontakeoff 1.8.0",
"description": "Allows the dragon to leave perch mode and go back to flying around. Can only be used by the Ender Dragon.",
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"speed_modifier": { "default": 0.0, "description": "TODO description: speed modifier", "title": "Speed Modifier" },
"potions": {
"type": "array",

View File

@@ -5,8 +5,8 @@
"title": "Drop Item For 1.8.0",
"description": "Allows the mob to drink potions based on specified environment conditions.",
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"entity_types": { "$ref": "../types/entity_types.json" },
"drop_item_chance": { "type": "number", "default": 1.0, "description": "The probability that the mob will drop an item.", "title": "TODO Title" },
"goal_radius": {

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"on_eat": { "$ref": "../types/trigger.json", "description": "UNDOCUMENTATED", "title": "On Eat" },
"success_chance": {
"title": "Succes Chance",

View File

@@ -5,7 +5,7 @@
"description": "If the mob is carrying a food item, the mob will eat it and the effects will be applied to the mob.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"delay_before_eating": {
"type": "number",
"description": "Time in seconds the mob should wait before eating the item.",

View File

@@ -5,5 +5,5 @@
"additionalProperties": false,
"description": "Allows the enderman to drop a block they are carrying. Can only be used by Endermen.",
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -5,5 +5,5 @@
"description": "Allows the enderman to take a block and carry it around. Can only be used by Endermen.",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"explore_dist": {
"type": "number",
"default": 5,

View File

@@ -5,8 +5,8 @@
"description": "Allows the mob to seek shade.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"cooldown_time": {
"type": "number",
"default": 0,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"avoid_water": {
"type": "boolean",
"default": false,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"search_range": {
"type": "integer",
"default": 0,

View File

@@ -5,5 +5,5 @@
"description": "Allows the mob to run away from direct sunlight and seek shade.",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" } }
}

View File

@@ -5,5 +5,5 @@
"description": "Allows the mob to stay afloat while swimming.",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"xz_dist": {
"type": "integer",
"default": 10,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"entity_types": {
"$ref": "../types/entity_types.json",
"description": "List of entity types that this mob can follow in a caravan",

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"search_range": {
"type": "integer",
"default": 0,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"start_distance": {
"type": "number",
"default": 10,

View File

@@ -5,5 +5,5 @@
"description": "Allows the mob to follow their parent around.",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "./types/speed_multiplier.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"follow_distance": {
"type": "number",
"default": 0,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -5,5 +5,5 @@
"description": "Allows the guardian to use its laser beam attack. Can only be used by Guardians and Elder Guardians.",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"max_seconds_before_search": { "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" },
"search_cooldown_max_seconds": { "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" },
"seconds_until_new_task": { "title": "UNDOCUMENTATED", "description": "UNDOCUMENATED", "type": "number" }

View File

@@ -6,8 +6,8 @@
"description": "Allows a mob with the hide component to attempt to move to - and hide at - an owned or nearby POI.",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"duration": { "type": "number", "default": 1, "description": "Amount of time in seconds that the mob reacts.", "title": "TODO Title" },
"poi_type": { "type": "string", "default": "", "description": "Defines what POI type to hide at.", "title": "TODO Title" },
"timeout_cooldown": {

View File

@@ -5,7 +5,7 @@
"description": "The mob freezes and looks at the mob they are targeting.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"broadcast": {
"type": "boolean",
"default": false,

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to target another mob that hurts them.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": { "$ref": "../types/entity_types.json", "description": "TODO description: entity types", "title": "Entity Types" },
"alert_same_type": {
"type": "boolean",

View File

@@ -6,8 +6,8 @@
"description": "Allows the mob to inspect bookshelves.",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"attack_time": {
"type": "number",
"default": 0.5,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"interval": {
"type": "integer",
"default": 120,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"must_be_on_ground": {
"type": "boolean",
"default": true,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"look_distance": {
"type": "number",
"default": 8.0,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"angle_of_view_vertical": {
"type": "integer",
"default": 360,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"look_distance": {
"type": "number",
"default": 8.0,

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to look at the player they are trading with.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"look_distance": {
"type": "number",
"default": 8.0,

View File

@@ -5,5 +5,5 @@
"title": "Make Love 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"cooldown_time": { "type": "number", "title": "Cooldown Time", "description": "UNDOCUMENTATED" },
"melee_fov": {
"type": "number",

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"cooldown_time": {
"type": "number",
"default": 0,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"target_dist": {
"type": "number",
"default": 0.0,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"timeout_cooldown": {
"type": "number",
"default": 8,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"only_at_night": {
"type": "boolean",
"default": false,

View File

@@ -6,7 +6,7 @@
"description": "UNDOCUMENTATED",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"tick_interval": { "type": "number", "title": "Tick Interval", "description": "UNDOCUMENTATED" },
"start_chance": { "type": "number", "title": "Start Chance", "description": "UNDOCUMENTATED" },
"search_range": { "type": "number", "title": "Search Range", "description": "UNDOCUMENTATED" },

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -5,8 +5,8 @@
"description": "Allows the mob to move back into lava when on land.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -5,8 +5,8 @@
"description": "Allows the mob to move back into lava when on land.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -6,8 +6,8 @@
"description": "Allows the mob to move to a POI if able to",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"poi_type": { "type": "string", "description": "Tells the goal what POI type it should be looking for", "title": "TODO Title" }
}
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"block_distance": {
"type": "number",
"default": 16,

View File

@@ -6,8 +6,8 @@
"description": "Allows the mob to move into a random location within a village.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"cooldown_time": {
"type": "number",
"default": 0,

View File

@@ -6,8 +6,8 @@
"description": "Allows the mob to move back into water when on land.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"search_range": {
"type": "integer",
"default": 0,

View File

@@ -5,5 +5,5 @@
"additionalProperties": false,
"description": "UNDOCUMENTATED, comes from cat",
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" } }
}

View File

@@ -6,8 +6,8 @@
"description": "Allows Guardians, Iron Golems and Villagers to move within their pre-defined area that the mob should be restricted to. Other mobs don't have a restriction defined.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"control_flags": {
"type": "array",
"items": { "type": "string", "enum": ["move", "look"], "description": "TODO description: control flags", "title": "Control Flags" },

View File

@@ -6,8 +6,8 @@
"description": "Allows mob to move towards its current target.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"within_radius": {
"type": "number",
"default": 0.0,

View File

@@ -5,8 +5,8 @@
"description": "Allows the mob to move back into lava when on land.",
"additionalProperties": false,
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"cooldown_max": {
"type": "number",
"default": 0,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": {
"description": "List of entity types that this mob considers valid targets",
"$ref": "../types/entity_types.json",

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": {
"description": "List of entity types that this mob considers valid targets",
"title": "Entity Types",

View File

@@ -5,5 +5,5 @@
"type": "object",
"title": "Ocelot Sit On Block 1.8.0",
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "./types/speed_multiplier.json" } }
}

View File

@@ -6,7 +6,7 @@
"description": "Can only be used by the Ocelot. Allows it to perform the sneak and pounce attack.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"walk_speed_multiplier": {
"type": "number",
"default": 1.0,

View File

@@ -5,5 +5,5 @@
"additionalProperties": false,
"description": "Allows the mob to offer the player a flower like the Iron Golem does.",
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to open doors. Requires the mob to be able to path through doors, otherwise the mob won't even want to try opening them.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"close_door_after": {
"type": "boolean",
"default": true,

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to target another mob that hurts their owner.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": {
"$ref": "../types/entity_types.json",
"description": "List of entity types that this mob can target if they hurt their owner",

View File

@@ -6,7 +6,7 @@
"description": "Allows the mob to target a mob that is hurt by their owner.",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"entity_types": {
"$ref": "../types/entity_types.json",
"description": "List of entity types that this entity can target if the potential target is hurt by this mob's owner",

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"speed_multiplier": { "$ref": "./types/base_speed_multiplier.json" },
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"damage_sources": {
"type": "array",
"items": { "$ref": "../../../../general/entity_damage.json" },

View File

@@ -5,5 +5,5 @@
"title": "Peek 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -6,8 +6,8 @@
"title": "Pickup Items 1.8.0",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"goal_radius": {
"type": "number",
"default": 0.5,

View File

@@ -5,5 +5,5 @@
"title": "Play 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" }, "speed_multiplier": { "$ref": "types/base_speed_multiplier.json" } }
"properties": { "priority": { "$ref": "types/priority.json" }, "speed_multiplier": { "$ref": "types/speed_multiplier.json" } }
}

View File

@@ -5,5 +5,5 @@
"title": "Player Ride Tamed 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "./types/base_priority.json" } }
"properties": { "priority": { "$ref": "./types/priority.json" } }
}

View File

@@ -6,8 +6,8 @@
"title": "Raid Garden 1.8.0",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"blocks": {
"type": "array",
"description": "Blocks that the mob is looking for to eat",

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"cooldown_time": {
"type": "number",
"default": 0,

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"can_land_on_trees": {
"type": "boolean",
"default": true,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"hover_height": {
"type": "array",
"description": "UNDOCUMENTATED",

View File

@@ -6,7 +6,7 @@
"title": "Random Look Around 1.8.0",
"required": [],
"properties": {
"priority": { "$ref": "./types/base_priority.json" },
"priority": { "$ref": "./types/priority.json" },
"look_time": {
"$ref": "../types/range_number_type.json",
"default": [2, 4],

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"max_look_count": {
"type": "integer",
"default": 2,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"cooldown": {
"type": "number",
"default": 0,

View File

@@ -5,8 +5,8 @@
"title": "Random Stroll 1.8.0",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"interval": {
"type": "integer",
"default": 120,

View File

@@ -5,8 +5,8 @@
"description": "Allows an entity to randomly move through water",
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"avoid_surface": {
"type": "boolean",
"default": true,

View File

@@ -6,8 +6,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"speed_multiplier": { "$ref": "types/base_speed_multiplier.json" },
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"attack_interval": { "type": "number", "default": 0, "description": "UNDOCUMENTATED", "title": "TODO Title" },
"attack_interval_max": {
"type": "number",

View File

@@ -5,5 +5,5 @@
"title": "Receive Love 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" } }
"properties": { "priority": { "$ref": "types/priority.json" } }
}

View File

@@ -5,5 +5,5 @@
"title": "Restrict Open Door 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" } }
"properties": { "priority": { "$ref": "types/priority.json" } }
}

View File

@@ -5,5 +5,5 @@
"title": "Restrict Sun 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "priority": { "$ref": "types/base_priority.json" } }
"properties": { "priority": { "$ref": "types/priority.json" } }
}

View File

@@ -6,7 +6,7 @@
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/base_priority.json" },
"priority": { "$ref": "types/priority.json" },
"liquid_y_offset": { "type": "number", "title": "Liquid Y Offset", "description": "UNDOCUMENTATED" },
"rise_delta": { "type": "number", "title": "Rise Delta", "description": "UNDOCUMENTATED" },
"sink_delta": { "type": "number", "title": "Sink Delta", "description": "UNDOCUMENTATED" }

Some files were not shown because too many files have changed in this diff Show More