Skip to content

Commit

Permalink
- Replace 1.20.41 -> 1.20.80
Browse files Browse the repository at this point in the history
- Make certain format versions restricted to 1.10.0
  • Loading branch information
Xterionix committed Jun 27, 2024
1 parent 6bfbfc6 commit 5561a5a
Show file tree
Hide file tree
Showing 17 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.example": {
"initial_state": "default",
Expand Down Expand Up @@ -92,7 +92,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",
Expand Down
4 changes: 2 additions & 2 deletions source/behavior/animations/animations.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
}
],
"examples": [{ "format_version": "1.20.41", "animations": { "animation.example": {} } }],
"examples": [{ "format_version": "1.10.0", "animations": { "animation.example": {} } }],
"definitions": {
"animationspec": {
"anyOf": [
Expand Down Expand Up @@ -65,7 +65,7 @@
"required": ["format_version", "animations"],
"additionalProperties": false,
"properties": {
"format_version": { "$ref": "../../general/format_version.json" },
"format_version": { "type": "string", "const": "1.10.0" },
"animations": {
"title": "Animations Schema",
"description": "The animation specification.",
Expand Down
2 changes: 1 addition & 1 deletion source/behavior/biomes/biomes.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "minecraft.behavior.biomes",
"type": "object",
"examples": [{ "plains": { "format_version": "1.20.41" } }],
"examples": [{ "plains": { "format_version": "1.20.80" } }],
"additionalProperties": {
"type": "object",
"title": "Biomes",
Expand Down
2 changes: 1 addition & 1 deletion source/behavior/blocks/blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
"label": "New block",
"body": {
"format_version": "${1:1.20.41}",
"format_version": "${1:1.20.80}",
"minecraft:block": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}"
Expand Down
4 changes: 2 additions & 2 deletions source/behavior/cameras/presets/cameras.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$id": "blockception.minecraft.behavior.cameras.preset",
"defaultSnippets": [
{
"format_version": "${1:1.20.41}",
"format_version": "${1:1.20.80}",
"minecraft:npc_dialogue": {
"identifier": "$2",
"inherit_from": "$3",
Expand All @@ -17,7 +17,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.20.80",
"minecraft:npc_dialogue": {
"identifier": "example:custom",
"inherit_from": "minecraft:free",
Expand Down
4 changes: 2 additions & 2 deletions source/behavior/dialogue/dialogue.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$id": "blockception.minecraft.behavior.dialogue",
"defaultSnippets": [
{
"format_version": "${1:1.20.41}",
"format_version": "${1:1.20.80}",
"minecraft:npc_dialogue": {
"scenes": [
{
Expand All @@ -15,7 +15,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.20.80",
"minecraft:npc_dialogue": {
"scenes": [
{
Expand Down
4 changes: 2 additions & 2 deletions source/behavior/entities/entities.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"label": "New entity",
"body": {
"format_version": "${1:1.20.41}",
"format_version": "${1:1.20.80}",
"minecraft:entity": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}",
Expand All @@ -20,7 +20,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.20.80",
"minecraft:entity": {
"description": { "identifier": "namespace:entity", "is_spawnable": true, "is_summonable": true },
"component_groups": {},
Expand Down
2 changes: 1 addition & 1 deletion source/behavior/items/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"label": "New item",
"body": {
"format_version": "${1:1.20.41}",
"format_version": "${1:1.20.80}",
"minecraft:item": {
"description": {
"identifier": "$2:${3:${TM_FILENAME/[\\.].*//}}",
Expand Down
2 changes: 1 addition & 1 deletion source/behavior/volumes/volumes.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$id": "blockception.minecraft.behavior.volumes",
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.20.80",
"minecraft:volume": {
"description": {
"identifier": "example:foo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.10.0",
"animation_controllers": {
"controller.animation.example": {
"states": {
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions source/resource/animations/actor_animation.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion source/resource/attachables/attachables.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.10.0",
"minecraft:attachable": {
"description": {
"identifier": "minecraft:item",
Expand Down
2 changes: 1 addition & 1 deletion source/resource/entity/entity.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:entity",
Expand Down
2 changes: 1 addition & 1 deletion source/resource/items/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion source/resource/models/entity/model_entity.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$id": "blockception.minecraft.resource.model",
"examples": [
{
"format_version": "1.20.41",
"format_version": "1.20.80",
"minecraft:geometry": [
{
"description": {
Expand Down
2 changes: 1 addition & 1 deletion source/resource/particles/particles.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions source/resource/render_controllers/render_controllers.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
}
Expand All @@ -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.",
Expand Down

0 comments on commit 5561a5a

Please sign in to comment.