Sfoglia il codice sorgente

[fixed/change] Some bug fixes and some code used for the next scene with Katja.

bgkjdgbizgblzdgbr 9 mesi fa
parent
commit
21771d91ff
1 ha cambiato i file con 6 aggiunte e 3 eliminazioni
  1. 6 3
      locations/katja_procedural.qsrc

+ 6 - 3
locations/katja_procedural.qsrc

@@ -78,6 +78,8 @@
 !! katjaQW['anal_sex'] = 1 Katja have had anal sex with guy where the player character wasn''t present.
 !! katjaQW['deepthroat'] Number of time Katja have deepthroated
 !! katjaQW['dp'] the number of times Katja have been double penetrated.
+!! katjaQW['creampie'] number of creampies Katja have received
+!!  katjaQW['bondage_sex']  number of times Katja and the player character have had sex where the player character was bound and/or blindfolded.
 
 !! katjaQW['strapon_bj'] = 1 Katja has given a BJ to your strap-on.
 !! katjaQW['strapon_vag'] = 1 You have fucked Katja''s pussy with your strap-on.
@@ -95,7 +97,7 @@
 !! katjaQW['lazar_pussy_talk'] = 1 Katja and the player character have talked about having sex with Lazar.
 !! katjaQW['lazar_anal_talk'] = 1 Katja and the player character have talked about having anal sex with Lazar.
 
-!! katjaQW['Lazar_Ivan_4some'] 1 means the had a foursome but no double penetration, 2 means that the player character recieved a double penetration during the first foursome and have not talked about it yet, and 3 is if the player character have recieved a double penetration and they have talked about the first foursome.
+!! katjaQW['Lazar_Ivan_4some'] 1 means the had a foursome but no double penetration, 2 means that the player character received a double penetration during the first foursome and have not talked about it yet, and 3 is if the player character have received a double penetration and they have talked about the first foursome.
 
 !! katjaQW['Marcus_day'] is set to daystart if you or Katja ask to have a threesome with Marcus. Such that the question will only be asked once per day.
 !! katjaQW['Lazar_day'] is set to daystart if you or Katja ask to have a threesome with Lazar. Such that the question will only be asked once per day.
@@ -453,7 +455,7 @@ if $ARGS[0] = 'sex_set':
 			!! It this case Katja will have sex with at most 2 of the boys present
 			katjaQW['simultanous_boys'] = rand(1,min(2,ARGS[1]))
 			katjaQW['slut'] += katjaQW['simultanous_boys']*5
-		elseif rand(0,2) <= katjaQW['slut']/50:
+		elseif katjaQW['simultanous_boys'] > 0 and rand(0,2) <= katjaQW['slut']/50:
 			!! Katja have had sex with one or more boys before
 			if npc_vag['A14'] > 0 and rand(0,3) > 0:
 				if katjaQW['pussy_sex'] = 0: katjaQW['pussy_sex'] = 1
@@ -462,6 +464,7 @@ if $ARGS[0] = 'sex_set':
 				elseif npc_vag['A14'] < rand(10,20)
 					 npc_vag['A14'] += 1
 				end
+				if katjaQW['creampie'] > 0 and rand(0,5) = 0: katjaQW['creampie'] += 1
 			else	
 				if rand(0,5) = 0:
 					npc_vag['A14'] += 2
@@ -519,7 +522,7 @@ if $ARGS[0] = 'sex_set':
 			!! In this case Katja will have sex with at most 3 of the girls present
 			katjaQW['simultanous_girls'] = rand(1,min(3,ARGS[1]))
 			katjaQW['slut'] += katjaQW['simultanous_girls']*4
-		elseif rand(0,1) <= katjaQW['slut']/50:
+		elseif katjaQW['simultanous_girls'] > 0 and rand(0,1) <= katjaQW['slut']/50:
 			!! Katja have had sex with one or more girls before
 			if npc_vag['A14'] > 0 and rand(0,5) > 0:
 				 npc_vag['A14'] += 1