From d18751dc99e8d6a466270f71af8ac59c929b9ce6 Mon Sep 17 00:00:00 2001
From: scientist <michiel.weggen@gmail.com>
Date: Sat, 26 May 2018 16:47:15 -0400
Subject: [PATCH] Update assayWidgets.tw Currently androgynous and sensual face
 types are never interesting for a min-maxer: Below -60, masculine is best,
 between -60 and +60 cute is best, and above +60 exotic is best. By slightly
 reducing the static bonus for cute, sensual becomes best between +30 and +60.
 By adding a small static bonus to androgynous, androgynous become best
 between -60 and -30.

See https://docs.google.com/spreadsheets/d/1u2jqWrVDjx2nj_FqU3QHcz4XtbHt-GyADv4lXWDq6jU
---
 src/utility/assayWidgets.tw | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/utility/assayWidgets.tw b/src/utility/assayWidgets.tw
index f6e3a122cd6..ca72d5922c2 100644
--- a/src/utility/assayWidgets.tw
+++ b/src/utility/assayWidgets.tw
@@ -40,14 +40,14 @@
 	<<elseif ($arcologies[0].FSGenderFundamentalist != "unset")>>
 	<<set $beauty -= ($arcologies[0].FSGenderFundamentalist/25)*($args[0].face/30)>>
 	<<else>>
-	<<set $beauty -= $args[0].face/30>>
+	<<set $beauty += 2-($args[0].face/30)>>
 	<</if>>
 <<elseif $args[0].faceShape == "exotic">>
 	<<set $beauty += 2*($args[0].face/30)>>
 <<elseif $args[0].faceShape == "sensual">>
 	<<set $beauty += 2+($args[0].face/30)>>
 <<elseif $args[0].faceShape == "cute">>
-	<<set $beauty += 4>>
+	<<set $beauty += 3>>
 <</if>>
 
 <<if $args[0].brand != 0>>
-- 
GitLab