Skip to content
Snippets Groups Projects
Commit abe78d6c authored by jetolska's avatar jetolska
Browse files

Clearly label both bestiality pregnancy sliders

parent a8fd2b78
No related branches found
No related tags found
No related merge requests found
......@@ -225,10 +225,10 @@
<UseParentMethod_desc>ON:Babies have random parent dna.\nOFF:Babies are like mothers.</UseParentMethod_desc>
<OffspringLookLikeTheirMother>Humanlike DNA inheritance</OffspringLookLikeTheirMother>
<OffspringLookLikeTheirMother_desc>Governs humanlike pregnancies. \n100% means born babies will be of mothers race. \nAt 0% means born babies will be of father race.\n\nValid range: 0 - 100%</OffspringLookLikeTheirMother_desc>
<OffspringIsHuman>Bestiality DNA inheritance</OffspringIsHuman>
<OffspringIsHuman>Bestiality DNA inheritance (Mother/Father)</OffspringIsHuman>
<OffspringIsHuman_desc>Governs Humanlike-Animal and Animal-Animal pregnancies.\n100% means born babies will be of "mother" race. \nAt 0% means born babies will be of "father" race.\n\nValid range: 0 - 100%</OffspringIsHuman_desc>
<OffspringIsHuman2>Bestiality DNA inheritance</OffspringIsHuman2>
<OffspringIsHuman2_desc>Governs Humanlike-Animal pregnancies.\n\n left - born babies will be of beast race. \n\n right - born babies will be of humanlike race.</OffspringIsHuman2_desc>
<OffspringIsHuman2>Bestiality DNA inheritance (Human/Beast)</OffspringIsHuman2>
<OffspringIsHuman2_desc>Governs Humanlike-Animal pregnancies.\n\n left - born babies will be of beast race. \n\n right - born babies will be of humanlike race. \n\n anything else - use the Mother/Father logic</OffspringIsHuman2_desc>
<RJWA_pregnancy>Enable animal pregnancies</RJWA_pregnancy>
<RJWA_pregnancy_desc>Use RJW pregnancy for animal-animal pregnancies.</RJWA_pregnancy_desc>
<RJWI_pregnancy>Enable egg pregnancies</RJWI_pregnancy>
......@@ -271,6 +271,7 @@
<AlwaysFather>Always father's species.</AlwaysFather>
<AlwaysBeast>Beast species.</AlwaysBeast>
<AlwaysHumanlike>Humanlike species.</AlwaysHumanlike>
<UsesOffspringIsHuman>Use Mother/Father</UsesOffspringIsHuman>
<ComplexImpregnation>Enable complex interspecies impregnation calculation</ComplexImpregnation>
<ComplexImpregnation_desc><![CDATA[When enabled, the impregnation chance between species depends on the difference in the body structure and size.
Examples:
......
......@@ -20,14 +20,14 @@ namespace rjw
public static bool mechanoid_pregnancy_enabled = true;
public static bool use_parent_method = true;
public static bool complex_interspecies = false;
public static float humanlike_DNA_from_mother = 0.5f;
public static float bestiality_DNA_inheritance = 0.5f; // human/beast slider
public static float bestial_DNA_from_mother = 1.0f; // mother/father slider
public static bool complex_interspecies = false;
public static int animal_impregnation_chance = 25;
public static int humanlike_impregnation_chance = 25;
public static float interspecies_impregnation_modifier = 0.2f;
public static float humanlike_DNA_from_mother = 0.5f;
public static float bestial_DNA_from_mother = 1.0f;
public static float bestiality_DNA_inheritance = 0.5f;
public static float fertility_endage_male = 1.2f;
public static float fertility_endage_female_humanlike = 0.58f;
public static float fertility_endage_female_animal = 0.96f;
......@@ -135,7 +135,7 @@ namespace rjw
}
else
{
listingStandard.Label(" " + "OffspringIsHuman2".Translate() + ": <--->", -1f, "OffspringIsHuman2_desc".Translate());
listingStandard.Label(" " + "OffspringIsHuman2".Translate() + ": " + "UsesOffspringIsHuman".Translate(), -1f, "OffspringIsHuman2_desc".Translate());
bestiality_DNA_inheritance = listingStandard.Slider(bestiality_DNA_inheritance, 0.0f, 1.0f);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment