🧹 Cleaning up blackjack
This commit is contained in:
@ -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",
|
||||
|
Reference in New Issue
Block a user