1.21.80 (#343)
* - Updated old biome format * - Added biome tags component * - Added dismount mode, and rider enter/exit event * - Made surface_color not required * - Update float wander goal * - Update follow mob behavior * - Added music def field * - Added camera fields to rideable * - Add array snippet * - Updated leashable component with presets * - Made texture field optional in destruction particles * - Marked isotropic as stable * - Moved can_be_stolen back * - Updated tempt goal * - Added float tempt behavior * - Made heightmap project optional * - Added distance based render methods * - Marked tint method as stable * - Added droop item y offset * - Added has_equipment_tag filter * - Remove unnused test.json * - Allow for custom components * - Add new block culling support * - Removed enum for biome tags in support of custom biomes * - Added replace_biomes component * - Fix errors
This commit is contained in:
@@ -5,14 +5,13 @@
|
||||
"description": "A custom block definition.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [ "description", "components" ],
|
||||
"required": ["description", "components"],
|
||||
"definitions": {
|
||||
"components_ref": {
|
||||
"type": "object",
|
||||
"title": "Component",
|
||||
"description": "UNDOCUMENTED.",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"additionalProperties": false,
|
||||
"description": "The components of this block.",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
//Components
|
||||
"minecraft:collision_box": { "$ref": "./components/collision_box.json" },
|
||||
@@ -40,17 +39,17 @@
|
||||
"minecraft:tick": { "$ref": "./components/tick.json" },
|
||||
"minecraft:entity_fall_on": { "$ref": "./components/entity_fall_on.json" },
|
||||
// Tags
|
||||
"tag:minecraft:diamond_tier_destructible": { },
|
||||
"tag:minecraft:iron_tier_destructible": { },
|
||||
"tag:minecraft:is_axe_item_destructible": { },
|
||||
"tag:minecraft:is_hoe_item_destructible": { },
|
||||
"tag:minecraft:is_mace_item_destructible": { },
|
||||
"tag:minecraft:is_pickaxe_item_destructible": { },
|
||||
"tag:minecraft:is_shears_item_destructible": { },
|
||||
"tag:minecraft:is_shovel_item_destructible": { },
|
||||
"tag:minecraft:is_sword_item_destructible": { },
|
||||
"tag:minecraft:netherite_tier_destructible": { },
|
||||
"tag:minecraft:stone_tier_destructible": { }
|
||||
"tag:minecraft:diamond_tier_destructible": {},
|
||||
"tag:minecraft:iron_tier_destructible": {},
|
||||
"tag:minecraft:is_axe_item_destructible": {},
|
||||
"tag:minecraft:is_hoe_item_destructible": {},
|
||||
"tag:minecraft:is_mace_item_destructible": {},
|
||||
"tag:minecraft:is_pickaxe_item_destructible": {},
|
||||
"tag:minecraft:is_shears_item_destructible": {},
|
||||
"tag:minecraft:is_shovel_item_destructible": {},
|
||||
"tag:minecraft:is_sword_item_destructible": {},
|
||||
"tag:minecraft:netherite_tier_destructible": {},
|
||||
"tag:minecraft:stone_tier_destructible": {}
|
||||
},
|
||||
"patternProperties": {
|
||||
"tag:.+": {
|
||||
@@ -94,7 +93,7 @@
|
||||
"description": "The description for this block.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [ "identifier" ],
|
||||
"required": ["identifier"],
|
||||
"properties": {
|
||||
"identifier": {
|
||||
"title": "Identifier",
|
||||
@@ -106,9 +105,9 @@
|
||||
"title": "Menu Category",
|
||||
"description": "Specifies the menu category and group for the block, which determine where this block is placed in the inventory and crafting table container screens. If this field is omitted, the block will not appear in the inventory or crafting table container screens.",
|
||||
"type": "object",
|
||||
"examples": [ { "category": "construction" } ],
|
||||
"examples": [{ "category": "construction" }],
|
||||
"additionalProperties": false,
|
||||
"required": [ "category" ],
|
||||
"required": ["category"],
|
||||
"properties": {
|
||||
"category": {
|
||||
"$ref": "../../../general/vanilla/creative_category.json"
|
||||
|
||||
Reference in New Issue
Block a user