Increment jackpot more slowly, description

This commit is contained in:
Joseph Ferano 2022-04-21 13:05:49 +07:00
parent bf4ef3b3d4
commit 4103b48483

View File

@ -291,7 +291,7 @@ let spin multiplier (ctx : IDiscordContext) =
do! resetJackpot BaseJackpotAmount |> Async.Ignore
return "JACKPOT" , jackpot
| None ->
do! incrementJackpot playAmount |> Async.Ignore
do! incrementJackpot multiplier |> Async.Ignore
embed.Description <- $"You LOST `💰` **{playAmount}** $GBT 😭"
embed.Color <- DiscordColor.Red
embed.AddField("Bet", $"{playAmount}", true) |> ignore
@ -374,7 +374,7 @@ let sendEmbed channel (message : DiscordMessage option) = async {
let embed = DiscordEmbedBuilder()
embed.Title <- "Degenz Slot Machine"
embed.ImageUrl <- "https://s7.gifyu.com/images/ezgif.com-gif-maker-268ecb6e4d28bd55a0.gif"
embed.Description <- "Want to try your luck?"
embed.Description <- "Want to try your luck? When you lose the Jackpot goes up!"
let! jackpot = getJackpotAmount ()
embed.Title <- $"CURRENT JACKPOT: `{jackpot} 💰 $GBT`"