Skip to content

Commit

Permalink
Merge pull request #2 from world87/main
Browse files Browse the repository at this point in the history
Added food recipes
  • Loading branch information
EaglePhntm authored Jun 28, 2024
2 parents e081ef2 + c73017e commit f4cb978
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
1 change: 1 addition & 0 deletions About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- Adds social impact buff to bigger breasts and penises.
- Removes natural and bionic body part debuffs (not hydraulic/peg as they are supposed to be worse).
- Makes humpshroom less painful to grow and makes it possible to grow it on the ground and in light.
- Removes cum, humpshroom and condoms from default selection for most meals

Thanks to Tory187 and Abraxas for the help in the makings.
Merged XenoMorphie's merge request i missed by a whole year which supposedly fixes errors with socialimpact for archotech bits.
Expand Down
68 changes: 68 additions & 0 deletions Patches/RecipePatches.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<Patch>
<Operation Class="PatchOperationAdd">
<xpath>/Defs/RecipeDef[@Name="CookMealBase"]/defaultIngredientFilter/disallowedThingDefs</xpath>
<value>
<li MayRequire="rjw.sexperience">GatheredCum</li>
<li MayRequire="rim.job.world">UsedCondom</li>
<li MayRequire="rim.job.world">HumpShroom</li>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>Defs/RecipeDef[defName="Make_BabyFood" or defName="Make_BabyFoodBulk"]/fixedIngredientFilter</xpath>
<value>
<disallowedThingDefs>
<li MayRequire="rjw.sexperience">GatheredCum</li>
<li MayRequire="rim.job.world">UsedCondom</li>
<li MayRequire="rim.job.world">HumpShroom</li>
</disallowedThingDefs>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>/Defs/RecipeDef[defName="Make_Kibble"]/defaultIngredientFilter/disallowedThingDefs</xpath>
<value>
<li MayRequire="rjw.sexperience">GatheredCum</li>
<li MayRequire="rim.job.world">UsedCondom</li>
<li MayRequire="rim.job.world">HumpShroom</li>
</value>
</Operation>

<Operation Class="PatchOperationAdd">
<xpath>/Defs/RecipeDef[defName="Make_Pemmican" or defName="Make_PemmicanBulk"]/defaultIngredientFilter/disallowedThingDefs</xpath>
<value>
<li MayRequire="rim.job.world">HumpShroom</li>
</value>
</Operation>

<!-- Vanilla Expanded recipes -->
<Operation Class="PatchOperationFindMod">
<mods>
<li>Vanilla Cooking Expanded</li>
</mods>
<match Class="PatchOperationAdd">
<xpath>/Defs/RecipeDef[@Name="CookGourmetMealBase" or @Name="VCE_CookBakeMealBase" or @Name="VCE_CookGourmetBakeMealBase" or @Name="VCE_CookDessertMealBase" or @Name="VCE_CookComplexDessertMealBase" or @Name="VCE_CookGourmetDessertMealBase"]/defaultIngredientFilter/disallowedThingDefs</xpath>
<value>
<li MayRequire="rjw.sexperience">GatheredCum</li>
<li MayRequire="rim.job.world">UsedCondom</li>
<li MayRequire="rim.job.world">HumpShroom</li>
</value>
</match>
</Operation>

<Operation Class="PatchOperationFindMod">
<mods>
<li>Vanilla Cooking Expanded - Sushi</li>
</mods>
<match Class="PatchOperationAdd">
<xpath>/Defs/RecipeDef[@Name="VCE_CookSushiMealBase" or @Name="VCE_CookFineSushiMealBase" or @Name="VCE_CookGourmetSushiMealBase"]/defaultIngredientFilter</xpath>
<value>
<disallowedThingDefs>
<li MayRequire="rjw.sexperience">GatheredCum</li>
<li MayRequire="rim.job.world">UsedCondom</li>
<li MayRequire="rim.job.world">HumpShroom</li>
</disallowedThingDefs>
</value>
</match>
</Operation>
</Patch>

0 comments on commit f4cb978

Please sign in to comment.