This commit is contained in:
DaanV2
2021-07-02 21:31:53 +02:00
parent 202f443a58
commit 74cd9336a6
8 changed files with 19 additions and 21 deletions

View File

@@ -8,13 +8,11 @@
"damage_conditions": {
"type": "array",
"title": "Damage Conditions",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"description": "An array of conditions used to compare the event to.",
"items": {
"type": "object",
"title": "Damage Condition",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"description": "A condition used to compare the event to.",
"additionalProperties": false,
"properties": {
"filters": { "$ref": "../../filters/filters.json" },
@@ -22,8 +20,7 @@
"damage_per_tick": {
"type": "integer",
"title": "Damage Per Tick",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
"description": "Amount of damage done each tick that the conditions are met."
}
}
}

View File

@@ -69,7 +69,7 @@
"properties": {
"table": {
"type": "string",
"default": "",
"$ref": "../../../../general/loot_table/identifier.json",
"description": "File path, relative to the Behavior Pack's path, to the loot table file.",
"title": "Table"
}
@@ -83,7 +83,7 @@
},
"transform_to_item": {
"type": "string",
"title": "Transform to item",
"title": "Transform To Item",
"description": "The feed item used will transform to this item upon successful interaction. Format: itemName:auxValue"
},
"use_item": { "type": "boolean", "default": false, "description": "If true, the interaction will use an item.", "title": "Use Item" }
@@ -92,8 +92,7 @@
},
"properties": {
"interactions": {
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"description": "The interactions",
"title": "Interactions",
"oneOf": [
{ "type": "object", "$ref": "#/definitions/interaction_spec" },

View File

@@ -21,8 +21,7 @@
"entity_filter": {
"$ref": "../../filters/filters.json",
"title": "Entity Filter",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED"
"description": "Filter to use for conditions"
}
}
}

View File

@@ -11,6 +11,10 @@
"description": "The maximum number in degrees the mob can turn per tick.",
"title": "Maximum Turn"
},
"sway_amplitude": { "type": "number", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Sway Amplitude" }
"sway_amplitude": {
"type": "number",
"description": "The amount of sway that is allowed for movement.",
"title": "Sway Amplitude"
}
}
}

View File

@@ -36,13 +36,12 @@
"always_show": { "type": "boolean", "default": false, "description": "If true, the name will always be shown", "title": "Always Show" },
"default_trigger": { "$ref": "../types/trigger.json", "description": "Trigger to run when the entity gets named", "title": "Default Trigger" },
"name_actions": {
"title": "Name Actions",
"description": "Describes the special names for this entity and the events to call when the entity acquires those names",
"oneOf": [
{ "type": "array", "items": { "$ref": "#/definitions/name_action" } },
{ "type": "object", "$ref": "#/definitions/name_action" }
],
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"title": "Name Actions"
]
}
}
}

View File

@@ -1,6 +1,6 @@
{
"$id": "blockception.minecraft.behavior.entities.1.16.0.minecraft.scheduler",
"description": "Defines a list of items the mob wants to share or pick up. Each item must have the following parameters:",
"description": "fires off scheduled mob events at time of day events.",
"type": "object",
"title": "Scheduler 1.16.0",
"additionalProperties": false,

View File

@@ -71,7 +71,7 @@
"properties": {
"entities": {
"title": "Entities",
"description": "UNDOCUMENTED",
"description": "The entities to spawn",
"$comment": "UNDOCUMENTED",
"oneOf": [
{ "type": "object", "$ref": "#/definitions/entity_spawn" },

View File

@@ -2,10 +2,10 @@
"$id": "blockception.minecraft.behavior.entities.filters.is_game_rule",
"type": "object",
"title": "Is Game Rule",
"description": "UNDOCUMENTED:",
"description": "Tests whether a named game rule is active.",
"required": ["domain"],
"properties": {
"domain": { "description": "The Game Rule to test.", "title": "Domain" },
"domain": { "description": "The Game Rule to test.", "title": "Domain", "examples": ["domobspawning"] },
"operator": { "$ref": "./types/operator.json" },
"subject": { "$ref": "./types/subject.json" },
"value": { "description": "Tests whether a named game rule is active.", "default": true, "type": "boolean", "title": "Value" }