🧹 Cleaning up blackjack

This commit is contained in:
NikolajDanger
2021-04-02 22:54:26 +02:00
parent a8c982e066
commit 3a9c2b7e16
4 changed files with 331 additions and 292 deletions

View File

@ -40,6 +40,29 @@
}
]
},
"blackjackCards" : {
"base" : "blackjack",
"name" : "cards",
"description" : "Get a count of the cards used in blackjack games"
},
"blackjackDouble" : {
"base" : "blackjack",
"name" : "double",
"description" : "Double your bet in blackjack",
"options" : [
{
"name" : "hand",
"description" : "The number of the hand to double your bet on",
"type" : 4,
"required" : "false"
}
]
},
"blackjackHilo" : {
"base" : "blackjack",
"name" : "hilo",
"description" : "Get the current hi-lo value for the cards used in blackjack games"
},
"blackjackHit" : {
"base" : "blackjack",
"name" : "hit",
@ -53,6 +76,24 @@
}
]
},
"blackjackShuffle" : {
"base" : "blackjack",
"name" : "shuffle",
"description" : "Shuffle the cards used in blackjack games"
},
"blackjackSplit" : {
"base" : "blackjack",
"name" : "split",
"description" : "Split your hand in blackjack",
"options" : [
{
"name" : "hand",
"description" : "The number of the hand to split, in case you've already split once",
"type" : 4,
"required" : "false"
}
]
},
"blackjackStand" : {
"base" : "blackjack",
"name" : "stand",