minor changes - in-migration

This commit is contained in:
Vegapnk 2024-05-29 18:16:26 +02:00
parent b67a8db320
commit 883dfefa3e
6 changed files with 52 additions and 25 deletions

View file

@ -1,7 +1,7 @@
<ModMetaData>
<name>RJW Genes</name>
<author>jaaldabaoth</author>
<packageId>jaaldabaoth.rjw.genes</packageId>
<author>Vegapnk</author>
<packageId>Vegapnk.rjw.genes</packageId>
<supportedVersions>
<li>1.5</li>
</supportedVersions>

View file

@ -1,3 +1,39 @@
# 2.0.0
**Additions**:
- initial Rimworld 1.5 thanks to @jaaldabaoth
- Fertile Anus Gene, thanks to @jaaldabaoth
- Femboy Genes, for male pawns with Vaginas @jaaldabaoth
- Udder Gene @jaaldabaoth , Fixes #57
- Some other Genitalia Sets (Crocodilian, Racoon, ...) thanks to @jaaldabaoth, Closes #57
- LitteredBirthsGene thanks to @jaaldabaoth
- OvaryAgitator that allows for a cyclic fertility. Thanks @jaaldabaoth. See [its description](./Common/Defs/ThingDefs/OvaryAgitator.xml)
- LimbicStimulator / Scrambler thanks to @jaaldabaoth. See [Scrambler Description](Common/Defs/ThingDefs/Scrambler.xml) and [Limbic Stimulator](./Common/Defs/ThingDefs/LimbicStimulator.xml)
- Bioscaffold that allows for faster pregnancies. thanks to @jaaldabaoth. See [its description](./Common/Defs/ThingDefs/Bioscaffold.xml)
- Multi-Pregnancy Gene thanks to @jaaldabaoth
**Changes**:
- Modularised many "change gentialia sets"-genes into a XML configurations. Thanks to @flock-of-birds
- **Removed** Hive Logic for now! This might break some of your save-games.
- Highmates "Initiate Loving" uses Succubus "Seduce" ability, thanks to @jaaldabaoth
- Slider for Evergrowth Tick-Speed, thanks to @jaaldabaoth
- Resizing Age for resizing Genes can be set in Settings @jaaldabaoth
- Licentia-Stretching related genes are only placeholders, as Licentia is not 1.5 yet
**Fixes:**
- Small changes to drawing Succubus Wings
- Minor Format changes to lots of XML files
**Hidden Changes:**
- Patches for "Same Mother" / "Same Father" to account for Male-Pregs. This should only extend behaviour but be warned.
- Patches to RJW-Pregnancy Helper to account for Male Pregs.
- Some replacements from `hasGene` to `hasActiveGene`
# 1.3.3
**Fixes:**

Binary file not shown.

View file

@ -1,22 +0,0 @@
using rjw;
using Verse;
namespace RJW_Genes
{
public class Genital_Helper_2
{
public static HediffDef NeedlePenis = HediffDef.Named("NeedlePenis");
public static HediffDef PigPenis = HediffDef.Named("PigPenis");
public static HediffDef MarinePenis = HediffDef.Named("MarinePenis");
public static HediffDef TentaclePenis = HediffDef.Named("TentaclePenis");
public static HediffDef GolemPenis = HediffDef.Named("GolemPenis");
public static HediffDef OrcPenis = HediffDef.Named("OrcPenis");
public static HediffDef GhostPenis = HediffDef.Named("GhostPenis");
public static HediffDef NecroPenis = HediffDef.Named("NecroPenis");
public static HediffDef GhostVagina = HediffDef.Named("GhostVagina");
public static HediffDef Vagina = HediffDef.Named("Vagina");
public static HediffDef Penis = HediffDef.Named("Penis");
public static HediffDef Anus = HediffDef.Named("Anus");
}
}

View file

@ -19,7 +19,21 @@ namespace RJW_Genes
public static readonly HediffDef rjw_genes_evergrowth_sideeffect;
public static readonly HediffDef rjw_genes_orgasmic_mytosis_hediff;
public static readonly HediffDef rjw_genes_mytosis_shock_hediff;
public static readonly HediffDef OvaryAgitator;
public static readonly HediffDef Bioscaffold;
public static HediffDef NeedlePenis = HediffDef.Named("NeedlePenis");
public static HediffDef PigPenis = HediffDef.Named("PigPenis");
public static HediffDef MarinePenis = HediffDef.Named("MarinePenis");
public static HediffDef TentaclePenis = HediffDef.Named("TentaclePenis");
public static HediffDef GolemPenis = HediffDef.Named("GolemPenis");
public static HediffDef OrcPenis = HediffDef.Named("OrcPenis");
public static HediffDef GhostPenis = HediffDef.Named("GhostPenis");
public static HediffDef NecroPenis = HediffDef.Named("NecroPenis");
public static HediffDef GhostVagina = HediffDef.Named("GhostVagina");
public static HediffDef Vagina = HediffDef.Named("Vagina");
public static HediffDef Penis = HediffDef.Named("Penis");
public static HediffDef Anus = HediffDef.Named("Anus");
}
}

View file

@ -135,7 +135,6 @@
<Compile Include="Genes\Patches\LustFeeding.cs" />
<Compile Include="Genes\Patches\MultiplePregnancies.cs" />
<Compile Include="Genes\Patch_AddNotifyOnGeneration.cs" />
<Compile Include="Genes\Genital_Helper_2.cs" />
<Compile Include="Genes\Special\Defs\AgeTransferExtension.cs" />
<Compile Include="Genes\Special\Defs\HormonalSalivaExtension.cs" />
<Compile Include="Genes\Special\Patches\Patch_AgeDrain.cs" />