Browse Source

[added] Additional descriptions for exposure variables when viewing outfits

Kevin_Smarts 10 months ago
parent
commit
e88d1517a0
1 changed files with 54 additions and 0 deletions
  1. 54 0
      locations/clothing_descriptions.qsrc

+ 54 - 0
locations/clothing_descriptions.qsrc

@@ -138,6 +138,18 @@ elseif CloTopCut > 0:
 	end
 end
 
+if CloBra ! 2:
+	if CloCoverTop = 1:
+		$description += ' If worn without a bra your breasts can just about be seen in the right light.'
+	elseif BraCover = 2:
+		$description += ' If worn without a bra your breasts are partly visible.'
+	elseif BraCover = 3:
+		$description += ' If worn without a bra your breasts are easily visible.'
+	elseif BraCover = 4:
+		$description += ' If worn without a bra your breasts are not covered at all.'
+	end
+end
+
 if CloDress = 1:
 	if CloSkirtShortness = 1:
 		$description += ' and a floor-length hemline.'
@@ -184,5 +196,47 @@ elseif CloSkirtShortness > 0:
 	end
 end
 
+if CloCoverFront = 1:
+	if CloCoverBack = 1:
+		$description += ' If worn without underwear your pussy and butt can just about be seen in the right light.'
+	elseif PanCoverBack = 2:
+		$description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is partly visible.'
+	elseif PanCoverBack = 3:
+		$description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is clearly visible.'
+	elseif PanCoverBack = 4:
+		$description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is not covered at all.'
+	end
+elseif CloCoverFront = 2:
+	if CloCoverBack = 1:
+		$description += ' If worn without underwear your pussy is partly visible and your butt can just about be seen in the right light.'
+	elseif PanCoverBack = 2:
+		$description += ' If worn without underwear your pussy and butt are partly visible.'
+	elseif PanCoverBack = 3:
+		$description += ' If worn without underwear your pussy is partly visible and your butt is clearly visible.'
+	elseif PanCoverBack = 4:
+		$description += ' If worn without underwear your pussy is partly visible and your butt is not covered at all.'
+	end
+elseif CloCoverFront = 3:
+	if CloCoverBack = 1:
+		$description += ' If worn without underwear your pussy is clearly visible and your butt can just about be seen in the right light.'
+	elseif PanCoverBack = 2:
+		$description += ' If worn without underwear your pussy is clearly visible and your butt is partly visible.'
+	elseif PanCoverBack = 3:
+		$description += ' If worn without underwear your pussy and your butt are clearly visible.'
+	elseif PanCoverBack = 4:
+		$description += ' If worn without underwear your pussy is clearly visible and your butt is not covered at all.'
+	end
+elseif CloCoverFront = 4:
+	if CloCoverBack = 1:
+		$description += ' If worn without underwear your pussy is not covered at all and your butt can just about be seen in the right light.'
+	elseif PanCoverBack = 2:
+		$description += ' If worn without underwear your pussy is not covered at all and your butt is partly visible.'
+	elseif PanCoverBack = 3:
+		$description += ' If worn without underwear your pussy is not covered at all and your butt is clearly visible.'
+	elseif PanCoverBack = 4:
+		$description += ' If worn without underwear you pussy and your butt are not covered at all.'
+	end
+end
+
 --- clothing_descriptions ---------------------------------