From 3cad5805b951c16da855245d15137540af86f438 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Tue, 25 Jul 2023 16:30:02 -0400
Subject: [PATCH] Add body purist social effects for makeup-free beauties and
 extremely heavy makeup.

---
 src/endWeek/saSocialEffects.js | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/endWeek/saSocialEffects.js b/src/endWeek/saSocialEffects.js
index 335d0121f5c..c5d861ade74 100644
--- a/src/endWeek/saSocialEffects.js
+++ b/src/endWeek/saSocialEffects.js
@@ -647,6 +647,13 @@ App.SlaveAssignment.saSocialEffects = function(slave) {
 						`Society <span class="green">approves</span> of ${his} intact anus, advancing ideals of pure, fresh slaves.`));
 				}
 			}
+			if (slave.makeup === 0 && slave.face > 10) {
+				t.push(new SocialEffect("Body Purist", 1, `Makeup-free beauty`,
+					`Society <span class="green">approves</span> of keeping ${his} naturally beautiful face makeup-free.`));
+			} else if (slave.makeup > 1) {
+				t.push(new SocialEffect("Body Purist", 1, `Heavy makeup`,
+					`Society <span class="red">disapproves</span> of ${his} heavy makeup, which covers up ${his} natural features.`));
+			}
 		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
 			let transformed = 0;
 			if (slave.boobsImplant > 0 && slave.buttImplant > 0 && slave.lipsImplant > 0) {
-- 
GitLab