windpl Posted August 3, 2021 Posted August 3, 2021 Hi, I was trying to recover cut content from ideology mainly nudity rules in Precepts_Nudity.xml (that are still there but put in to comments) but failed. Well my wish thinking was that I will just remove comment and it will work, well they don't I was trying to copy working defs by adding things that ones that were cut were missing but still I do not see them appearing in game. Dose def files have other dependencies and does order of "issue"s in file matter? Original code Spoiler <?xml version="1.0" encoding="utf-8" ?> <Defs> <!-- Issues --> <IssueDef> <defName>Nudity_Male</defName> <label>male clothing</label> <iconPath>UI/Issues/Nudity_Male</iconPath> </IssueDef> <IssueDef> <defName>Nudity_Female</defName> <label>female clothing</label> <iconPath>UI/Issues/Nudity_Female</iconPath> </IssueDef> <!-- Precepts --> <PreceptDef> <defName>Nudity_Male_Mandatory</defName> <issue>Nudity_Male</issue> <description>Men must be entirely nude at all times. Utility items like shields belts or jump packs are acceptable.</description> <label>fully nude</label> <impact>High</impact> <displayOrderInIssue>130</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>FemaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartCovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartCovered_Disapproved_Social_Male</thought> </li> </comps> <prefersNudity>true</prefersNudity> <genderPrefersNudity>Male</genderPrefersNudity> </PreceptDef> <PreceptDef> <defName>Nudity_Female_Mandatory</defName> <issue>Nudity_Female</issue> <label>fully nude</label> <description>Women must be entirely nude at all times. Utility items like shields belts or jump packs are acceptable.</description> <impact>High</impact> <displayOrderInIssue>120</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>MaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartCovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartCovered_Disapproved_Social_Female</thought> </li> </comps> <prefersNudity>true</prefersNudity> <genderPrefersNudity>Female</genderPrefersNudity> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_CoveringAnythingButGroinDisapproved</defName> <issue>Nudity_Male</issue> <label>pants at most</label> <description>Men should cover their groin, but may not cover anything else. Utility items like shields belts or jump packs are acceptable.</description> <impact>High</impact> <displayOrderInIssue>110</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButGroinCovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButGroinCovered_Disapproved_Social_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Social_Male</thought> </li> </comps> <prefersNudity>true</prefersNudity> <genderPrefersNudity>Male</genderPrefersNudity> </PreceptDef> <PreceptDef> <defName>Nudity_Female_CoveringAnythingButGroinDisapproved</defName> <issue>Nudity_Female</issue> <label>pants at most</label> <description>Women should cover their groin, but may not cover anything else. Utility items like shields belts or jump packs are acceptable.</description> <impact>High</impact> <displayOrderInIssue>100</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButGroinCovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButGroinCovered_Disapproved_Social_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Social_Female</thought> </li> </comps> <prefersNudity>true</prefersNudity> <genderPrefersNudity>Female</genderPrefersNudity> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_NoRules</defName> <issue>Nudity_Male</issue> <label>no rules</label> <description>A man may display or cover any part of his body.</description> <impact>Low</impact> <displayOrderInIssue>90</displayOrderInIssue> <displayOrderInImpact>-100</displayOrderInImpact> <associatedMemes> <li>Individualist</li> </associatedMemes> </PreceptDef> <PreceptDef> <defName>Nudity_Female_NoRules</defName> <issue>Nudity_Female</issue> <label>no rules</label> <description>A woman may display or cover any part of her body.</description> <impact>Low</impact> <displayOrderInIssue>80</displayOrderInIssue> <displayOrderInImpact>-100</displayOrderInImpact> <associatedMemes> <li>Individualist</li> </associatedMemes> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_UncoveredGroinDisapproved</defName> <issue>Nudity_Male</issue> <label>pants</label> <description>Men must cover their groin. The rest of the body may be covered, or not.</description> <impact>Low</impact> <displayOrderInIssue>70</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <defaultSelectionWeight>1</defaultSelectionWeight> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_UncoveredGroinDisapproved</defName> <issue>Nudity_Female</issue> <label>pants</label> <description>Women must cover their groin. The rest of the body may be covered, or not.</description> <impact>Low</impact> <displayOrderInIssue>60</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinUncovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_UncoveredGroinOrChestDisapproved</defName> <issue>Nudity_Male</issue> <label>pants and shirt</label> <description>Men must cover their groin and chest. The rest of the body may be covered, or not.</description> <impact>Low</impact> <displayOrderInIssue>50</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinOrChestUncovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinOrChestUncovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_UncoveredGroinOrChestDisapproved</defName> <issue>Nudity_Female</issue> <label>pants and shirt</label> <description>Women must cover their groin and chest. The rest of the body may be covered, or not.</description> <impact>Low</impact> <displayOrderInIssue>40</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <defaultSelectionWeight>1</defaultSelectionWeight> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinOrChestUncovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinOrChestUncovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_UncoveredGroinChestOrHairDisapproved</defName> <issue>Nudity_Male</issue> <label>pants, shirt, and hat</label> <description>Men must cover their entire body and hair. The face may be covered, or not.</description> <impact>Medium</impact> <displayOrderInIssue>30</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>FemaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestOrHairUncovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestOrHairUncovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_UncoveredGroinChestOrHairDisapproved</defName> <issue>Nudity_Female</issue> <label>pants, shirt, and hat</label> <description>Women must cover their entire body and hair. The face may be covered, or not.</description> <impact>Medium</impact> <displayOrderInIssue>20</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>MaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestOrHairUncovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestOrHairUncovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <!-- ====== --> <PreceptDef> <defName>Nudity_Male_UncoveredGroinChestHairOrFaceDisapproved</defName> <issue>Nudity_Male</issue> <label>totally covered</label> <description>Men must cover their entire body, including their hair and face.</description> <impact>High</impact> <displayOrderInIssue>10</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>FemaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestHairOrFaceUncovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestHairOrFaceUncovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_UncoveredGroinChestHairOrFaceDisapproved</defName> <issue>Nudity_Female</issue> <label>totally covered</label> <description>Women must cover their entire body, including their hair and face.</description> <impact>High</impact> <displayOrderInIssue>0</displayOrderInIssue> <displayOrderInImpact>750</displayOrderInImpact> <associatedMemes> <li>MaleSupremacy</li> </associatedMemes> <comps> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestHairOrFaceUncovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>GroinChestHairOrFaceUncovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <!--================================= Thoughts ====================================--> <ThoughtDef Name="AnyBodyPartCovered_Disapproved"> <defName>AnyBodyPartCovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_AnyBodyPartCovered</workerClass> <gender>Male</gender> <producesMemoryThought>AnyBodyPartCovered_Disapproved_Memory</producesMemoryThought> <stages> <li> <label>wearing clothes</label> <description>I don't approve of covering myself, yet here I am doing it.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartCovered_Disapproved"> <defName>AnyBodyPartCovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef> <defName>AnyBodyPartCovered_Disapproved_Memory</defName> <thoughtClass>Thought_Memory</thoughtClass> <durationDays>0.5</durationDays> <stackLimit>1</stackLimit> <stages> <li> <label>wore clothes</label> <description>I concealed my flesh. It was wrong.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef Name="AnyBodyPartCovered_Disapproved_Social"> <defName>AnyBodyPartCovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_AnyBodyPartCovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>wearing clothes</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartCovered_Disapproved_Social"> <defName>AnyBodyPartCovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="AnyBodyPartButGroinCovered_Disapproved"> <defName>AnyBodyPartButGroinCovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_AnyBodyPartButGroinCovered</workerClass> <gender>Male</gender> <producesMemoryThought>AnyBodyPartButGroinCovered_Disapproved_Memory</producesMemoryThought> <stages> <li> <label>wearing clothes (non-groin)</label> <description>To stifle the skin is wrong. Only the groin should be covered.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartButGroinCovered_Disapproved"> <defName>AnyBodyPartButGroinCovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef> <defName>AnyBodyPartButGroinCovered_Disapproved_Memory</defName> <thoughtClass>Thought_Memory</thoughtClass> <durationDays>0.5</durationDays> <stackLimit>1</stackLimit> <stages> <li> <label>wore clothes (non-groin)</label> <description>To conceal the skin is wrong, but I did it anyway. Only the groin should be covered.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef Name="AnyBodyPartButGroinCovered_Disapproved_Social"> <defName>AnyBodyPartButGroinCovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_AnyBodyPartButGroinCovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>wearing clothes (non-groin)</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartButGroinCovered_Disapproved_Social"> <defName>AnyBodyPartButGroinCovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinUncovered_Disapproved"> <defName>GroinUncovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_GroinUncovered</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered groin</label> <description>I shouldn't have my private parts hanging out.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinUncovered_Disapproved"> <defName>GroinUncovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinUncovered_Disapproved_Social"> <defName>GroinUncovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_GroinUncovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered groin</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinUncovered_Disapproved_Social"> <defName>GroinUncovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinOrChestUncovered_Disapproved"> <defName>GroinOrChestUncovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_GroinOrChestUncovered</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered groin/chest</label> <description>I don't like displaying my private parts or my chest.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinOrChestUncovered_Disapproved"> <defName>GroinOrChestUncovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinOrChestUncovered_Disapproved_Social"> <defName>GroinOrChestUncovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_GroinOrChestUncovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered groin/chest</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinOrChestUncovered_Disapproved_Social"> <defName>GroinOrChestUncovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinChestOrHairUncovered_Disapproved"> <defName>GroinChestOrHairUncovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_GroinChestOrHairUncovered</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered groin/chest/hair</label> <description>It's wrong to be displaying myself like this. Only the face may be visible.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinChestOrHairUncovered_Disapproved"> <defName>GroinChestOrHairUncovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinChestOrHairUncovered_Disapproved_Social"> <defName>GroinChestOrHairUncovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_GroinChestOrHairUncovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered any body part</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinChestOrHairUncovered_Disapproved_Social"> <defName>GroinChestOrHairUncovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinChestHairOrFaceUncovered_Disapproved"> <defName>GroinChestHairOrFaceUncovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_GroinChestHairOrFaceUncovered</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered any body part</label> <description>To show myself to the world is wrong. I should be completely covered up.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinChestHairOrFaceUncovered_Disapproved"> <defName>GroinChestHairOrFaceUncovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="GroinChestHairOrFaceUncovered_Disapproved_Social"> <defName>GroinChestHairOrFaceUncovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_GroinChestHairOrFaceUncovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>uncovered any body part</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> <nullifyingTraits> <li>Nudist</li> </nullifyingTraits> </ThoughtDef> <ThoughtDef ParentName="GroinChestHairOrFaceUncovered_Disapproved_Social"> <defName>GroinChestHairOrFaceUncovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> <!-- Removed precept "Covering anything but hair or face disapproved" <PreceptDef> <defName>Nudity_Male_CoveringAnythingButHairOrFaceDisapproved</defName> <issue>Nudity_Male</issue> <label>no covering</label> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButHairOrFaceCovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButHairOrFaceCovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_CoveringAnythingButHairOrFaceDisapproved</defName> <issue>Nudity_Female</issue> <label>no covering</label> <comps> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButHairOrFaceCovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>AnyBodyPartButHairOrFaceCovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <ThoughtDef Name="AnyBodyPartButHairOrFaceCovered_Disapproved"> <defName>AnyBodyPartButHairOrFaceCovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_AnyBodyPartButHairOrFaceCovered</workerClass> <gender>Male</gender> <stages> <li> <label>wearing clothes (non-hair, non-face)</label> <description>I shouldn't cover anything except hair or face. The skin should breathe!</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartButHairOrFaceCovered_Disapproved"> <defName>AnyBodyPartButHairOrFaceCovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="AnyBodyPartButHairOrFaceCovered_Disapproved_Social"> <defName>AnyBodyPartButHairOrFaceCovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_AnyBodyPartButHairOrFaceCovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>wearing clothes (non-hair, non-face)</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="AnyBodyPartButHairOrFaceCovered_Disapproved_Social"> <defName>AnyBodyPartButHairOrFaceCovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> --> <!-- Removed precept "Covering face disapproved" <PreceptDef> <defName>Nudity_Male_CoveringFaceDisapproved</defName> <issue>Nudity_Male</issue> <label>face uncovered</label> <comps> <li Class="PreceptComp_SituationalThought"> <thought>FaceCovered_Disapproved_Male</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>FaceCovered_Disapproved_Social_Male</thought> </li> </comps> </PreceptDef> <PreceptDef> <defName>Nudity_Female_CoveringFaceDisapproved</defName> <issue>Nudity_Female</issue> <label>face uncovered</label> <comps> <li Class="PreceptComp_SituationalThought"> <thought>FaceCovered_Disapproved_Female</thought> </li> <li Class="PreceptComp_SituationalThought"> <thought>FaceCovered_Disapproved_Social_Female</thought> </li> </comps> </PreceptDef> <ThoughtDef Name="FaceCovered_Disapproved"> <defName>FaceCovered_Disapproved_Male</defName> <workerClass>ThoughtWorker_Precept_FaceCovered</workerClass> <gender>Male</gender> <stages> <li> <label>covered face</label> <description>I shouldn't be covering my face. It's wrong.</description> <baseMoodEffect>-4</baseMoodEffect> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="FaceCovered_Disapproved"> <defName>FaceCovered_Disapproved_Female</defName> <gender>Female</gender> </ThoughtDef> <ThoughtDef Name="FaceCovered_Disapproved_Social"> <defName>FaceCovered_Disapproved_Social_Male</defName> <thoughtClass>Thought_SituationalSocial</thoughtClass> <workerClass>ThoughtWorker_Precept_FaceCovered_Social</workerClass> <gender>Male</gender> <stages> <li> <label>covered face</label> <baseOpinionOffset>-18</baseOpinionOffset> </li> </stages> </ThoughtDef> <ThoughtDef ParentName="FaceCovered_Disapproved_Social"> <defName>FaceCovered_Disapproved_Social_Female</defName> <gender>Female</gender> </ThoughtDef> --> </Defs>
Algene Posted August 3, 2021 Posted August 3, 2021 Weren't those already in? Or maybe I'm just not understanding
windpl Posted August 3, 2021 Author Posted August 3, 2021 33 minutes ago, Algene said: Weren't those already in? Or maybe I'm just not understanding That after comment line are not. They cover different parts of body for example one force pawns to stay naked with exception of hat and face accessory,
windpl Posted August 5, 2021 Author Posted August 5, 2021 Whatever, I did it. Here is modpack if anyone want it. It add 2 rules, nude with face and hat, second about uncovering face. windpluncut.7z
Recommended Posts
Archived
This topic is now archived and is closed to further replies.