Browse Source

[fixes] Surgery for lips and eyes didn't stop when maxed so you could keep repeating it with no further gains
Some increase in hunger whn exercising to slow down the rapid weight loss issue

KevinSmarts 4 years ago
parent
commit
1e16ebb514
2 changed files with 7 additions and 3 deletions
  1. 5 1
      locations/exercise.qsrc
  2. 2 2
      locations/poli.qsrc

+ 5 - 1
locations/exercise.qsrc

@@ -500,6 +500,7 @@ if $ARGS[0] = 'tier1':
 
 	gs 'sweat', 'add', 3
 	fat -= 1
+	pcs_energy - 3
 	pcs_mood += 3
 	if $ARGS[3] = '':
 		dynamic '<<$ARGS[2]>> += 1'
@@ -536,6 +537,7 @@ if $ARGS[0] = 'tier2':
 
 	gs 'sweat', 'add', 10
 	fat -= 2
+	pcs_energy - 6
 	pcs_mood += 5
 	if $ARGS[3] = '':
 		dynamic '<<$ARGS[2]>> += rand(2,3)'
@@ -561,7 +563,7 @@ end
 
 if $ARGS[0] = 'tier3':
 	if ARGS[1] = 0:
-		minut += 15
+		minut += 12
 	else
 		minut += ARGS[1]
 	end
@@ -571,6 +573,7 @@ if $ARGS[0] = 'tier3':
 
 	gs 'sweat', 'add', 15
 	fat -= 3
+	pcs_energy - 9
 	pcs_mood += 5
 	if $ARGS[3] = '':
 		dynamic '<<$ARGS[2]>> += rand(3,5)'
@@ -606,6 +609,7 @@ if $ARGS[0] = 'tier4':
 
 	gs 'sweat', 'add', 25
 	fat -= 4
+	pcs_energy - 12
 	pcs_mood += 5
 	if $ARGS[3] = '':
 		dynamic '<<$ARGS[2]>> += rand(7,10)'

+ 2 - 2
locations/poli.qsrc

@@ -1261,7 +1261,7 @@ if $ARGS[0] = 'cosmetic1':
 		else
 		'Electrolysis treatment - 80,000 <b>₽</b>'
 	end
-	if money >= 25000 and pcs_lip <= 4:
+	if money >= 25000 and pcs_lip < 4:
 		'<a href="exec:gt ''poli'', ''lipPlus''">Lip enlargement surgery</a> - 25,000 <b>₽</b>'
 		else
 		'Lip enlargement surgery - 25,000 <b>₽</b>'
@@ -1271,7 +1271,7 @@ if $ARGS[0] = 'cosmetic1':
 		else
 		'Lip reduction surgery - 30,000 <b>₽</b>'
 	end
-	if money >= 90000 and pcs_eyesize <= 3:
+	if money >= 90000 and pcs_eyesize < 3:
 		'<a href="exec:gt ''poli'', ''eyePlus''">Eye enlargement surgery</a> - 90,000 <b>₽</b>'
 		else
 		'Eye enlargement surgery - 90,000 <b>₽</b>'