Explorar o código

[fixed] String construction error and old wordy system was in use

KevinSmarts %!s(int64=4) %!d(string=hai) anos
pai
achega
736f67e0c0
Modificáronse 1 ficheiros con 35 adicións e 35 borrados
  1. 35 35
      locations/clothing_descriptions.qsrc

+ 35 - 35
locations/clothing_descriptions.qsrc

@@ -37,87 +37,87 @@ else
 end
 
 if CloThinness = 1:
-	$description = $description + ', which completely obscures your figure'
+	$description += ', which completely obscures your figure'
 elseif CloThinness = 2:
-	$description = $description + ', which somewhat obscures your figure'
+	$description += ', which somewhat obscures your figure'
 elseif CloThinness = 3:
-	$description = $description + ', which shows your figure somewhat'
+	$description += ', which shows your figure somewhat'
 elseif CloThinness = 4:
-	$description = $description + ', which shows your figure well'
+	$description += ', which shows your figure well'
 elseif CloThinness = 5:
-	$description = $description + ', which shows every detail of your figure'
+	$description += ', which shows every detail of your figure'
 elseif CloThinness = 6:
-	$description = $description + ', which intentionally reveals your intimate areas'
+	$description += ', which intentionally reveals your intimate areas'
 end
 
 if CloBra = 2:
-	$description = $description + ', the top leaves your breasts completely exposed'
+	$description += ', the top leaves your breasts completely exposed'
 elseif CloBra = 1:
-	$description = $description + ', the top replaces a bra (if you are wearing one)'
+	$description += ', the top replaces a bra (if you are wearing one)'
 elseif CloTopCut > 0:
 	if CloTopCut = 1:
-		$description = $description + ', includes a very modest top'
+		$description += ', includes a very modest top'
 	elseif CloTopCut = 2:
-		$description = $description + ', includes a modest top'
+		$description += ', includes a modest top'
 	elseif CloTopCut = 3:
-		$description = $description + ', includes a somewhat revealing top'
+		$description += ', includes a somewhat revealing top'
 	elseif CloTopCut = 4:
-		$description = $description + ', includes a very revealing top'
+		$description += ', includes a very revealing top'
 	end
 	if tits < 2:
-		$description = $description + ', that would hang loosely around your humble bosom'
+		$description += ', that would hang loosely around your humble bosom'
 	elseif tits < 5:
-		$description = $description + ', that would fit your decently-sized bosom'
+		$description += ', that would fit your decently-sized bosom'
 	elseif tits < 8:
-		$description = $description + ', that would tightly strain to contain your ample bosom'
+		$description += ', that would tightly strain to contain your ample bosom'
 	else
-		$description = $description + ', that your huge bosom would spill out of'
+		$description += ', that your huge bosom would spill out of'
 	end
 end
 
 if CloDress = 1:
 	if CloSkirtShortness = 1:
-		$description = $description + ' and a floor-length hemline.'
+		$description += ' and a floor-length hemline.'
 	elseif CloSkirtShortness = 2:
-		$description = $description + ' and a knee-length hemline.'
+		$description += ' and a knee-length hemline.'
 	elseif CloSkirtShortness = 3:
-		$description = $description + ' and a fairly standard hemline.'
+		$description += ' and a fairly standard hemline.'
 	elseif CloSkirtShortness = 4:
-		$description = $description + ' and a rather short hemline.'
+		$description += ' and a rather short hemline.'
 	elseif CloSkirtShortness = 5:
-		$description = $description + ' and a hemline that barely reaches past your groin.'
+		$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.'
+		$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.'
+	$description += ' the bottom of which is so skimpy it replaces your panties.'
 elseif CloPantsShortness > 0:
 	if CloPantsShortness = 1:
-		$description = $description + ' and long pants.'
+		$description += ' and long pants.'
 	elseif CloPantsShortness = 2:
-		$description = $description + ' and calf-length pants.'
+		$description += ' and calf-length pants.'
 	elseif CloPantsShortness = 3:
-		$description = $description + ' and knee-length shorts.'
+		$description += ' and knee-length shorts.'
 	elseif CloPantsShortness = 4:
-		$description = $description + ' and thigh-length shorts.'
+		$description += ' and thigh-length shorts.'
 	elseif CloPantsShortness = 5:
-		$description = $description + ' and shorts that don''t go past your crotch.'
+		$description += ' and shorts that don''t go past your crotch.'
 	elseif CloPantsShortness = 6:
-		$description = $description + ' and shorts so short, that they reveal your panties.'
+		$description += ' and shorts so short, that they reveal your panties.'
 	end
 elseif CloSkirtShortness > 0:
 	if CloSkirtShortness = 1:
-		$description = $description + ' and a floor-length skirt.'
+		$description += ' and a floor-length skirt.'
 	elseif CloSkirtShortness = 2:
-		$description = $description + ' and a knee-length skirt.'
+		$description += ' and a knee-length skirt.'
 	elseif CloSkirtShortness = 3:
-		$description = $description + ' and a fairly standard skirt.'
+		$description += ' and a fairly standard skirt.'
 	elseif CloSkirtShortness = 4:
-		$description = $description + ' and a rather short skirt.'
+		$description += ' and a rather short skirt.'
 	elseif CloSkirtShortness = 5:
-		$description = $description + ' and a miniskirt that barely reaches past your groin.'
+		$description += ' and a miniskirt that barely reaches past your groin.'
 	elseif CloSkirtShortness = 6:
-		$description = $description + ' and a microskirt not even long enough to hide your privates.'
+		$description += ' and a microskirt not even long enough to hide your privates.'
 	end
 end