Updated UNDOCUMENTED

This commit is contained in:
DaanV2
2021-07-01 11:35:53 +02:00
parent 6ac62d15e7
commit ba94cceb50
367 changed files with 2266 additions and 640 deletions

View File

@@ -39,13 +39,32 @@
"title": "Ignore Visibility"
},
"entity_types": { "$ref": "../types/entity_types.json", "description": "UNDOCUMENTATED: entity types", "title": "Entity Types" },
"avoid_mob_sound": { "title": "Avoid Mob Sound", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "string" },
"remove_target": { "title": "Remove Target", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" },
"on_escape_event": { "$ref": "../types/event.json", "title": "On Escape Event", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"avoid_mob_sound": {
"title": "Avoid Mob Sound",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "string"
},
"remove_target": {
"title": "Remove Target",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "boolean"
},
"on_escape_event": {
"$ref": "../types/event.json",
"title": "On Escape Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"sound_interval": {
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Sound Interval",
"oneOf": [
{

View File

@@ -49,9 +49,33 @@
"description": "Distance in blocks within the mob considers it has reached the goal. This is the `wiggle room` to stop the AI from bouncing back and forth trying to reach a specific spot",
"title": "Goal Radius"
},
"radius_change": { "type": "number", "title": "Radius Change", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"radius_adjustment_chance": { "type": "number", "title": "Radius Adjustment Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"height_adjustment_chance": { "type": "number", "title": "Height Adjustment Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"angle_change": { "type": "number", "title": "Angle Change", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"radius_change": {
"type": "number",
"title": "Radius Change",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"radius_adjustment_chance": {
"type": "number",
"title": "Radius Adjustment Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"height_adjustment_chance": {
"type": "number",
"title": "Height Adjustment Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"angle_change": {
"type": "number",
"title": "Angle Change",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -20,7 +20,13 @@
"description": "Determines the amount of time in seconds that this mob will look for a target before forgetting about it and looking for a new one when the target isn't visible any more",
"title": "Must See Forget Duration"
},
"on_defend_start": { "$ref": "../types/event.json", "title": "On Defend Start", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"on_defend_start": {
"$ref": "../types/event.json",
"title": "On Defend Start",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"within_radius": {
"type": "number",
"default": 0,

View File

@@ -12,6 +12,12 @@
"title": "Entity Types"
},
"must_reach": { "title": "Must Reach", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "boolean" },
"attack_chance": { "title": "Attack Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" }
"attack_chance": {
"title": "Attack Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
}
}
}

View File

@@ -4,34 +4,51 @@
"title": "Eat Block 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "./types/priority.json" },
"on_eat": { "$ref": "../types/trigger.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "On Eat" },
"on_eat": {
"$ref": "../types/trigger.json",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "On Eat"
},
"success_chance": {
"title": "Succes Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../../../../molang/number.json"
},
"time_until_eat": { "title": "Time Until Eat", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" },
"time_until_eat": {
"title": "Time Until Eat",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"eat_and_replace_block_pairs": {
"type": "array",
"title": "Eat And Replace Block Pairs",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": {
"type": "object",
"title": "Eat And Replace Block Pair",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"properties": {
"eat_block": {
"type": "string",
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../../../../general/block/identifier.json"
},
"replace_block": {
@@ -39,6 +56,7 @@
"title": "Replace Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../../../../general/block/identifier.json"
}
}

View File

@@ -7,18 +7,49 @@
"required": [],
"properties": {
"priority": { "$ref": "./types/priority.json" },
"search_width": { "type": "number", "title": "Search Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"search_height": { "type": "number", "title": "Search Height", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"search_width": {
"type": "number",
"title": "Search Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"search_height": {
"type": "number",
"title": "Search Height",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"minimum_path_length": { "type": "number", "title": "Minimum Path Length", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"minimum_distance": { "type": "number", "title": "Minimum Distance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"minimum_path_length": {
"type": "number",
"title": "Minimum Path Length",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"minimum_distance": {
"type": "number",
"title": "Minimum Distance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"scale_factor": { "type": "number", "title": "Scale Factor", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"scale_factor": {
"type": "number",
"title": "Scale Factor",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"cooldown_range": {
"title": "Cooldown range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": [
{ "title": "Min", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 },

View File

@@ -39,6 +39,12 @@
"title": "Look Time",
"items": [{ "type": "integer" }, { "type": "integer" }]
},
"target_distance": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Target Distance" }
"target_distance": {
"type": "number",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Target Distance"
}
}
}

View File

@@ -8,7 +8,13 @@
"properties": {
"priority": { "$ref": "./types/priority.json" },
"speed_multiplier": { "$ref": "./types/speed_multiplier.json" },
"cooldown_time": { "type": "number", "title": "Cooldown Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"cooldown_time": {
"type": "number",
"title": "Cooldown Time",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"melee_fov": {
"type": "number",
"default": 90.0,
@@ -41,7 +47,19 @@
"description": "If true, this goal will only trigger if the mob can reach its target.",
"title": "Require Complete Path"
},
"on_attack": { "$ref": "../types/event.json", "title": "On Attack", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"on_kill": { "$ref": "../types/event.json", "title": "On Attack", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"on_attack": {
"$ref": "../types/event.json",
"title": "On Attack",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"on_kill": {
"$ref": "../types/event.json",
"title": "On Attack",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -5,21 +5,65 @@
"additionalProperties": false,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"priority": { "$ref": "./types/priority.json" },
"tick_interval": { "type": "number", "title": "Tick Interval", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"start_chance": { "type": "number", "title": "Start Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"search_range": { "type": "number", "title": "Search Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"search_height": { "type": "number", "title": "Search Height", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"goal_radius": { "type": "number", "title": "Goal Radius", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"stay_duration": { "type": "number", "title": "Stay Duration", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"target_selection_method": { "type": "string", "title": "Target Selection Method", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"tick_interval": {
"type": "number",
"title": "Tick Interval",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"start_chance": {
"type": "number",
"title": "Start Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"search_range": {
"type": "number",
"title": "Search Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"search_height": {
"type": "number",
"title": "Search Height",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"goal_radius": {
"type": "number",
"title": "Goal Radius",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"stay_duration": {
"type": "number",
"title": "Stay Duration",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"target_selection_method": {
"type": "string",
"title": "Target Selection Method",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"target_offset": {
"type": "array",
"title": "Target Offset",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": [{ "type": "number" }, { "type": "number" }, { "type": "number" }]
},
"target_blocks": {
@@ -27,6 +71,7 @@
"title": "Target Blocks",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": { "type": "string" }
},
"on_stay_completed": {
@@ -34,6 +79,7 @@
"title": "On Stay Completed",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": { "$ref": "../types/event.json" }
},
"on_reach": {
@@ -41,6 +87,7 @@
"title": "On Reach",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": { "$ref": "../types/event.json" }
}
}

View File

@@ -3,6 +3,7 @@
"additionalProperties": false,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Ocelot Sit On Block 1.8.0",
"required": [],

View File

@@ -25,12 +25,54 @@
"description": "Multiplier for the sneaking speed. 1.0 means the ocelot will move at the speed it normally sneaks",
"title": "Sneak Speed Multiplier"
},
"cooldown_time": { "type": "number", "title": "Cooldown Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"x_max_rotation": { "type": "number", "title": "X Max Rotation", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"y_max_head_rotation": { "type": "number", "title": "Y Max Head Rotation", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max_distance": { "type": "number", "title": "Max Distance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max_sneak_range": { "type": "number", "title": "Max Sneak Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max_sprint_range": { "type": "number", "title": "Max Sprint Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"reach_multiplier": { "type": "number", "title": "Reach Multiplier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"cooldown_time": {
"type": "number",
"title": "Cooldown Time",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"x_max_rotation": {
"type": "number",
"title": "X Max Rotation",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"y_max_head_rotation": {
"type": "number",
"title": "Y Max Head Rotation",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"max_distance": {
"type": "number",
"title": "Max Distance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"max_sneak_range": {
"type": "number",
"title": "Max Sneak Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"max_sprint_range": {
"type": "number",
"title": "Max Sprint Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"reach_multiplier": {
"type": "number",
"title": "Reach Multiplier",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -28,15 +28,34 @@
"title": "Ignore Mob Damage"
},
"prefer_water": { "type": "boolean", "default": false, "description": "If true, the mob will prefer water over land", "title": "Prefer Water" },
"panic_sound": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Panic Sound" },
"panic_sound": {
"type": "string",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Panic Sound"
},
"sound_interval": {
"type": "object",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Sound Interval",
"properties": {
"range_min": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Range Minimum" },
"range_max": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Range Maximum" }
"range_min": {
"type": "number",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Range Minimum"
},
"range_max": {
"type": "number",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Range Maximum"
}
},
"additionalProperties": false
}

View File

@@ -2,6 +2,7 @@
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.play_dead",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Play dead 1.8.0",
"additionalProperties": false,
@@ -12,6 +13,7 @@
"title": "Duration",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number",
"minimum": 0
},
@@ -19,6 +21,7 @@
"title": "Force Below Health",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number",
"minimum": 0
},
@@ -26,6 +29,7 @@
"title": "Random Start Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number",
"minimum": 0
},
@@ -33,6 +37,7 @@
"title": "Random Damage Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": [
{ "title": "Min", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 },
@@ -43,11 +48,13 @@
"title": "Damage sources",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": {
"title": "Damage Source",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../../../../general/entity_damage.json"
}
},
@@ -55,6 +62,7 @@
"title": "Apply regeneration",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "boolean"
},
"filters": { "$ref": "../../filters/filters.json" }

View File

@@ -40,6 +40,13 @@
"description": "Distance in blocks the mob will look for crops to eat",
"title": "Search Range"
},
"search_height": { "type": "integer", "default": 0, "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Search Height" }
"search_height": {
"type": "integer",
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Search Height"
}
}
}

View File

@@ -2,6 +2,7 @@
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.ram_attack",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Ram Attack 1.8.0",
"additionalProperties": false,
@@ -12,54 +13,63 @@
"title": "Run speed",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"ram_speed": {
"title": "Ram speed",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"min_ram_distance": {
"title": "Minimum Ram speed",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"ram_distance": {
"title": "Ram Distance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"knockback_force": {
"title": "Knockback force",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"knockback_height": {
"title": "Knockback height",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "number"
},
"pre_ram_sound": {
"title": "Pre ram sound",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "string"
},
"ram_impact_sound": {
"title": "Ram impact sound",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "string"
},
"cooldown_range": {
"title": "Cooldown range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "array",
"items": [
{ "title": "Min", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 },
@@ -70,6 +80,7 @@
"title": "On start",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../types/event.json"
}
}

View File

@@ -12,6 +12,7 @@
"type": "array",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Hover Height",
"items": [{ "type": "number" }, { "type": "number" }]
},

View File

@@ -8,7 +8,14 @@
"properties": {
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"attack_interval": { "type": "number", "default": 0, "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO Title" },
"attack_interval": {
"type": "number",
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO Title"
},
"attack_interval_max": {
"type": "number",
"default": 0,
@@ -57,7 +64,19 @@
"description": "The allowable FOV the actor will use to determine if it can make a valid ranged attack",
"title": "TODO Title"
},
"target_in_sight_time": { "type": "number", "title": "Target In Sight Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"attack_radius_min": { "type": "number", "title": "Attack Radius Min", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"target_in_sight_time": {
"type": "number",
"title": "Target In Sight Time",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"attack_radius_min": {
"type": "number",
"title": "Attack Radius Min",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

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

View File

@@ -8,6 +8,12 @@
"properties": {
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"jump_chance_percentage": { "type": "number", "title": "Sink Delta", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"jump_chance_percentage": {
"type": "number",
"title": "Sink Delta",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -7,8 +7,20 @@
"required": [],
"properties": {
"priority": { "$ref": "./types/priority.json" },
"add_random_time_range": { "type": "number", "title": "Add Random Time Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"add_random_time_range": {
"type": "number",
"title": "Add Random Time Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"turn_range": { "type": "number", "title": "Turn Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"min_change_direction_time": { "type": "number", "title": "Min Change Direction Time", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"min_change_direction_time": {
"type": "number",
"title": "Min Change Direction Time",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -41,11 +41,18 @@
"description": "If true, this mob will chase after the target as long as it's a valid target",
"title": "TODO Title"
},
"stomp_range_multiplier": { "type": "number", "title": "Stomp Range Multiplier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"stomp_range_multiplier": {
"type": "number",
"title": "Stomp Range Multiplier",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"no_damage_range_multiplier": {
"type": "number",
"title": "No Damage Range Multiplier",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}

View File

@@ -58,14 +58,26 @@
"default": -1,
"description": "Amount of time in seconds that the spawned entity will be alive for. A value of -1.0 means it will remain alive for as long as it can"
},
"base_delay": { "type": "number", "default": 0, "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"base_delay": {
"type": "number",
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"entity_type": { "type": "string", "description": "The entity type of the entities we will spawn in this step" },
"num_entities_spawned": { "type": "integer", "default": 1, "description": "Number of entities that will be spawned in this step" },
"shape": { "type": "string", "default": "line", "description": "The base shape of this step. Valid values are circle and line" },
"size": { "type": "number", "default": 1, "description": "The base size of the entity" },
"sound_event": { "type": "string", "description": "The sound event to play for this step" },
"summon_cap": { "type": "integer", "default": 0, "description": "Maximum number of summoned entities at any given time" },
"summon_cap_radius": { "type": "number", "default": 0, "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"summon_cap_radius": {
"type": "number",
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"target": {
"type": "string",
"default": "self",

View File

@@ -10,5 +10,6 @@
"success_rate": { "title": "TODO", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" }
},
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}

View File

@@ -4,24 +4,74 @@
"title": "Swim With Entity 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"success_rate": { "type": "number", "title": "Success Rate", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"chance_to_stop": { "type": "number", "title": "Chance To Stop", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"state_check_interval": { "type": "number", "title": "State Check Interval", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"catch_up_threshold": { "type": "number", "title": "Catch Up Threshold", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"success_rate": {
"type": "number",
"title": "Success Rate",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"chance_to_stop": {
"type": "number",
"title": "Chance To Stop",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"state_check_interval": {
"type": "number",
"title": "State Check Interval",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"catch_up_threshold": {
"type": "number",
"title": "Catch Up Threshold",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"match_direction_threshold": {
"type": "number",
"title": "Match Direction Threshold",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"catch_up_multiplier": { "type": "number", "title": "Catch Up Multiplier", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"search_range": { "type": "number", "title": "Search Range", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"stop_distance": { "type": "number", "title": "Stop Distance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"entity_types": { "$ref": "../types/entity_types.json", "title": "Entity Types", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"catch_up_multiplier": {
"type": "number",
"title": "Catch Up Multiplier",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"search_range": {
"type": "number",
"title": "Search Range",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"stop_distance": {
"type": "number",
"title": "Stop Distance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"entity_types": {
"$ref": "../types/entity_types.json",
"title": "Entity Types",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -8,7 +8,13 @@
"properties": {
"priority": { "$ref": "types/priority.json" },
"speed_multiplier": { "$ref": "types/speed_multiplier.json" },
"damage_reach": { "type": "number", "title": "Damage Reach", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"damage_reach": {
"type": "number",
"title": "Damage Reach",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"delay_range": {
"$ref": "../types/range_number_type.json",
"default": [10.0, 20.0],

View File

@@ -2,13 +2,26 @@
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.behavior.target_when_pushed",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Target When Pushed 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
"priority": { "$ref": "types/priority.json" },
"entity_types": { "$ref": "../types/entity_types.json", "title": "Entity Types", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"percent_chance": { "type": "number", "title": "Percent Chance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
"entity_types": {
"$ref": "../types/entity_types.json",
"title": "Entity Types",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"percent_chance": {
"type": "number",
"title": "Percent Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -14,7 +14,13 @@
"description": "If true, the mob can stop being tempted if the player moves too fast while close to this mob",
"title": "TODO Title"
},
"can_tempt_while_ridden": { "type": "boolean", "title": "Can Tempt While Ridden", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"can_tempt_while_ridden": {
"type": "boolean",
"title": "Can Tempt While Ridden",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
},
"items": {
"type": "array",
"description": "List of items this mob is tempted by",

View File

@@ -40,5 +40,6 @@
}
},
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}

View File

@@ -46,7 +46,7 @@
"description": "Variance in seconds added to the duration [-delta, delta]",
"title": "Duration Delta"
},
"broadcastAnger": { "type": "boolean", "description": "UNDOCUMENTED", "title": "TODO" },
"broadcastRange": { "type": "integer", "description": "UNDOCUMENTED", "title": "TODO" }
"broadcastAnger": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" },
"broadcastRange": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" }
}
}

View File

@@ -18,6 +18,12 @@
"title": "Damage Range"
},
"entity_filter": { "$ref": "../../filters/filters.json", "description": "Entity_filter", "title": "Filter" },
"cause": { "type": "string", "description": "UNDOCUMENTED", "title": "Cause", "$ref": "../../../../general/entity/damage_source.json" }
"cause": {
"type": "string",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Cause",
"$ref": "../../../../general/entity/damage_source.json"
}
}
}

View File

@@ -5,7 +5,7 @@
"description": "Fires off a specified event when a block in the block list is broken within the sensor range.",
"additionalProperties": false,
"properties": {
"sensor_radius": { "type": "integer", "description": "UNDOCUMENTED", "title": "Sensor Radius", "minimum": 0 },
"sensor_radius": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Sensor Radius", "minimum": 0 },
"on_break": {
"type": "array",
"title": "On Break",
@@ -18,12 +18,14 @@
"type": "array",
"title": "Block List",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": { "type": "string", "title": "Block ID" }
},
"on_block_broken": { "type": "string", "title": "On Block Broken", "description": "On block broken" }
}
},
"description": "UNDOCUMENTED"
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}
}
}

View File

@@ -33,6 +33,7 @@
}
},
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO Title"
}
}

View File

@@ -9,6 +9,7 @@
"type": "number",
"default": 0,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Base Buoyancy"
},
"apply_gravity": {

View File

@@ -9,18 +9,21 @@
"type": "array",
"title": "Hitboxes",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": {
"type": "object",
"title": "Hitbox",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"width": { "type": "number", "title": "Width", "description": "UNDOCUMENTED" },
"height": { "type": "number", "title": "Height", "description": "UNDOCUMENTED" },
"width": { "type": "number", "title": "Width", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"height": { "type": "number", "title": "Height", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"pivot": {
"type": "array",
"title": "Pivot",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": [{ "type": "number" }, { "type": "number" }, { "type": "number" }]
}
}

View File

@@ -23,7 +23,13 @@
"description": "Determines if the `min_range_inactivity_timer` is used in the standard despawn rules.",
"title": "Despawn From Inactivity"
},
"despawn_from_distance": { "type": "object", "description": "UNDOCUMENTED", "title": "TODO", "additionalProperties": false },
"despawn_from_distance": {
"type": "object",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO",
"additionalProperties": false
},
"despawn_from_simulation_edge": {
"type": "boolean",
"default": true,

View File

@@ -3,15 +3,16 @@
"type": "object",
"title": "Dweller 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"dwelling_type": { "type": "string", "title": "Dwelling Type", "description": "UNDOCUMENTED" },
"dweller_role": { "type": "string", "title": "Dwelling Role", "description": "UNDOCUMENTED" },
"update_interval_base": { "type": "integer", "title": "Update Interval Base", "description": "UNDOCUMENTED" },
"update_interval_variant": { "type": "integer", "title": "Update Interval Variant", "description": "UNDOCUMENTED" },
"preferred_profession": { "type": "string", "title": "Preferred Profession", "description": "UNDOCUMENTED" },
"can_find_poi": { "type": "boolean", "title": "Can Find Poi", "description": "UNDOCUMENTED" },
"can_migrate": { "type": "boolean", "title": "Can Migrate", "description": "UNDOCUMENTED" },
"first_founding_reward": { "type": "integer", "title": "First Founding Reward", "description": "UNDOCUMENTED" }
"dwelling_type": { "type": "string", "title": "Dwelling Type", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"dweller_role": { "type": "string", "title": "Dwelling Role", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"update_interval_base": { "type": "integer", "title": "Update Interval Base", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"update_interval_variant": { "type": "integer", "title": "Update Interval Variant", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"preferred_profession": { "type": "string", "title": "Preferred Profession", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"can_find_poi": { "type": "boolean", "title": "Can Find Poi", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"can_migrate": { "type": "boolean", "title": "Can Migrate", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"first_founding_reward": { "type": "integer", "title": "First Founding Reward", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -18,8 +18,8 @@
"description": "How much should the discount be modified by when the player has cured the Zombie Villager. Can be specified as a pair of numbers (low-tier trade discount and high-tier trade discount)",
"title": "Cured Discount",
"items": [
{ "type": "integer", "title": "A", "description": "UNDOCUMENTED" },
{ "type": "integer", "title": "B", "description": "UNDOCUMENTED" }
{ "type": "integer", "title": "A", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
{ "type": "integer", "title": "B", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
]
},
"display_name": {
@@ -40,8 +40,8 @@
"description": "The max the discount can be modified by when the player has cured the Zombie Villager. Can be specified as a pair of numbers (low-tier trade discount and high-tier trade discount)",
"title": "Max Cured Discount",
"items": [
{ "type": "integer", "title": "A", "description": "UNDOCUMENTED" },
{ "type": "integer", "title": "B", "description": "UNDOCUMENTED" }
{ "type": "integer", "title": "A", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
{ "type": "integer", "title": "B", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
]
},
"max_nearby_cured_discount": {

View File

@@ -14,6 +14,7 @@
"type": "object",
"title": "Slot Drop Chance",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"drop_chance": { "type": "number", "title": "Drop Chance" },

View File

@@ -3,6 +3,7 @@
"type": "object",
"title": "Experience Reward 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"on_bred": {

View File

@@ -4,6 +4,7 @@
"title": "Fall Damage 1.8.0",
"additionalProperties": false,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": { "value": { "type": "number", "default": 1, "description": "UNDOCUMENTATED: value", "title": "Value" } }
}

View File

@@ -5,8 +5,8 @@
"additionalProperties": false,
"required": [],
"properties": {
"value": { "type": "integer", "description": "UNDOCUMENTED", "title": "Value" },
"max": { "type": "integer", "description": "UNDOCUMENTED", "title": "Max" }
"value": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Value" },
"max": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Max" }
},
"description": "UNDOCUMENTATED: "
}

View File

@@ -46,11 +46,12 @@
{
"type": "object",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO",
"additionalProperties": false,
"properties": {
"range_min": { "type": "integer", "description": "UNDOCUMENTED", "title": "TODO" },
"range_max": { "type": "integer", "description": "UNDOCUMENTED", "title": "TODO" }
"range_min": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" },
"range_max": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" }
}
}
]
@@ -73,11 +74,12 @@
{
"type": "object",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO",
"additionalProperties": false,
"properties": {
"range_min": { "type": "integer", "description": "UNDOCUMENTED", "title": "TODO" },
"range_max": { "type": "integer", "description": "UNDOCUMENTED", "title": "TODO" }
"range_min": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" },
"range_max": { "type": "integer", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO" }
}
}
]
@@ -88,6 +90,7 @@
}
},
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "TODO Title"
}
}

View File

@@ -1,6 +1,7 @@
{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.health",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Health 1.8.0",
"additionalProperties": false,

View File

@@ -9,15 +9,17 @@
"type": "array",
"title": "Damage Conditions",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": {
"type": "object",
"title": "Damage Condition",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"filters": { "$ref": "../../filters/filters.json" },
"cause": { "type": "string", "title": "Cause", "description": "Damage cause", "$ref": "../../../../general/entity/damage_source.json" },
"damage_per_tick": { "type": "integer", "title": "Damage Per Tick", "description": "UNDOCUMENTED" }
"damage_per_tick": { "type": "integer", "title": "Damage Per Tick", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}
}

View File

@@ -13,12 +13,23 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"additionalProperties": false,
"properties": {
"block": { "$ref": "../../../../general/block_definition.json" },
"entered_block_event": { "title": "Entered Block Event", "description": "UNDOCUMENTED", "$ref": "../types/event.json" },
"exited_block_event": { "title": "Exited Block Event", "description": "UNDOCUMENTED", "$ref": "../types/event.json" }
"entered_block_event": {
"title": "Entered Block Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../types/event.json"
},
"exited_block_event": {
"title": "Exited Block Event",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"$ref": "../types/event.json"
}
}
}
}

View File

@@ -5,5 +5,5 @@
"title": "Is Stackable 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "value": { "type": "boolean", "description": "UNDOCUMENTED", "title": "Value" } }
"properties": { "value": { "type": "boolean", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Value" } }
}

View File

@@ -4,9 +4,10 @@
"title": "Knockback Resistance 1.8.0",
"additionalProperties": false,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"value": { "type": "number", "description": "UNDOCUMENTED", "title": "Value" },
"max": { "type": "number", "description": "UNDOCUMENTED", "title": "Maximum" }
"value": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Value" },
"max": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Maximum" }
}
}

View File

@@ -1,9 +1,10 @@
{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.lava_movement",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Lava Movement 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "value": { "type": "number", "title": "Value", "description": "UNDOCUMENTED" } }
"properties": { "value": { "type": "number", "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" } }
}

View File

@@ -18,6 +18,6 @@
"description": "The mob effect that is applied to entities that enter this entities effect range.",
"title": "Mob Effect"
},
"entity_filter": { "$ref": "../../filters/filters.json", "title": "Entity Filter", "description": "UNDOCUMENTED" }
"entity_filter": { "$ref": "../../filters/filters.json", "title": "Entity Filter", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -7,5 +7,6 @@
"properties": {
"max_turn": { "type": "number", "default": 30, "description": "The maximum number in degrees the mob can turn per tick.", "title": "TODO Title" }
},
"description": "UNDOCUMENTED"
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}

View File

@@ -3,10 +3,11 @@
"type": "object",
"title": "Movement.glide 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"required": [],
"properties": {
"start_speed": { "type": "number", "title": "Start Speed", "description": "UNDOCUMENTED" },
"speed_when_turning": { "type": "number", "title": "Speed When Turning", "description": "UNDOCUMENTED" }
"start_speed": { "type": "number", "title": "Start Speed", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"speed_when_turning": { "type": "number", "title": "Speed When Turning", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -8,6 +8,7 @@
"value": {
"title": "Value",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{
"type": "array",
@@ -20,7 +21,8 @@
{ "type": "object", "additionalProperties": false, "properties": { "range_min": { "type": "number" }, "range_max": { "type": "number" } } }
]
},
"max": { "type": "number", "title": "Maximum", "description": "UNDOCUMENTED" }
"max": { "type": "number", "title": "Maximum", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
},
"description": "UNDOCUMENTED"
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}

View File

@@ -5,5 +5,6 @@
"additionalProperties": false,
"required": [],
"properties": {},
"description": "UNDOCUMENTED"
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
}

View File

@@ -7,6 +7,6 @@
"required": [],
"properties": {
"max_turn": { "type": "number", "default": 30, "description": "The maximum number in degrees the mob can turn per tick.", "title": "TODO Title" },
"sway_amplitude": { "type": "number", "description": "UNDOCUMENTED", "title": "TODO Title" }
"sway_amplitude": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "TODO Title" }
}
}

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -36,6 +36,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }

View File

@@ -37,6 +37,7 @@
"items": {
"title": "Block",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "string", "$ref": "../../../../general/block/identifier.json" },
{ "type": "object", "title": "TODO", "properties": { "name": { "$ref": "../../../../general/block/identifier.json" } } }
@@ -59,6 +60,7 @@
"type": "boolean",
"default": true,
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Can Float"
},
"can_jump": {

View File

@@ -19,38 +19,45 @@
"type": "object",
"title": "Npc Data",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"portrait_offsets": {
"type": "object",
"title": "Portrait Offsets",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"translate": { "$ref": "#/definitions/rangeXYZ", "title": "Translate", "description": "UNDOCUMENTED" },
"scale": { "$ref": "#/definitions/rangeXYZ", "title": "Scale", "description": "UNDOCUMENTED" }
"translate": { "$ref": "#/definitions/rangeXYZ", "title": "Translate", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"scale": { "$ref": "#/definitions/rangeXYZ", "title": "Scale", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
},
"picker_offsets": {
"type": "object",
"title": "Picker Offsets",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"translate": { "$ref": "#/definitions/rangeXYZ", "title": "Translate", "description": "UNDOCUMENTED" },
"scale": { "$ref": "#/definitions/rangeXYZ", "title": "Scale", "description": "UNDOCUMENTED" }
"translate": { "$ref": "#/definitions/rangeXYZ", "title": "Translate", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"scale": { "$ref": "#/definitions/rangeXYZ", "title": "Scale", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
},
"skin_list": {
"type": "array",
"title": "Skin List",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"items": {
"type": "object",
"title": "Skin",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": { "variant": { "title": "Variant", "description": "UNDOCUMENTED", "type": "integer", "minimum": 0 } }
"properties": {
"variant": { "title": "Variant", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "integer", "minimum": 0 }
}
}
}
}

View File

@@ -4,9 +4,10 @@
"type": "object",
"title": "Player.exhaustion 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED" }
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -4,9 +4,10 @@
"type": "object",
"title": "Player.experience 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED" }
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -4,9 +4,10 @@
"type": "object",
"title": "Player.level 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": {
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED" }
"value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"max": { "type": "number", "default": true, "title": "Maximum", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -4,6 +4,7 @@
"type": "object",
"title": "Player.saturation 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"properties": { "value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED" } }
"properties": { "value": { "type": "number", "default": true, "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" } }
}

View File

@@ -12,6 +12,6 @@
"type": "string",
"description": "Actor definition to use as projectile for the ranged attack. The actor definition must have the projectile component to be able to be shot as a projectile"
},
"type": { "title": "Type", "type": "string", "description": "UNDOCUMENTED" }
"type": { "title": "Type", "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" }
}
}

View File

@@ -3,6 +3,7 @@
"type": "object",
"title": "Trust 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": [],
"additionalProperties": false,
"properties": {}

View File

@@ -1,9 +1,10 @@
{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.underwater_movement",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Underwater Movement 1.8.0",
"additionalProperties": false,
"required": [],
"properties": { "value": { "type": "number", "title": "Value", "description": "UNDOCUMENTED" } }
"properties": { "value": { "type": "number", "title": "Value", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" } }
}

View File

@@ -1,6 +1,7 @@
{
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.water_movement",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"title": "Water Movement 1.8.0",
"additionalProperties": false,

View File

@@ -3,6 +3,7 @@
"type": "object",
"title": "Entity Behavior 1.8.0",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"required": ["format_version", "minecraft:entity"],
"properties": {
"format_version": {

View File

@@ -31,7 +31,7 @@
"properties": {
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
"trigger": { "type": "string", "description": "UNDOCUMENTED", "title": "Trigger" },
"trigger": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Trigger" },
"weight": { "type": "number", "description": "UNDOCUMENTATED: weight", "title": "Weight" }
},
"description": "UNDOCUMENTATED: randomize",
@@ -56,7 +56,7 @@
"title": "Sequences"
},
"filters": { "$ref": "./../filters/filters.json" },
"trigger": { "type": "string", "description": "UNDOCUMENTED", "title": "Trigger" }
"trigger": { "type": "string", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Trigger" }
}
}
},

View File

@@ -62,6 +62,7 @@
"type": "object",
"title": "Conditional Animation",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"additionalProperties": { "type": "string", "title": "Animation" }
}
]