-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
93 lines (89 loc) · 1.66 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"version" : "0.1",
"author" : "ZarfaZ",
"name" : {
"en" : "HD mod",
"de" : "HD Mod"
},
"description" : {
"en" : "Mod for high resolution textures",
"de" : "Mod für hochauflösende Texturen"
},
"links" : {
"download" : "https://github.com/ZarfaZ/DigglesHDmod/releases",
"wiki" : "https://github.com/ZarfaZ/DigglesHDmod/blob/master/Documentation.txt"
},
"settings" : [
{
"id" : "LANGUAGE",
"type" : "select",
"default" : "ru",
"name" : {
"en" : "Language",
"de" : "Sprache"
},
"description" : {
"en" : "Installs language specific textures of chosen language.",
"de" : "Installiert sprachspezifische Texturen der ausgewählten Sprache."
},
"possibleValues" : [
{
"value" : "de",
"name" : {
"en" : "German",
"de" : "Deutsch"
}
},
{
"value" : "ru",
"name" : {
"en" : "Russian",
"de" : "Russisch"
}
}
]
},
{
"id" : "GROUND_TEXTURES",
"type" : "bool",
"default" : true,
"name" : {
"en" : "Ground textures",
"de" : "Bodentexturen"
},
"description" : {
"en" : "Add high resolution ground textures",
"de" : "Hochauflösende Bodentexturen hinzufügen"
}
}
],
"directories" : [
{
"type" : "data",
"path" : "Data_de",
"condition" : {
"type" : "variable",
"id" : "LANGUAGE",
"value" : "de"
}
},
{
"type" : "data",
"path" : "Data_ru",
"condition" : {
"type" : "variable",
"id" : "LANGUAGE",
"value" : "ru"
}
},
{
"type" : "optional",
"path" : "Data/Ground",
"condition" : {
"type" : "variable",
"id" : "GROUND_TEXTURES",
"value" : true
}
}
]
}