-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.json
65 lines (65 loc) · 1.43 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
{
"geode": "4.0.1",
"gd": {
"win": "2.2074",
"android": "2.2074",
"mac": "2.2074"
},
"version": "v3.1.0",
"id": "spaghettdev.gd-roulette",
"name": "GD-Roulette",
"developer": "SpaghettDev",
"description": "An in-game level roulette.",
"links": {
"community": "https://discord.gg/3bShQb6Jz3",
"source": "https://github.com/SpaghettDev/GD-Roulette"
},
"issues": {
"info": "Report any bugs/suggestions here.",
"url": "https://github.com/SpaghettDev/GD-Roulette/issues"
},
"resources": {
"sprites": [
"resources/*.png"
]
},
"dependencies": [
{
"id": "geode.node-ids",
"version": ">=v1.17.0",
"importance": "required"
}
],
"tags": [
"interface", "online"
],
"settings": {
"max-skips": {
"name": "Number of skips",
"description": "The maximum amount of skips allowed during a round of the roulette.",
"type": "int",
"control": {
"input": true,
"arrows": true,
"arrow-step": 1,
"big-arrows": true,
"big-arrow-step": 5
},
"default": 3,
"max": 9999,
"min": 0
},
"auto-pause": {
"name": "Auto Pause",
"description": "Enable or disable auto pausing after getting the goal percentage during a round of roulette.",
"type": "bool",
"default": true
},
"use-big-button": {
"name": "Use big button",
"description": "Use a big button rather than the small circle button. Only works with Pages API installed.",
"type": "bool",
"default": false
}
}
}