Added chance to get STD or a kid if you don't have condoms left
This commit is contained in:
parent
eea0b92b28
commit
170bb6dd5d
1 changed files with 27 additions and 5 deletions
32
main.go
32
main.go
|
|
@ -54,12 +54,14 @@ var money = 1800 // not specific currency
|
||||||
var days = 30 // total number of days (default 30)
|
var days = 30 // total number of days (default 30)
|
||||||
var experience = 0 // your experience from combat battle fights (starts at 0)
|
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 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 cocaines = 0 // cocaine in 1/gram units
|
||||||
var fentanyl = 0 // fentanyl in 500 miligram units
|
var fentanyl = 0 // fentanyl in 500 miligram units
|
||||||
var LSD = 0 // LSD in pills
|
var LSD = 0 // LSD in pills
|
||||||
var bumfights = 25 // default number of homeless bum fights per day
|
var bumfights = 25 // default number of homeless bum fights per day
|
||||||
const bumfightsTotal = 25 // total bumfights
|
const bumfightsTotal = 25 // total bumfights
|
||||||
|
const taxes = 500 // skimming off the top
|
||||||
|
var childsupport = 0 // if you get a hoe preggers
|
||||||
|
|
||||||
// Lipgloss - Props to
|
// Lipgloss - Props to
|
||||||
var border = lipgloss.NewStyle().
|
var border = lipgloss.NewStyle().
|
||||||
|
|
@ -187,14 +189,14 @@ func RedRoom() {
|
||||||
if strings.ToUpper(choice) == "B" {
|
if strings.ToUpper(choice) == "B" {
|
||||||
ClearScreen()
|
ClearScreen()
|
||||||
fmt.Println(slutStyle.Render("Sex Slave Menu"))
|
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("Your cash: $", strconv.Itoa(money))
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
fmt.Println("Buy one sex slave (Y/N)?")
|
fmt.Println("Buy one sex slave (Y/N)?")
|
||||||
slavePurchase := ""
|
slavePurchase := ""
|
||||||
fmt.Scan(&slavePurchase)
|
fmt.Scan(&slavePurchase)
|
||||||
if strings.ToUpper(slavePurchase) == "Y" {
|
if strings.ToUpper(slavePurchase) == "Y" {
|
||||||
if money > 5000 {
|
if money > 2000 {
|
||||||
whores = whores + 1
|
whores = whores + 1
|
||||||
money = money - 5000
|
money = money - 5000
|
||||||
ClearScreen()
|
ClearScreen()
|
||||||
|
|
@ -238,7 +240,6 @@ func RedRoom() {
|
||||||
} else {
|
} else {
|
||||||
i = 0
|
i = 0
|
||||||
}
|
}
|
||||||
// Fuck Whore
|
|
||||||
|
|
||||||
} else if strings.ToUpper(choice) == "L" {
|
} else if strings.ToUpper(choice) == "L" {
|
||||||
ClearScreen()
|
ClearScreen()
|
||||||
|
|
@ -282,7 +283,25 @@ func RedRoom() {
|
||||||
if money > 100 {
|
if money > 100 {
|
||||||
money = money - 100
|
money = money - 100
|
||||||
if condoms == 0 {
|
if condoms == 0 {
|
||||||
std = true
|
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 {
|
} else {
|
||||||
condoms = condoms - 1
|
condoms = condoms - 1
|
||||||
}
|
}
|
||||||
|
|
@ -529,6 +548,9 @@ func ClockOut() {
|
||||||
} else {
|
} else {
|
||||||
bumfights = bumfightsTotal
|
bumfights = bumfightsTotal
|
||||||
}
|
}
|
||||||
|
prostituteIncome := whores*500 - childsupport
|
||||||
|
money = money + taxes + prostituteIncome
|
||||||
|
fmt.Println("Cha ching! You now have ", money)
|
||||||
MainMachine()
|
MainMachine()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue