-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.json
74 lines (74 loc) · 1.92 KB
/
mod.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
{
"geode": "4.0.0-beta.1",
"gd": {
"win": "2.2074",
"mac": "2.2074",
"android": "2.2074"
},
"version": "v1.3.1",
"id": "ziegenhainy.xxlify",
"name": "XXLify",
"developer": "Ziegenhainy",
"description": "Long levels get more Xs in length",
"issues": {
"info": "Report issues to the Github Repo!",
"url": "https://github.com/Ziegenhainy/XXLify/issues"
},
"resources": {
"sprites": [
"resources/*.png"
]
},
"settings": {
"maximum-xs": {
"name": "Maximum Xs",
"description": "How many Xs you can have before an L",
"type": "int",
"default": 10,
"max": 100,
"min": 1,
"control": {
"slider": false
}
},
"xxl-scaling": {
"name": "XXL Scaling",
"description": "How long levels need to be to get a longer label. The length of the level needs to be multiplied by this number to get a longer Label. (e.g. at 1.5, XL is 2 minutes, XXl is 3 minutes, XXXL is 4,5 minutes etc.)",
"type": "float",
"default": 2,
"max": 10,
"min": 1.1
},
"use-power-notation": {
"name": "Use power notation",
"description": "If enabled, levels above the maximum X limit will be displayed using power notation, i.e. \"XXXL\" becomes \"X^3L\"",
"type": "bool",
"default": true
},
"xxl-plus": {
"name": "Enable XXL+",
"description": "If enabled, levels that are beyond halfway to the next XXL label get a + added to the length",
"type": "bool",
"default": true
},
"use-color": {
"name": "Use colored label",
"description": "Enables a colored label",
"type": "bool",
"default": true
},
"label-color":{
"name": "Label Color",
"description": "Color that the XXL label will have",
"type": "color",
"default": "#880000"
},
"maximum-color": {
"name": "Maximum color length",
"description": "Length in minutes at which the color has been reached",
"type": "int",
"default": 60,
"min": 0
}
}
}