mirror of
https://gitlab.com/EternalWanderer/dice-roller.git
synced 2024-11-28 21:03:51 +01:00
Yet more string foermatting
This commit is contained in:
parent
349f882ade
commit
852bd4c906
11
main.go
11
main.go
|
@ -47,11 +47,6 @@ func main() {
|
|||
}
|
||||
default:
|
||||
|
||||
if diceThrows <= 1 {
|
||||
fmt.Println(string(ColorYellow), "Rolling die...:", string(ColorReset))
|
||||
} else{
|
||||
fmt.Println(string(ColorYellow), "Rolling",diceThrows,"dice...:", string(ColorReset))
|
||||
}
|
||||
Cast(surfaces, diceThrows)
|
||||
}
|
||||
}
|
||||
|
@ -91,6 +86,12 @@ func Cast(dieSurfaces, castAmount int) {
|
|||
fmt.Println(string(ColorBlue), "\tIndividual rolls:", casts, string(ColorReset))
|
||||
}
|
||||
|
||||
if modifier != 0 {
|
||||
fmt.Printf("%sRolling %dd%d + %d...\n%s", ColorYellow, diceThrows, surfaces, modifier, ColorReset)
|
||||
} else {
|
||||
fmt.Printf("%sRolling %dd%d...\n%s", ColorYellow, diceThrows, surfaces, ColorReset)
|
||||
}
|
||||
|
||||
if modifier != 0 {
|
||||
fmt.Println("\tWithout modifier:", total)
|
||||
fmt.Println(string(ColorGreen), "\tWith modifier:", total+modifier, string(ColorReset))
|
||||
|
|
Loading…
Reference in a new issue