From ca768b92f5b86a441dd3b4cddb0846aac1eb46eb Mon Sep 17 00:00:00 2001 From: Jayly Date: Sun, 20 Feb 2022 12:01:46 +0000 Subject: [PATCH] define subpacks --- source/general/manifest/manifest.2.json | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/source/general/manifest/manifest.2.json b/source/general/manifest/manifest.2.json index 67c36af2..e0667033 100644 --- a/source/general/manifest/manifest.2.json +++ b/source/general/manifest/manifest.2.json @@ -187,6 +187,35 @@ } } } + }, + "subpacks": { + "type": "array", + "title": "Subpacks", + "description": "Section containing information regarding file variations which can then be chosen to apply to.", + "items": { + "type": "object", + "additionalProperties": false, + "description": "Section containing information regarding file variations which can then be chosen to apply to.", + "title": "Subpacks", + "required": ["folder_name", "name", "memory_tier"], + "properties": { + "folder_name": { + "type": "string", + "description": "This represents the folder name located in \"subpacks\" folder. When user select this resolution Minecraft loads the content inside the folder.", + "title": "Folder Name" + }, + "name": { + "type": "string", + "description": "This is the name of the pack resolution. This lets user know what resolution they are choosing.", + "title": "Name" + }, + "memory_tier": { + "type": "number", + "title": "Memory Tier", + "description": "This creates a requirement on the capacity of memory needed to select the resolution. Each tier increases memory requirement by 250 megabytes." + } + } + } } } }