Procházet zdrojové kódy

[changed] sexshop lube to match the pharmacy quantity and price

julzor před 4 roky
rodič
revize
c122bdf2b6
1 změnil soubory, kde provedl 15 přidání a 27 odebrání
  1. 15 27
      locations/sexshop.qsrc

+ 15 - 27
locations/sexshop.qsrc

@@ -140,44 +140,32 @@ if $ARGS[0] = 'start':
 	act 'Look through the bras': minut += 1 & gt 'sexshop', 'bras'
 	act 'Look through the fetish shoes': minut += 1 & gt 'sexshop', 'shoes'
 	
-	if money < 300 and karta + bankDebtLimit < 300:
+	if money < 145 and karta + bankDebtLimit < 145:
 		'You cannot afford lubricant.'
 	else
-		if money >= 300:
-			act 'Buy lubricant 300 <b>₽</b> (cash)':
+		if money >= 145:
+			act 'Buy lubricant 145 <b>₽</b> (cash)':
 				*clr & cla
 				menu_off = 1
-				portion = input ("How much you want to buy?")
-
-				if portion * 300 > money:
-					'You do not have enough money.'
-				else
-					lubri += portion * 5
-					money -= portion * 300
-					minut += 5
-					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
-					'You buy some lubricant and pay the cashier.'
-				end
+				lubri += 20
+				money -= 145
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
+				'You buy some lubricant and pay the cashier.'
 				gs 'stat'
 
 				act 'Move away from the counter':gt 'sexshop', 'start'
 			end
 		end
-		if karta + bankDebtLimit >= 300:
-			act 'Buy lubricant 300 <b>₽</b> (card)':
+		if karta + bankDebtLimit >= 145:
+			act 'Buy lubricant 145 <b>₽</b> (card)':
 				*clr & cla
 				menu_off = 1
-				portion = input ("How much you want to buy?")
-
-				if portion * 300 > karta + bankDebtLimit:
-					'You do not have enough credit.'
-				else
-					lubri += portion * 5
-					karta -= portion * 300
-					minut += 5
-					'<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
-					'You buy some lubricant and pay the cashier.'
-				end
+				lubri += 20
+				karta -= 145
+				minut += 5
+				'<center><img <<$set_imgh>> src="images/locations/city/citycenter/sexshop/sexshop.jpg"></center>'
+				'You buy some lubricant and pay the cashier.'
 				gs 'stat'
 
 				act 'Move away from the counter':gt 'sexshop', 'start'