forked from Meshiest/omegga-textgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.json
executable file
·60 lines (60 loc) · 1.46 KB
/
doc.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
{
"name": "textgen",
"description": "Generate text under your player",
"author": "cake, fonts from skill4life, remanedur, orion, and erika",
"config": {
"only-authorized": {
"description": "Whether only authorized players can use commands",
"type": "boolean",
"default": true
},
"authorized-users": {
"description": "List of players who can always use commands",
"type": "players",
"default": []
},
"authorized-roles": {
"description": "List of roles who can always use commands",
"type": "list",
"itemType": "role",
"default": ["Admin"]
},
"cooldown": {
"description": "How long before users can re-run the command (seconds)",
"type": "number",
"default": 1
}
},
"commands": [
{
"name": "!text",
"description": "Copy text to your clipboard using your paint can color",
"example": "!text Hello, World!",
"args": [
{
"name": "text",
"description": "text to generate",
"required": true
}
]
},
{
"name": "!text:font",
"description": "Select a font style",
"example": "!text:font large",
"args": [
{
"name": "font",
"description": "selected font",
"required": true
}
]
},
{
"name": "!text:fonts",
"description": "List available fonts",
"example": "!text:fonts",
"args": []
}
]
}