Browse Source

[added] coffee to the beverage menu

hornguy6 3 years ago
parent
commit
0dbdd03383
1 changed files with 20 additions and 0 deletions
  1. 20 0
      locations/beverage.qsrc

+ 20 - 0
locations/beverage.qsrc

@@ -372,5 +372,25 @@ if $ARGS[0] = 'afterdrink':
 	end
 end
 
+
+!! ------------ just the stats, no descriptions or extra stuff -----------------------
+
+if $ARGS[0] = 'coffee':
+	*clr & cla
+	frost = 0
+	if alko > 0: alko -= 1
+	pcs_health += 5
+	pcs_mood += 20
+	pcs_energy += 15
+	if pcs_hydra >= 100:
+		pcs_hydra += 20
+	else
+		pcs_hydra += 40
+	end
+	cumspclnt = 2
+	gs 'cum_cleanup'
+	pcs_breath = 0
+	gs 'stat'
+end
 --- beverage ---------------------------------