Files
Gwendolyn/gwendolyn/resources/slash_parameters.json
2025-10-28 15:42:26 +01:00

100 lines
2.9 KiB
JSON

{
"misc": {
"hello" : {
"name" : "hello",
"description" : "Greet Gwendolyn"
},
"help" : {
"name" : "help",
"description" : "Get help with a command",
"options" : [
{
"name" : "command",
"description" : "The command you want help with",
"type" : 3,
"required" : "false"
}
]
},
"echo" : {
"name": "echo",
"description": "Make Gwendolyn repeat something",
"options" : [
{
"name" : "text",
"description" : "The text you want Gwendolyn to repeat",
"type" : 3,
"required" : "true"
}
]
},
"gen_name" : {
"name": "gen_name",
"description": "Generate a random name"
},
"ping" : {
"name" : "ping",
"description" : "Get Gwendolyn's latency to the server"
},
"roll" : {
"name": "roll",
"description": "Roll dice",
"options": [
{
"name": "dice",
"description": "The dice to be rolled",
"type": 3,
"required": "false"
}
]
},
"stop" : {
"name" : "stop",
"description" : "Stop Gwendolyn"
},
"thank" : {
"name" : "thank",
"description" : "Thank Gwendolyn for her service"
}
},
"better_netflix": {
"movie": {
"name": "movie",
"description": "Get a random movie from Better Netflix"
},
"show": {
"name": "show",
"description": "Get a random show from Better Netflix"
},
"downloading": {
"name": "downloading",
"description": "Get a list of everything being downloaded"
}
},
"games": {
"money": {
"balance" : {
"name" : "balance",
"description" : "See your balance of GwendoBucks"
},
"give" : {
"name" : "give",
"description" : "Give GwendoBucks to another user",
"options" : [
{
"name" : "user",
"description" : "The user you're sending GwendoBucks to",
"type" : 6,
"required" : "true"
},
{
"name" : "amount",
"description" : "The number of GwendoBucks you're sending",
"type" : 4,
"required" : "true"
}
]
}
}
}
}