Added chance to get STD or a kid if you don't have condoms left

This commit is contained in:
Starstreak 2025-08-07 13:40:53 +00:00
parent eea0b92b28
commit 170bb6dd5d

30
main.go
View file

@ -54,12 +54,14 @@ var money = 1800 // not specific currency
var days = 30 // total number of days (default 30)
var experience = 0 // your experience from combat battle fights (starts at 0)
var level = 1 // your level from combat battle fights (starts at 1)
var whores = 1 // number of sex slaves you own
var whores = 0 // number of sex slaves you own
var cocaines = 0 // cocaine in 1/gram units
var fentanyl = 0 // fentanyl in 500 miligram units
var LSD = 0 // LSD in pills
var bumfights = 25 // default number of homeless bum fights per day
const bumfightsTotal = 25 // total bumfights
const taxes = 500 // skimming off the top
var childsupport = 0 // if you get a hoe preggers
// Lipgloss - Props to
var border = lipgloss.NewStyle().
@ -187,14 +189,14 @@ func RedRoom() {
if strings.ToUpper(choice) == "B" {
ClearScreen()
fmt.Println(slutStyle.Render("Sex Slave Menu"))
fmt.Println("Price: ", red.Render("$5000 per whore."))
fmt.Println("Price: ", red.Render("$2000 per whore."))
fmt.Println("Your cash: $", strconv.Itoa(money))
fmt.Println("")
fmt.Println("Buy one sex slave (Y/N)?")
slavePurchase := ""
fmt.Scan(&slavePurchase)
if strings.ToUpper(slavePurchase) == "Y" {
if money > 5000 {
if money > 2000 {
whores = whores + 1
money = money - 5000
ClearScreen()
@ -238,7 +240,6 @@ func RedRoom() {
} else {
i = 0
}
// Fuck Whore
} else if strings.ToUpper(choice) == "L" {
ClearScreen()
@ -282,8 +283,26 @@ func RedRoom() {
if money > 100 {
money = money - 100
if condoms == 0 {
stdChance := rand.IntN(100)
preggoChance := rand.IntN(100)
if stdChance > 25 {
std = true
} else {
}
if preggoChance > 15 {
fmt.Println(border.Render("You got the whore pregnant! Do you want to sell the kid to"))
fmt.Println(border.Render("Pakistan for $500 up front to sew soccer balls?"))
soccerBalls := ""
fmt.Scan(&soccerBalls)
if strings.ToUpper(soccerBalls) == "Y" {
money = money + 500
fmt.Println(border.Render("Bonus! You just made $500!"))
} else {
}
}
} else {
condoms = condoms - 1
}
ClearScreen()
@ -529,6 +548,9 @@ func ClockOut() {
} else {
bumfights = bumfightsTotal
}
prostituteIncome := whores*500 - childsupport
money = money + taxes + prostituteIncome
fmt.Println("Cha ching! You now have ", money)
MainMachine()
}
}