Flattened 1.16.0
This commit is contained in:
@@ -1,37 +1,39 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.boostable",
|
||||
"$id": "blockception.minecraft.behavior.entities.1.16.0.minecraft.boostable",
|
||||
"type": "object",
|
||||
"title": "Boostable 1.8.0",
|
||||
"title": "Boostable 1.16.0",
|
||||
"additionalProperties": false,
|
||||
"description": "Defines the conditions and behavior of a rideable entity's boost",
|
||||
"required": [],
|
||||
|
||||
"properties": {
|
||||
"duration": { "type": "number", "default": 3, "description": "Time in seconds for the boost", "title": "Duration" },
|
||||
"duration": { "type": "number", "default": 3, "description": "Time in seconds for the boost.", "title": "Duration" },
|
||||
"speed_multiplier": {
|
||||
"type": "number",
|
||||
"default": 1,
|
||||
"description": "Factor by which the entity's normal speed increases. E.g. 2.0 means go twice as fast",
|
||||
"description": "Factor by which the entity's normal speed increases. E.g. 2.0 means go twice as fast.",
|
||||
"title": "Speed Multiplier"
|
||||
},
|
||||
"boost_items": {
|
||||
"type": "array",
|
||||
"description": "List of items that can be used to boost while riding this entity.",
|
||||
"description": "List of items that can be used to boost while riding this entity",
|
||||
"title": "Boost Items",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"description": "List of items that can be used to boost while riding this entity.",
|
||||
"title": "Boost Item",
|
||||
"properties": {
|
||||
"damage": { "type": "integer", "default": 1, "description": "This is the damage that the item will take each time it is used" },
|
||||
"item": {
|
||||
"type": "string",
|
||||
"$ref": "../../../../general/item/identifier.json",
|
||||
"description": "Name of the item that can be used to boost"
|
||||
"damage": {
|
||||
"type": "integer",
|
||||
"default": 1,
|
||||
"description": "This is the damage that the item will take each time it is used.",
|
||||
"title": "Damage"
|
||||
},
|
||||
"item": { "type": "string", "default": "", "description": "Name of the item that can be used to boost.", "title": "Item" },
|
||||
"replace_item": {
|
||||
"type": "string",
|
||||
"$ref": "../../../../general/item/identifier.json",
|
||||
"description": "The item used to boost will become this item once it is used up"
|
||||
"default": "",
|
||||
"description": "The item used to boost will become this item once it is used up.",
|
||||
"title": "Replace Item"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user