1
0
فهرست منبع

[added] New dress variable added to the attributes and descriptions with dresses getting new and better tailored description components

KevinSmarts 4 سال پیش
والد
کامیت
f656e4f193
2فایلهای تغییر یافته به همراه49 افزوده شده و 15 حذف شده
  1. 2 0
      locations/clothing_attributes.qsrc
  2. 47 15
      locations/clothing_descriptions.qsrc

+ 2 - 0
locations/clothing_attributes.qsrc

@@ -51,6 +51,8 @@
 !!				3 is knee-length shorts
 !!				2 is calf length
 !!				1 is ankle length
+!! CloDress  =  1 for yes
+!!		EX		1 This average quality dress. Unlike a skirt the whole thing must be removed
 !! CloPanties = 1 for yes
 !!		Ex:		1 The bottom of this outfit offers no more coverage than panties and it will replace your panties (if worn)
 !! CloOnePiece = 1

+ 47 - 15
locations/clothing_descriptions.qsrc

@@ -2,20 +2,38 @@
 !Builds a dynamic clothing description based on the clothes attributes
 
 $description = ''
-if CloQuality = 1:
-	$description = 'This crappy quality outfit'
-elseif CloQuality = 2:
-	$description = 'This very low quality outfit'
-elseif CloQuality = 3:
-	$description = 'This low quality outfit'
-elseif CloQuality = 4:
-	$description = 'This average quality outfit'
-elseif CloQuality = 5:
-	$description = 'This reasonable quality outfit'
-elseif CloQuality = 6:
-	$description = 'This good quality outfit'
-elseif CloQuality = 7:
-	$description = 'This is an outstanding quality outfit'
+if CloDress = 1:
+	if CloQuality = 1:
+		$description = 'This crappy quality dress'
+	elseif CloQuality = 2:
+		$description = 'This very low quality dress'
+	elseif CloQuality = 3:
+		$description = 'This low quality dress'
+	elseif CloQuality = 4:
+		$description = 'This average quality dress'
+	elseif CloQuality = 5:
+		$description = 'This reasonable quality dress'
+	elseif CloQuality = 6:
+		$description = 'This good quality dress'
+	elseif CloQuality = 7:
+		$description = 'This is an outstanding quality dress'
+	end
+else
+	if CloQuality = 1:
+		$description = 'This crappy quality outfit'
+	elseif CloQuality = 2:
+		$description = 'This very low quality outfit'
+	elseif CloQuality = 3:
+		$description = 'This low quality outfit'
+	elseif CloQuality = 4:
+		$description = 'This average quality outfit'
+	elseif CloQuality = 5:
+		$description = 'This reasonable quality outfit'
+	elseif CloQuality = 6:
+		$description = 'This good quality outfit'
+	elseif CloQuality = 7:
+		$description = 'This is an outstanding quality outfit'
+	end
 end
 
 if CloThinness = 1:
@@ -57,7 +75,21 @@ elseif CloTopCut > 0:
 	end
 end
 
-if CloPanties = 1:
+if CloDress = 1:
+	if CloSkirtShortness = 1:
+		$description = $description + ' and a floor-length hemline.'
+	elseif CloSkirtShortness = 2:
+		$description = $description + ' and a knee-length hemline.'
+	elseif CloSkirtShortness = 3:
+		$description = $description + ' and a fairly standard hemline.'
+	elseif CloSkirtShortness = 4:
+		$description = $description + ' and a rather short hemline.'
+	elseif CloSkirtShortness = 5:
+		$description = $description + ' and a hemline that barely reaches past your groin.'
+	elseif CloSkirtShortness = 6:
+		$description = $description + ' and a hemline not even long enough to hide your privates.'
+	end
+elseif CloPanties = 1:
 	$description += ' the bottom of which is so skimpy it replaces your panties.'
 elseif CloPantsShortness > 0:
 	if CloPantsShortness = 1: