✨ Even more converting to slash commands
This commit is contained in:
@ -99,7 +99,7 @@
|
||||
1340 - Error in drawing blackjack table
|
||||
1341 - Error in drawHand()
|
||||
|
||||
14 - Four in a row
|
||||
14 - connect four
|
||||
1400 - Unspecified error
|
||||
1401 - Error deleting old image
|
||||
1410 - Unspecified parsing error
|
||||
|
1
resources/help/help-connectfour.txt
Normal file
1
resources/help/help-connectfour.txt
Normal file
@ -0,0 +1 @@
|
||||
Brug `!connectFour start` til at starte et spil imod Gwendolyn. Brug `!connectFour start [modstander]` for at spille imod en anden person. Du kan også bruge `!connectFour start [1-5]`, hvor tallet er sværhedsgraden af Gwendolyn du gerne vil spille imod.
|
@ -1 +0,0 @@
|
||||
Brug `!fourinarow start` til at starte et spil imod Gwendolyn. Brug `!fourinarow start [modstander]` for at spille imod en anden person. Du kan også bruge `!fourinarow start [1-5]`, hvor tallet er sværhedsgraden af Gwendolyn du gerne vil spille imod.
|
@ -1 +0,0 @@
|
||||
Få et billede af Senkulpa kortet.
|
1
resources/help/help-starwarscharacter.txt
Normal file
1
resources/help/help-starwarscharacter.txt
Normal file
@ -0,0 +1 @@
|
||||
Du kan bruge kommandoer som `!starWarsCharacter name Jared` eller `!starWarsCharacter skills astrogation 3` til at ændre din karakters info. Kommandoen `!starWarsCharacter` vil give dig et character sheet for din karakter.
|
@ -1 +1 @@
|
||||
Lader dig rulle Star Wars terninger. Du kan skrive tal der repræsenterer antallet af hver terning i rækkefølgen: ability, proficiency, difficulty, challenge, boost, setback og force. Du behøver ikke skrive et tal til alle terningerne. Du kan også skrive forbogstavet for terningen du vil rulle før antallet, såsom "!swroll f2", der ruller 2 force terninger.
|
||||
Lader dig rulle Star Wars terninger. Du kan skrive tal der repræsenterer antallet af hver terning i rækkefølgen: ability, proficiency, difficulty, challenge, boost, setback og force. Du behøver ikke skrive et tal til alle terningerne. Du kan også skrive forbogstavet for terningen du vil rulle før antallet, såsom "!starWarsRoll f2", der ruller 2 force terninger.
|
@ -1 +0,0 @@
|
||||
Du kan bruge kommandoer som `!swchar name Jared` eller `!swchar skills astrogation 3` til at ændre din karakters info. Kommandoen `!swchar` vil give dig et character sheet for din karakter.
|
@ -6,8 +6,6 @@
|
||||
|
||||
`!monster` - Slå et monster op.
|
||||
|
||||
`!map` - Få et billede af Senkulpa kortet.
|
||||
|
||||
`!image` - Finder et tilfældigt billede fra internettet.
|
||||
|
||||
`!movie` - Giver titlen på en tilfældig film fra Bedre Netflix
|
||||
@ -18,9 +16,9 @@
|
||||
|
||||
`!give` - Lader dig give GwendoBucks til andre.
|
||||
|
||||
`!swchar` - Lader dig lave en Star Wars karakter.
|
||||
`!starWarsCharacter` - Lader dig lave en Star Wars karakter.
|
||||
|
||||
`!swroll` - Lader dig rulle Star Wars terninger.
|
||||
`!starWarsRoll` - Lader dig rulle Star Wars terninger.
|
||||
|
||||
`!balance` - Viser dig hvor mange GwendoBucks du har.
|
||||
|
||||
@ -30,7 +28,7 @@
|
||||
|
||||
`!trivia` - Lader dig spille et spil trivia, hvor du kan tjene GwendoBucks.
|
||||
|
||||
`!fourinarow` - Lader dig spille et spil fire på stribe.
|
||||
`!connectFour` - Lader dig spille et spil fire på stribe.
|
||||
|
||||
`!hex` - Lader dig spille et spil Hex.
|
||||
|
||||
|
@ -23,6 +23,68 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"balance" : {
|
||||
"name" : "balance",
|
||||
"description" : "See your balance of GwendoBucks"
|
||||
},
|
||||
"blackjack" : {
|
||||
"name" : "blackjack",
|
||||
"description" : "Run a game of blackjack",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "parameters",
|
||||
"description" : "The parameters for the command",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"connectFourStartGwendolyn" : {
|
||||
"base" : "connectFour",
|
||||
"subcommand_group" : "start",
|
||||
"name" : "Gwendolyn",
|
||||
"description" : "Start a game of connect four against Gwendolyn",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "difficulty",
|
||||
"description" : "The difficulty of Gwendolyn's AI",
|
||||
"type" : 4,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"connectFourStartUser" : {
|
||||
"base" : "connectFour",
|
||||
"subcommand_group" : "start",
|
||||
"name" : "user",
|
||||
"description" : "Start a game of connect four against another user",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "user",
|
||||
"description" : "The user to start a game against",
|
||||
"type" : 6,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"connectFourStop" : {
|
||||
"base" : "connectFour",
|
||||
"name" : "stop",
|
||||
"description" : "Stop the game of connect four"
|
||||
},
|
||||
"connectFourPlace" : {
|
||||
"base" : "connectFour",
|
||||
"name" : "place",
|
||||
"description" : "Place a piece",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "column",
|
||||
"description" : "The column to place the piece",
|
||||
"type" : 4,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"downloading" : {
|
||||
"name" : "downloading",
|
||||
"description" : "See current downloads for Bedre Netflix",
|
||||
@ -47,6 +109,28 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"give" : {
|
||||
"name" : "give",
|
||||
"description" : "Give GwendoBucks to another user",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "parameters",
|
||||
"description" : "The user and amount of GwendoBucks you're sending",
|
||||
"type" : 3,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hangmanStart" : {
|
||||
"base" : "hangman",
|
||||
"name" : "start",
|
||||
"description" : "Start a game of hangman"
|
||||
},
|
||||
"hangmanStop" : {
|
||||
"base" : "hangman",
|
||||
"name" : "stop",
|
||||
"description" : "Stop the current game of hangman"
|
||||
},
|
||||
"hello" : {
|
||||
"name" : "hello",
|
||||
"description" : "Greet Gwendolyn"
|
||||
@ -63,6 +147,74 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"hexPlace" : {
|
||||
"base" : "hex",
|
||||
"name" : "place",
|
||||
"description" : "Place a piece on the hex board",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "coordinates",
|
||||
"description" : "The coordinates to place the piece at",
|
||||
"type" : 3,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hexStartGwendolyn" : {
|
||||
"base" : "hex",
|
||||
"subcommand_group" : "start",
|
||||
"name" : "Gwendolyn",
|
||||
"description" : "Start a game of hex against Gwendolyn",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "difficulty",
|
||||
"description" : "The difficulty of Gwendolyn's AI",
|
||||
"type" : 4,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hexStartUser" : {
|
||||
"base" : "hex",
|
||||
"subcommand_group" : "start",
|
||||
"name" : "user",
|
||||
"description" : "Start a game of hex against another user",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "user",
|
||||
"description" : "The user to start a game against",
|
||||
"type" : 6,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"hexSurrender" : {
|
||||
"base" : "hex",
|
||||
"name" : "surrender",
|
||||
"description" : "Surrender the game of hex"
|
||||
},
|
||||
"hexSwap" : {
|
||||
"base" : "hex",
|
||||
"name" : "swap",
|
||||
"description" : "Perform a hex swap"
|
||||
},
|
||||
"hexUndo" : {
|
||||
"base" : "hex",
|
||||
"name" : "undo",
|
||||
"description" : "Undo your last hex move"
|
||||
},
|
||||
"invest" : {
|
||||
"name" : "invest",
|
||||
"description" : "Invest GwendoBucks in the stock market",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "parameters",
|
||||
"description" : "The parameters for the command",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"image" : {
|
||||
"name" : "image",
|
||||
"description" : "Get a random image from Bing"
|
||||
@ -115,6 +267,54 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"starWarsCharacter" : {
|
||||
"name" : "starWarsCharacter",
|
||||
"description" : "Manage your Star Wars character sheet",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "parameters",
|
||||
"description" : "The parameters for the command",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"starWarsCrit" : {
|
||||
"name" : "starWarsCrit",
|
||||
"description" : "Roll a Star Wars critical injury",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "severity",
|
||||
"description" : "The severity of the hit",
|
||||
"type" : 4,
|
||||
"required" : "true"
|
||||
}
|
||||
]
|
||||
},
|
||||
"starWarsDestiny" : {
|
||||
"name" : "starWarsDestiny",
|
||||
"description" : "Use and see Star Wars Destiny points",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "parameters",
|
||||
"description" : "The parameters for the command",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"starWarsRoll" : {
|
||||
"name" : "starWarsRoll",
|
||||
"description" : "Roll Star Wars dice",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "dice",
|
||||
"description" : "The dice, or ability, to roll",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"stop" : {
|
||||
"name" : "stop",
|
||||
"description" : "Restart Gwendolyn"
|
||||
@ -127,6 +327,18 @@
|
||||
"name" : "thank",
|
||||
"description" : "Thank Gwendolyn for her service"
|
||||
},
|
||||
"trivia" : {
|
||||
"name" : "trivia",
|
||||
"description" : "Play a game of trivia",
|
||||
"options" : [
|
||||
{
|
||||
"name" : "answer",
|
||||
"description" : "Your answer to the trivia question",
|
||||
"type" : 3,
|
||||
"required" : "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
"wiki" : {
|
||||
"name" : "wiki",
|
||||
"description" : "Searches for and gets the info for a wiki page",
|
||||
|
@ -60,11 +60,11 @@
|
||||
"resources/movies.txt": "The Room",
|
||||
"resources/names.txt": "Gandalf",
|
||||
"credentials.txt" : "Bot token: TOKEN\nFinnhub API key: KEY\nWordnik API Key: KEY\nMongoDB user: USERNAME\nMongoDB password: PASSWORD\nWolframAlpha AppID: APPID\nRadarr API key: KEY\nSonarr API key: KEY",
|
||||
"options.txt" : "Testing: True"
|
||||
"options.txt" : "Testing: True\nTesting guild id:\nAdmins:"
|
||||
},
|
||||
"folder" : [
|
||||
"resources/games/blackjackTables",
|
||||
"resources/games/4InARowBoards",
|
||||
"resources/games/connect4Boards",
|
||||
"resources/games/hexBoards",
|
||||
"resources/games/hangmanBoards",
|
||||
"resources/bedreNetflix"
|
||||
|
Reference in New Issue
Block a user