1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Updated mod.json schema

This commit is contained in:
Ivan Savenko
2023-03-27 22:33:28 +03:00
parent 9aab78a3f4
commit b3b2426b19
2 changed files with 1 additions and 8 deletions

View File

@@ -16,7 +16,6 @@
"name" : "VCMI - grundlegende Dateien", "name" : "VCMI - grundlegende Dateien",
"description" : "Grundlegende Dateien, die für die korrekte Ausführung von VCMI erforderlich sind", "description" : "Grundlegende Dateien, die für die korrekte Ausführung von VCMI erforderlich sind",
"author" : "VCMI-Team", "author" : "VCMI-Team",
"modType" : "Grafik",
"skipValidation" : true, "skipValidation" : true,
"translations" : [ "translations" : [
@@ -28,7 +27,6 @@
"name" : "Podstawowe pliki VCMI", "name" : "Podstawowe pliki VCMI",
"description" : "Dodatkowe pliki wymagane do prawidłowego działania VCMI", "description" : "Dodatkowe pliki wymagane do prawidłowego działania VCMI",
"author" : "Zespół VCMI", "author" : "Zespół VCMI",
"modType" : "Graficzny",
"skipValidation" : true, "skipValidation" : true,
"translations" : [ "translations" : [
@@ -52,7 +50,6 @@
"name" : "VCMI - ключові файли", "name" : "VCMI - ключові файли",
"description" : "Ключові файли необхідні для повноцінної роботи VCMI", "description" : "Ключові файли необхідні для повноцінної роботи VCMI",
"author" : "Команда VCMI", "author" : "Команда VCMI",
"modType" : "Графіка",
"translations" : [ "translations" : [
"config/vcmi/ukrainian.json" "config/vcmi/ukrainian.json"
@@ -63,7 +60,6 @@
"name" : "VCMI - ficheros necesarios", "name" : "VCMI - ficheros necesarios",
"description" : "Ficheros necesarios para ejecutar VCMI correctamente", "description" : "Ficheros necesarios para ejecutar VCMI correctamente",
"author" : "Abel Rivas", "author" : "Abel Rivas",
"modType" : "Gráfico",
"skipValidation" : true, "skipValidation" : true,
"translations" : [ "translations" : [

View File

@@ -18,10 +18,6 @@
"type":"string", "type":"string",
"description": "More lengthy description of mod. No hard limit" "description": "More lengthy description of mod. No hard limit"
}, },
"modType" : {
"type":"string",
"description": "Type of mod, e.g. Town, Artifacts, Graphical."
},
"author" : { "author" : {
"type":"string", "type":"string",
"description": "Author of the mod. Can be nickname, real name or name of team" "description": "Author of the mod. Can be nickname, real name or name of team"
@@ -60,6 +56,7 @@
"modType" : { "modType" : {
"type":"string", "type":"string",
"enum" : [ "Translation", "Town", "Test", "Templates", "Spells", "Music", "Sounds", "Skills", "Other", "Objects", "Mechanics", "Interface", "Heroes", "Graphical", "Expansion", "Creatures", "Artifacts", "AI" ],
"description": "Type of mod, e.g. Town, Artifacts, Graphical." "description": "Type of mod, e.g. Town, Artifacts, Graphical."
}, },