Fix minor problems in contributing, update vscode-settings.json urls (#123)
* Fix spelling, add missing comma, comply with markdownlint style guide * Update vscode-settings.json file to use format and files that actually work. Old urls returned 40 errors
This commit is contained in:
@@ -1,15 +1,16 @@
|
|||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a
|
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a
|
||||||
change, creating an issue for a feature request is also acceptable. For smaller fixes, additions or changes a simple fork and pull request is sufficient.
|
change, creating an issue for a feature request is also acceptable. For smaller fixes, additions, or changes a simple fork and pull request is sufficient.
|
||||||
|
|
||||||
Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
|
Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
|
||||||
|
|
||||||
## Titles
|
## Titles
|
||||||
|
|
||||||
Titles of elements or object in schemas are preferered to be a capitilized version of the name of the object replacing any special character with space forexample. Some are in need
|
Titles of elements or object in schemas are preferered to be a capitilized version of the name of the object replacing any special character with a space for example. Some are in need
|
||||||
of version numbering (behaviors) to help with debugging complex schemas
|
of version numbering (behaviors) to help with debugging complex schemas
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
Descriptions are to be 1:1 with Microsofts original description of said item. If none are provided or the object doesn't exist in official documentation but is a feature, then
|
Descriptions are to be 1:1 with Microsofts original description of said item. If none are provided or the object doesn't exist in official documentation but is a feature, then
|
||||||
replace the description with `UNDOCUMENATED`. Or fill in a general description that would hold true even if any changes are made to the workings of the item.
|
replace the description with `UNDOCUMENTED`. Or fill in a general description that would hold true even if any changes are made to the workings of the item.
|
||||||
|
|||||||
@@ -1,24 +1,35 @@
|
|||||||
{
|
{
|
||||||
"json.schemas": [
|
"json.schemas": [
|
||||||
{
|
{
|
||||||
"fileMatch": "skin_pack/skins.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/skinpacks/skins.json"
|
"skin_pack/skins.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/skinpacks/skins.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "language_names.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/language/language_names.json"
|
"language_names.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/language/language_names.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "languages.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/language/languages.json"
|
"languages.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/language/languages.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "manifest.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/general/manifest.json"
|
"manifest.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/general/manifest.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["world_behavior_packs.{json,jsonc,json5}", "world_resource_packs.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/general/world_x_packs.json"
|
"world_behavior_packs.{json,jsonc,json5}",
|
||||||
|
"world_resource_packs.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/general/world_x_packs.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -34,7 +45,7 @@
|
|||||||
"*rp*/animation_controllers/**/*.{json,jsonc,json5}",
|
"*rp*/animation_controllers/**/*.{json,jsonc,json5}",
|
||||||
"*.{animation_controller.rp,rpac,ac.rp,rp_ac}.{json,jsonc,json5}"
|
"*.{animation_controller.rp,rpac,ac.rp,rp_ac}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/animation_controllers/animation_controller.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/animation_controllers/animation_controller.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -50,19 +61,27 @@
|
|||||||
"*rp*/animations/**/*.{json,jsonc,json5}",
|
"*rp*/animations/**/*.{json,jsonc,json5}",
|
||||||
"*.{animation.rp,anim.rp,a.rp,rpa}.{json,jsonc,json5}"
|
"*.{animation.rp,anim.rp,a.rp,rpa}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/animations/actor_animation.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/animations/actor_animation.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["attachables/*.{json,jsonc,json5}", "attachables/**/*.{json,jsonc,json5}", "*.{attachable,attach,at}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/attachables/attachables.json"
|
"attachables/*.{json,jsonc,json5}",
|
||||||
|
"attachables/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{attachable,attach,at}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/attachables/attachables.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "biomes_client.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/biomes_client.json"
|
"biomes_client.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/biomes_client.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "blocks.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/blocks.json"
|
"blocks.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/blocks.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -72,23 +91,33 @@
|
|||||||
"!models/entity/**/*.{json,jsonc,json5}",
|
"!models/entity/**/*.{json,jsonc,json5}",
|
||||||
"!models/entity/*.{json,jsonc,json5}"
|
"!models/entity/*.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/entity/entity.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/entity/entity.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["fogs/*.{json,jsonc,json5}", "fogs/**/*.{json,jsonc,json5}", "*.fog.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/fog/fog.json"
|
"fogs/*.{json,jsonc,json5}",
|
||||||
|
"fogs/**/*.{json,jsonc,json5}",
|
||||||
|
"*.fog.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/fog/fog.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "flipbook_textures.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/textures/flipbook_textures.json"
|
"flipbook_textures.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/flipbook_textures.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "item_texture.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/textures/item_texture.json"
|
"item_texture.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/item_texture.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "texture_list.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/textures/texture_list.json"
|
"texture_list.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/texture_list.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -104,39 +133,61 @@
|
|||||||
"*rp*/items/**/*.{json,jsonc,json5}",
|
"*rp*/items/**/*.{json,jsonc,json5}",
|
||||||
"*.{item.rp,i.rp,rpi,rp_item}.{json,jsonc,json5}"
|
"*.{item.rp,i.rp,rpi,rp_item}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/items/items.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/items/items.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["models/entity/*.{json,jsonc,json5}", "models/entity/**/*.{json,jsonc,json5}", "*.{geo,geometry,model,g}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/models/entity/model_entity.json"
|
"models/entity/*.{json,jsonc,json5}",
|
||||||
|
"models/entity/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{geo,geometry,model,g}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/models/entity/model_entity.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["materials/*.material"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/materials/materials.json"
|
"materials/*.material"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/materials/materials.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "music_definitions.json",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/sounds/music_definitions.json"
|
"music_definitions.json"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/sounds/music_definitions.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["particles/*.{json,jsonc,json5}", "particles/**/*.{json,jsonc,json5}", "*.{particle,p}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/particles/particles.json"
|
"particles/*.{json,jsonc,json5}",
|
||||||
|
"particles/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{particle,p}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/particles/particles.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["render_controllers/*.{json,jsonc,json5}", "render_controllers/**/*.{json,jsonc,json5}", "*.{render,render_controller,rc}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/render_controllers/render_controllers.json"
|
"render_controllers/*.{json,jsonc,json5}",
|
||||||
|
"render_controllers/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{render,render_controller,rc}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/render_controllers/render_controllers.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "sound_definitions.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/sounds/sound_definitions.json"
|
"sound_definitions.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/sounds/sound_definitions.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "sounds.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/sounds.json"
|
"sounds.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/sounds.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": "terrain_texture.{json,jsonc,json5}",
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/resource/textures/terrain_texture.json"
|
"terrain_texture.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/terrain_texture.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -152,7 +203,7 @@
|
|||||||
"*bp*/animation_controllers/**/*.{json,jsonc,json5}",
|
"*bp*/animation_controllers/**/*.{json,jsonc,json5}",
|
||||||
"*.{animation_controller.bp,bpac,ac.bp,bp_ac}.{json,jsonc,json5}"
|
"*.{animation_controller.bp,bpac,ac.bp,bp_ac}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/animation_controllers/animation_controller.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/animation_controllers/animation_controller.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -168,7 +219,7 @@
|
|||||||
"*bp*/animations/**/*.{json,jsonc,json5}",
|
"*bp*/animations/**/*.{json,jsonc,json5}",
|
||||||
"*.{animation.bp,anim.bp,a.bp,bpa,bp_anim}.{json,jsonc,json5}"
|
"*.{animation.bp,anim.bp,a.bp,bpa,bp_anim}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/animations/animations.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/animations/animations.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -184,7 +235,7 @@
|
|||||||
"*bp*/biomes/**/*.{json,jsonc,json5}",
|
"*bp*/biomes/**/*.{json,jsonc,json5}",
|
||||||
"*.biome.{json,jsonc,json5}"
|
"*.biome.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/biomes/biomes.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/biomes/biomes.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -200,11 +251,13 @@
|
|||||||
"*bp*/dialogue/**/*.{json,jsonc,json5}",
|
"*bp*/dialogue/**/*.{json,jsonc,json5}",
|
||||||
"*.{diag,dialogue,dialog,d}.{json,jsonc,json5}"
|
"*.{diag,dialogue,dialog,d}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/dialogue/dialogue.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/dialogue/dialogue.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["functions/tick.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/functions/tick.json"
|
"functions/tick.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/functions/tick.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -220,7 +273,7 @@
|
|||||||
"*bp*/loot_tables/**/*.{json,jsonc,json5}",
|
"*bp*/loot_tables/**/*.{json,jsonc,json5}",
|
||||||
"*.{loot,loot_table,lt}.{json,jsonc,json5}"
|
"*.{loot,loot_table,lt}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/loot_tables/loot_tables.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/loot_tables/loot_tables.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -236,7 +289,7 @@
|
|||||||
"*bp*/blocks/**/*.{json,jsonc,json5}",
|
"*bp*/blocks/**/*.{json,jsonc,json5}",
|
||||||
"*.{block,b}.{json,jsonc,json5}"
|
"*.{block,b}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/blocks/blocks.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/blocks/blocks.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -253,7 +306,7 @@
|
|||||||
"*.{entity.bp,e.bp,se,e.bp,bpe,behavior}.{json,jsonc,json5}",
|
"*.{entity.bp,e.bp,se,e.bp,bpe,behavior}.{json,jsonc,json5}",
|
||||||
"!*loot_tables*"
|
"!*loot_tables*"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/entities/entities.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/entities/entities.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -269,7 +322,7 @@
|
|||||||
"*bp*/features/**/*.{json,jsonc,json5}",
|
"*bp*/features/**/*.{json,jsonc,json5}",
|
||||||
"*.{feature,f}.{json,jsonc,json5}"
|
"*.{feature,f}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/features/features.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/features/features.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -285,7 +338,7 @@
|
|||||||
"*bp*/feature_rules/**/*.{json,jsonc,json5}",
|
"*bp*/feature_rules/**/*.{json,jsonc,json5}",
|
||||||
"*.{feature_rule,fr}.{json,jsonc,json5}"
|
"*.{feature_rule,fr}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/feature_rules/feature_rules.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/feature_rules/feature_rules.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -301,15 +354,23 @@
|
|||||||
"*bp*/items/**/*.{json,jsonc,json5}",
|
"*bp*/items/**/*.{json,jsonc,json5}",
|
||||||
"*.{item.bp,i.bp,bpi,bp_item}.{json,jsonc,json5}"
|
"*.{item.bp,i.bp,bpi,bp_item}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/items/items.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/items/items.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["recipes/*.{json,jsonc,json5}", "recipes/**/*.{json,jsonc,json5}", "*.{recipe,crafting_recipe,cr,r}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/recipes/recipes.json"
|
"recipes/*.{json,jsonc,json5}",
|
||||||
|
"recipes/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{recipe,crafting_recipe,cr,r}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/recipes/recipes.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["spawn_rules/*.{json,jsonc,json5}", "spawn_rules/**/*.{json,jsonc,json5}", "*.{spawn,sr,spawn_rule}.{json,jsonc,json5}"],
|
"fileMatch": [
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/spawn_rules/spawn_rules.json"
|
"spawn_rules/*.{json,jsonc,json5}",
|
||||||
|
"spawn_rules/**/*.{json,jsonc,json5}",
|
||||||
|
"*.{spawn,sr,spawn_rule}.{json,jsonc,json5}"
|
||||||
|
],
|
||||||
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/spawn_rules/spawn_rules.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -325,7 +386,7 @@
|
|||||||
"*bp*/trading/**/*.{json,jsonc,json5}",
|
"*bp*/trading/**/*.{json,jsonc,json5}",
|
||||||
"*.{trade,trade_table.tt}.{json,jsonc,json5}"
|
"*.{trade,trade_table.tt}.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/trading/trading.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/trading/trading.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
@@ -341,7 +402,7 @@
|
|||||||
"*bp*/volumes/**/*.{json,jsonc,json5}",
|
"*bp*/volumes/**/*.{json,jsonc,json5}",
|
||||||
"*.volume.{json,jsonc,json5}"
|
"*.volume.{json,jsonc,json5}"
|
||||||
],
|
],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-schemas/behavior/volumes/volumes.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/behavior/volumes/volumes.json"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user