* - 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
27 lines
799 B
JSON
27 lines
799 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.behavior.biome",
|
|
"required": ["format_version", "minecraft:biome"],
|
|
"type": "object",
|
|
"title": "Biome Behavior",
|
|
"description": "The minecraft biome behavior specification.",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"format_version": { "$ref": "../../general/format_version.json" },
|
|
"minecraft:biome": { "$ref": "./format/minecraft.biome.json" }
|
|
},
|
|
"defaultSnippets": [
|
|
{
|
|
"label": "New biome",
|
|
"body": {
|
|
"format_version": "${1:1.21.80}",
|
|
"minecraft:biome": {
|
|
"description": {
|
|
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}"
|
|
},
|
|
"components": "^{$4}"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |