Browse Source

brothel.qsrc added steps for stretching and minor fixes

Nekoforce 2 years ago
parent
commit
8674b8d824
1 changed files with 61 additions and 5 deletions
  1. 61 5
      locations/brothel.qsrc

+ 61 - 5
locations/brothel.qsrc

@@ -450,7 +450,7 @@ if $ARGS[0] = 'reception':
     else:
 		act 'Second section':gt 'brothel','section2_lobby'
     end
-    if brothelCredit < -4 and pcs_health < 200:
+    if brothelCredit < -4 and pcs_health > 200:
         act 'Ask him to let you out': gt 'brothel', 'section1_force_work'                  
     else
 		act 'Ask him to let you out': gt 'brothel', 'leave'
@@ -627,7 +627,7 @@ if $ARGS[0] = 'section1_force_work':
 	'<h3>Brothel Lobby</h3>'
     '<h5>Slave cage: Forced to work</h5>'
     '<center><img <<$set_imgh>> src="images/locations/shared/brothel/placeholder.jpg"></center>'
-    '<font color=#<<$rec_font>>>"Running off, again and again, whore? If you can't make up your mind, maybe some training will help you."</font>'
+    '<font color=#<<$rec_font>>>"Running off, again and again, whore? If you can''t make up your mind, maybe some training will help you."</font>'
     if $clothingworntype ! 'nude':
       'With this, the receptionist grabs and undresses you, then locks you in a cage.'
     elseif $pantyworntype ! 'none': 
@@ -713,7 +713,7 @@ if $ARGS[0] = 'section1_pick':
 	$subloc = 'section1_play'
     mas_accept = $ARGS[2]
 	if (rageMeter <= 25 and mas_accept = 1):
-      	'<center><video autoplay loop src="images/locations/shared/brothel/placeholder.mp4"></video></center>'
+      	'<center><img <<$set_imgh>> src="images/shared/sex/dom/kotovsub.jpg"></center>'
 		'<font color=#'+$mas_font+'>As you wish, slut. We''ll do it your way.</font>'
 	elseif (rageMeter <= 50 and mas_accept = 1):
 		mas_accept = rand(0, 1)
@@ -722,7 +722,7 @@ if $ARGS[0] = 'section1_pick':
             rageMeter += 10           
 			'<font color=#'+$mas_font+'>You think you can order me around, slut? It''ll do with you what I *I* want.</font>'
 		elseif mas_accept = 1:
-            '<center><video autoplay loop src="images/locations/shared/brothel/placeholder.mp4"></video></center>'
+            '<center><img <<$set_imgh>> src="images/shared/sex/dom/kotovsub.jpg"></center>'
 			'<font color=#'+$mas_font+'>So, that''s how you like to play, slut? Sure, we will do that. I''ll make your cries only sweeter.</font>'
 		end
 	elseif (rageMeter >= 75 and mas_accept = 1):
@@ -981,6 +981,8 @@ if $ARGS[0] = 'section1_play':
     end
       
     if $act_type = 'watersports':
+      analplay = rand (0, 1)
+      
       if orgasmMeter = 100:
 			''
 			fin = rand (1, 4)
@@ -998,6 +1000,8 @@ if $ARGS[0] = 'section1_play':
     end
       
     if $act_type = 'stretching':
+      analplay = 0
+      
       if orgasmMeter = 100:
       		'<font color=#'+$mas_font+'>Now that''s what a proper fucktoy looks like! Now let''s see what I will do with you.</font>'
 			fin = rand (1, 4)
@@ -1012,6 +1016,29 @@ if $ARGS[0] = 'section1_play':
 			end
 			gt 'brothel', 'section1_finish'
 		end
+      
+      if stage = 1:
+      	stage += 1
+      	gt 'brothel', 'section1_lieOnBack'
+      elseif stage = 2:
+      	stage += 1
+      	gt 'brothel', 'section1_dildoVag'
+      elseif stage = 3:
+      	stage += 1
+      	gt 'brothel', 'section1_dildoAss'
+      elseif stage = 4:
+      	stage += 1
+      	gt 'brothel', 'section1_buttplug'
+      elseif stage = 5:
+      	stage += 1
+      	gt 'brothel', 'section1_vagfisting'
+      elseif stage = 6:
+      	stage += 1
+      	gt 'brothel', 'section1_tied_analfisting'
+      elseif stage = 7:
+      	stage += 1
+      	gt 'brothel', 'section1_finishStretching'
+      end
     end
 
 end
@@ -1939,7 +1966,37 @@ if $ARGS[0] = 'section1_pushplugout':
 		act 'Continue': gt 'brothel', 'section1_play'
 	end
 end
+                          
+if $ARGS[0] = 'section1_dildoVag':
+	menu_off = 1
+	custTime += 5
+    '<center><img <<$set_imgh>> src="images/locations/shared/brothel/placeholder.jpg"></center>'
+    'The customer grabs the dildo from the table, and without even trying to prepare you for it, shoves it in your pussy.'                      
+    '<font color=#<<$pcs_font>>>"Aahhhh! Please, use at least some lube!"</font>'
+    '<font color=#<<$mas_font>>>"You wish! Lube is only for good girls, so if you want some, earn it. For now you get to enjoy it as nature intended."</font>'                      
+    if pcs_arousal > 50:
+    	'Luckily you are at least somewhat wet, which provides enough lubrication to make it hurt a little less.'   
+    else
+    	'Unfortunately you are still completely dry between your legs, which only makes it hurt so much more.'
+    end
+    gs 'arousal', 'vaginal', 10, 'sub', 'prostitution'
+	gs 'arousal', 'end'
+	gs 'pain', 3, 'vagina', 'stretch'
+	gs 'stat'                     
+end
 
+if $ARGS[0] = 'section1_dildoAss':
+                          
+end
+                          
+if $ARGS[0] = 'section1_vagfisting':
+                          
+end
+                          
+if $ARGS[0] = 'section1_finishStretching':
+                          
+end 
+                          
 if $ARGS[0] = 'section1_ragefinish':
 	menu_off = 1
 	minut += 5
@@ -2034,7 +2091,6 @@ end
       
 if $ARGS[0] = 'section2_warning':
       '<center><img <<$set_imgh>> src="images/locations/shared/brothel/receptionist.jpg"></center>'
-      
       section_warn =  1
       'As you walk toward the second Section, the receptionist suddenly speaks up: <font color=#<<$rec_font>>>"<<$pcs_firstname>>, you''ve never been in the second Section before, have you?"</font>'
       'You stop, looking at him and shake your head. <font color=#<<$pcs_font>>>"No, so far not. Anything I should know?"</font>'