This commit is contained in:
DaanV2
2021-09-21 23:02:34 +02:00
parent b2db28caef
commit 7eba119d08
25 changed files with 3047 additions and 24 deletions

File diff suppressed because one or more lines are too long

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.10.0",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times. Time is measured in seconds with base equipment."
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.10.0",
"description": "Specifies the display name id for the block."
"description": "Specifies the language file key that maps to what text will be displayed when you hover over the block."
}

View File

@@ -9,13 +9,13 @@
"burn_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will be destroyed by flames when on fire.",
"description": "How likely the block will be destroyed by flames when on fire. Value must be greater than or equal to 0.",
"title": "Burn Odds"
},
"flame_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will catch flame when next to a fire.",
"description": "How likely the block will catch flame when next to a fire. Value must be greater than or equal to 0.",
"title": "Flame Odds"
}
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.10.0",
"description": "The geometry definition name to use.",
"description": "The geometry description identifier to use, this identifier must match an existing geometry identifier in any of the currently loaded resource packs.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.16.100",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times. Time is measured in seconds with base equipment."
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.16.100",
"description": "Specifies the display name id for the block."
"description": "Specifies the language file key that maps to what text will be displayed when you hover over the block."
}

View File

@@ -9,13 +9,13 @@
"burn_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will be destroyed by flames when on fire.",
"description": "How likely the block will be destroyed by flames when on fire. Value must be greater than or equal to 0.",
"title": "Burn Odds"
},
"flame_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will catch flame when next to a fire.",
"description": "How likely the block will catch flame when next to a fire. Value must be greater than or equal to 0.",
"title": "Flame Odds"
}
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.16.100",
"description": "The geometry definition name to use.",
"description": "The geometry description identifier to use, this identifier must match an existing geometry identifier in any of the currently loaded resource packs.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -17,6 +17,7 @@
"minecraft:block_light_emission": { "$ref": "./components/minecraft.block_light_emission.json" },
"minecraft:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:creative_category": { "$ref": "./components/minecraft.creative_category.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.json" },

View File

@@ -0,0 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.17.0.minecraft.creative_category",
"additionalProperties": false,
"type": "boolean",
"title": "Creative Category 1.17.0",
"description": "Specifies the creative group for the block."
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.16.200",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times."
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times. Time is measured in seconds with base equipment."
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.16.200",
"description": "Specifies the display name id for the block."
"description": "Specifies the language file key that maps to what text will be displayed when you hover over the block."
}

View File

@@ -9,13 +9,13 @@
"burn_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will be destroyed by flames when on fire.",
"description": "How likely the block will be destroyed by flames when on fire. Value must be greater than or equal to 0.",
"title": "Burn Odds"
},
"flame_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will catch flame when next to a fire.",
"description": "How likely the block will catch flame when next to a fire. Value must be greater than or equal to 0.",
"title": "Flame Odds"
}
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.16.200",
"description": "The geometry definition name to use.",
"description": "The geometry description identifier to use, this identifier must match an existing geometry identifier in any of the currently loaded resource packs.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -17,6 +17,7 @@
"minecraft:block_light_emission": { "$ref": "./components/minecraft.block_light_emission.json" },
"minecraft:breakonpush": { "$ref": "./components/minecraft.breakonpush.json" },
"minecraft:breathability": { "$ref": "./components/minecraft.breathability.json" },
"minecraft:creative_category": { "$ref": "./components/minecraft.creative_category.json" },
"minecraft:destroy_time": { "$ref": "./components/minecraft.destroy_time.json" },
"minecraft:display_name": { "$ref": "./components/minecraft.display_name.json" },
"minecraft:entity_collision": { "$ref": "./components/minecraft.entity_collision.json" },
@@ -29,6 +30,7 @@
"minecraft:map_color": { "$ref": "./components/minecraft.map_color.json" },
"minecraft:material_instances": { "$ref": "./components/minecraft.material_instances.json" },
"minecraft:onlypistonpush": { "$ref": "./components/minecraft.onlypistonpush.json" },
"minecraft:part_visibility.json": { "$ref": "./components/minecraft.part_visibility.json" },
"minecraft:on_fall_on": { "$ref": "./components/minecraft.on_fall_on.json" },
"minecraft:on_interact": { "$ref": "./components/minecraft.on_interact.json" },
"minecraft:on_placed": { "$ref": "./components/minecraft.on_placed.json" },
@@ -92,6 +94,7 @@
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"propertyNames": { "pattern": "^([a-zA-Z0-9_]+:[a-zA-Z0-9_\\-]+)$" },
"type": "object",
"additionalProperties": {
"title": "Property",
"description": "A block property",

View File

@@ -0,0 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.17.0.minecraft.creative_category",
"additionalProperties": false,
"type": "boolean",
"title": "Creative Category 1.17.0",
"description": "Specifies the creative group for the block."
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "number",
"title": "Destroy Time 1.17.0",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times.",
"description": "Sets the destroy time property for the block. Greater numbers result in greater mining times. Time is measured in seconds with base equipment.",
"default": 0.0
}

View File

@@ -3,5 +3,5 @@
"additionalProperties": false,
"type": "string",
"title": "Display Name 1.17.0",
"description": "Specifies the display name id for the block."
"description": "Specifies the language file key that maps to what text will be displayed when you hover over the block."
}

View File

@@ -9,13 +9,13 @@
"burn_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will be destroyed by flames when on fire.",
"description": "How likely the block will be destroyed by flames when on fire. Value must be greater than or equal to 0.",
"title": "Burn Odds"
},
"flame_odds": {
"type": "integer",
"default": 0,
"description": "How likely the block will catch flame when next to a fire.",
"description": "How likely the block will catch flame when next to a fire. Value must be greater than or equal to 0.",
"title": "Flame Odds"
}
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "string",
"title": "Geometry 1.17.0",
"description": "The geometry definition name to use.",
"description": "The geometry description identifier to use, this identifier must match an existing geometry identifier in any of the currently loaded resource packs.",
"pattern": "^geometry\\.[a-zA-Z0-9_\\-\\.]+$"
}

View File

@@ -3,6 +3,6 @@
"additionalProperties": false,
"type": "string",
"title": "Loot 1.17.0",
"description": "The path of the loot table that this component will use when the block is destroyed.",
"description": "The path to the loot table, relative to the behavior pack.",
"pattern": "loot_tables/.*\\.json$"
}

View File

@@ -0,0 +1,11 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.17.0.minecraft.part_visibility",
"title": "Part Visibility 1.17.0",
"description": "Maps bone names in a geometry file to a condition that turns their rendering on/off. The condition should be a Molang query that uses block properties to determine true/falseSupported queries include 'has_block_property', 'block_property', and other queries that can evaluate without knowledge of the block's in-game positional or player affected data.",
"type": "object",
"additionalProperties": {
"title": "Bone Name",
"examples": [{ "root": "query.variant" }],
"type": "string"
}
}

View File

@@ -2,5 +2,5 @@
"$id": "blockception.minecraft.behavior.blocks.1.17.0.minecraft.unit_cube",
"title": "Unit Cube 1.17.0",
"description": "Specifies that a unit cube is to be used with tessellation.",
"type": "string"
"type": "object"
}

View File

@@ -1,6 +1,7 @@
{
"$id": "blockception.minecraft.behavior.blocks.1.17.0.minecraft.unwalkable",
"title": "Unwalkable 1.17.0",
"description": "this component sets a block as unwalkable. Most mobs will not try to jump over it if the value is set to true",
"description": "Sets the block as unwalkable. Mobs would not attempt to path over top of it when the value is set to true.",
"default": false,
"type": "boolean"
}