Browse Source

[added] stat only food options
[changed] all pcs_health += 5 to pcs_health += pcs_health/10

hornguy6 1 year ago
parent
commit
c382e60433
1 changed files with 77 additions and 5 deletions
  1. 77 5
      locations/food.qsrc

+ 77 - 5
locations/food.qsrc

@@ -16,7 +16,7 @@ if $ARGS[0] = 'pirosh':
 	frost = 0
 	minut += 15
 	money -= val($_eat['<<args[1]>>,price'])
-	pcs_health += 5
+	pcs_health += pcs_health/10
 	pcs_mood += 5
 	fat += 4
 	pcs_energy += 40
@@ -346,7 +346,7 @@ if $ARGS[0] = 'ryesna':
 	frost = 0
 	minut += 10
 	money -= val($_eat['<<args[1]>>,price'])
-	pcs_health += 5
+	pcs_health += pcs_health/10
 	pcs_mood += 10
 	fat += 4
 	pcs_energy += 20
@@ -376,7 +376,7 @@ if $ARGS[0] = 'crisps':
 	frost = 0
 	minut += 10
 	money -= val($_eat['<<args[1]>>,price'])
-	pcs_health += 5
+	pcs_health += pcs_health/10
 	pcs_mood += 20
 	fat += 16
 	pcs_energy += 20
@@ -865,7 +865,7 @@ if $ARGS[0] = 'bilberry':
 	gs 'stat'
 	minut += 15
 	money -= val($_eat['<<args[1]>>,price'])
-	pcs_health += 5
+	pcs_health += pcs_health/10
 	pcs_mood += 10
 	fat += 1
 	pcs_energy += 10
@@ -964,7 +964,7 @@ end
 if $ARGS[0] = 'only_cost_light_snack':
 	*clr & cla
 	money -= val($_eat['<<args[1]>>,price'])
-	pcs_health += 5
+	pcs_health += pcs_health/10
 	pcs_mood += 20
 	fat += 3
 	pcs_energy += 20
@@ -978,5 +978,77 @@ if $ARGS[0] = 'only_cost_light_snack':
 	gt 'food_menu'
 end
 
+if $ARGS[0] = 'only_stats_fast_food':
+	*clr & cla
+	pcs_health += pcs_health/10
+	pcs_mood += 20
+	fat += 14
+	pcs_energy += 70
+	pcs_hydra += 70
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
+if $ARGS[0] = 'only_stats_small_meal':
+	*clr & cla
+	pcs_health += pcs_health/5
+	pcs_mood += 10
+	fat += 4
+	pcs_energy += 40
+	pcs_hydra += 40
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
+if $ARGS[0] = 'only_stats_medium_meal':
+	*clr & cla
+	pcs_health += pcs_health/10
+	pcs_mood += 15
+	fat += 7
+	pcs_energy += 70
+	pcs_hydra += 70
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
+if $ARGS[0] = 'only_stats_large_meal':
+	*clr & cla
+	pcs_health += pcs_health/15
+	pcs_mood += 20
+	fat += 14
+	pcs_energy += 100
+	pcs_hydra += 100
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
+if $ARGS[0] = 'only_stats_bagged_meal':
+	*clr & cla
+	pcs_health += pcs_health/8
+	pcs_mood += 5
+	fat += 5
+	pcs_energy += 40
+	pcs_hydra += 40
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
+if $ARGS[0] = 'only_stats_healthy_meal':
+	*clr & cla
+	pcs_health += pcs_health/5
+	pcs_mood += 5
+	fat += 1
+	pcs_energy += 50
+	pcs_hydra += 50
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+end
+
 --- food ---------------------------------