Some more misc fixes (#295)
* - Add mob effects enum * - Add biome and biome tags to enum * - Fix feature rules only showing with 1.13.0 format version * - Replace 1.20.41 -> 1.20.80 - Make certain format versions restricted to 1.10.0 * - Remove example stick (having this here was annoying) * - Fix * - Remove empty sounds example * - Misc fixes for entity components
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
],
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.10.0",
|
||||
"animation_controllers": {
|
||||
"controller.animation.example": {
|
||||
"states": {
|
||||
@@ -78,7 +78,7 @@
|
||||
"required": ["format_version", "animation_controllers"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"format_version": { "$ref": "../../general/format_version.json" },
|
||||
"format_version": { "type": "string", "const": "1.10.0" },
|
||||
"animation_controllers": {
|
||||
"type": "object",
|
||||
"title": "Animation Controllers Schema",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
}
|
||||
}
|
||||
],
|
||||
"examples": [{ "format_version": "1.20.41", "animations": { "animation.annie.idle": { "loop": true, "animation_length": 2.12, "bones": {} } } }],
|
||||
"examples": [{ "format_version": "1.10.0", "animations": { "animation.annie.idle": { "loop": true, "animation_length": 2.12, "bones": {} } } }],
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"title": "Actor Animation",
|
||||
@@ -94,7 +94,7 @@
|
||||
},
|
||||
"required": ["format_version", "animations"],
|
||||
"properties": {
|
||||
"format_version": { "$ref": "../../general/format_version.json" },
|
||||
"format_version": { "type": "string", "const": "1.10.0" },
|
||||
"animations": {
|
||||
"title": "Animations Schema",
|
||||
"description": "The animation specification.",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
],
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.10.0",
|
||||
"minecraft:attachable": {
|
||||
"description": {
|
||||
"identifier": "minecraft:item",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
],
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.10.0",
|
||||
"minecraft:client_entity": {
|
||||
"description": {
|
||||
"identifier": "minecraft:entity",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"$id": "blockception.minecraft.resource.items",
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.20.80",
|
||||
"minecraft:item": {
|
||||
"description": { "identifier": "blockception:item", "category": "Equipment" },
|
||||
"components": { "minecraft:icon": "item", "minecraft:render_offsets": "apple" }
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"$id": "blockception.minecraft.resource.model",
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.20.80",
|
||||
"minecraft:geometry": [
|
||||
{
|
||||
"description": {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"$id": "blockception.minecraft.resource.particle",
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.20.80",
|
||||
"particle_effect": {
|
||||
"description": {
|
||||
"identifier": "example:particle",
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
],
|
||||
"examples": [
|
||||
{
|
||||
"format_version": "1.20.41",
|
||||
"format_version": "1.10.0",
|
||||
"render_controllers": {
|
||||
"controller.render.example": { "geometry": "Geometry.default", "materials": [{ "*": "Material.default" }], "textures": ["Texture.default"] }
|
||||
}
|
||||
@@ -37,7 +37,7 @@
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"format_version": { "$ref": "../../general/format_version.json" },
|
||||
"format_version": { "type": "string", "const": "1.10.0" },
|
||||
"render_controllers": {
|
||||
"title": "Render Controllers",
|
||||
"description": "The collection of render controllers, each property is the identifier of a render controller.",
|
||||
|
||||
Reference in New Issue
Block a user