From a80d31b40c1d9c05fd6243f08e3daa1a2146120c Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Fri, 3 Jun 2022 00:04:13 +0700 Subject: [PATCH] More info --- Bot/Embeds.fs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Bot/Embeds.fs b/Bot/Embeds.fs index afaad8f..2f298b9 100644 --- a/Bot/Embeds.fs +++ b/Bot/Embeds.fs @@ -65,7 +65,7 @@ let pickHack actionId attacker defender bonus isTrainer = let ( outcomeMsg , bonusMsg ) = if attacker.Stats.Strength.Amount > defender.Stats.Strength.Amount then - "\nYou're stronger so you'll steal more!!!\n" , $"\n**__Potential Bonus:__**\n`{bonus} 💰$GBT`" + "\nYou're stronger so you'll hack more!!!\n" , $"\n**__Potential Bonus:__**\n`{bonus} 💰$GBT`" else "\nYou're not stronger than them, you need to eat more!" , "" let stealMsg = @@ -94,7 +94,12 @@ let pickHack actionId attacker defender bonus isTrainer = | "VIRUS" -> "<:virus_hack:971636840580927510>" | "WORM" -> "<:worm_hack:971636842640310312>" | _ -> "" - embed.AddField($"{emoji} {hack.Name}", $"Cooldown: {hack.Cooldown} mins\nSteal Total: `{amount + bonus} $GBT`", true) |> ignore + let fieldMsg = $""" + **Cooldown:** {hack.Cooldown} mins + **Hack Base:** {hack.Power} + **Strength Bonus:** {bonus} + **Hack Total:** {amount + bonus} $GBT""" + embed.AddField($"{emoji} {hack.Name}", fieldMsg, true) |> ignore DiscordFollowupMessageBuilder() .AddComponents(buttons)