More info

This commit is contained in:
Joseph Ferano 2022-06-03 00:04:13 +07:00
parent 56d253bab8
commit a80d31b40c

View File

@ -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)