Browse Source

[fixes] wrong pictures for pubic hair in _body_image

julzor 5 years ago
parent
commit
100a3968ae
1 changed files with 15 additions and 4 deletions
  1. 15 4
      locations/_body_image.qsrc

+ 15 - 4
locations/_body_image.qsrc

@@ -90,12 +90,23 @@ if $ARGS[0] = 'panties':
 	if $pantyworntype = 'none':
 		if pcs_pubes <= 3:
 			$RESULT = 'images/pc/body/pussy/pussy.jpg'
-		elseif pcs_pubes <= 10:
+		elseif pcs_pubes > 3 and pcs_pubes <= 10:
 			$RESULT = 'images/pc/body/pussy/stpussy.jpg'
-		elseif pcs_pubes <= 20:
-			$RESULT = 'images/pc/body/pussy/spussy.jpg'
-		else
+		elseif pcs_pubes > 10 and pcs_pubes <= 15:
+			if pubestyle >= 2 and pubestyle <= 7:
+				$RESULT = $pubeimage
+			else
+				$RESULT = 'images/pc/body/pussy/3.jpg'
+			end
+		elseif pcs_pubes > 15 and pcs_pubes <= 20:
+			if pubestyle = 8: $RESULT = $pubeimage
+			if pubestyle ! 8: $RESULT = 'images/pc/body/pussy/spussy.jpg'
+		elseif pcs_pubes > 20 and pcs_pubes <= 25:
 			$RESULT = 'images/pc/body/pussy/hpussy.jpg'
+		elseif pcs_pubes > 25 and pcs_pubes <= 30:
+			$RESULT = 'images/pc/body/pussy/shave/s_bush1.jpg'
+		elseif pcs_pubes >= 31:
+			$RESULT = 'images/pc/body/pussy/hrypussy.jpg'
 		end
 		$body_image_msg += 'You are not wearing any panties.'
 	else