mirror of
https://gitgud.io/c0ffeeeeeeee/rjw-toys-and-masturbation.git
synced 2024-08-15 00:43:44 +00:00
tweaks
This commit is contained in:
parent
8d46599895
commit
3e6eb0b762
2 changed files with 4 additions and 7 deletions
|
@ -9,8 +9,8 @@
|
|||
<stages>
|
||||
<li>
|
||||
<label>Masturbated with toy</label>
|
||||
<description>A step above just using your hand.</description>
|
||||
<baseMoodEffect>4</baseMoodEffect>
|
||||
<description>More fun than just using your hand.</description>
|
||||
<baseMoodEffect>3</baseMoodEffect>
|
||||
</li>
|
||||
</stages>
|
||||
</ThoughtDef>
|
||||
|
|
|
@ -17,11 +17,8 @@ namespace RJW_ToysAndMasturbation
|
|||
|
||||
public static void Postfix(ref JobDriver_Masturbate __instance)
|
||||
{
|
||||
Log.Message("regular masturbation");
|
||||
__instance.satisfaction *= 0.6f;
|
||||
__instance.satisfaction *= 0.4f;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -33,7 +30,7 @@ namespace RJW_ToysAndMasturbation
|
|||
public static void Postfix(ref JobDriver_MasturbateWithToy __instance)
|
||||
{
|
||||
Log.Message("Sextoy satisfaction modifier: " + __instance.dildo.TryGetComp<CompSexToy>().Props.satisfactionModifier);
|
||||
__instance.satisfaction *= 0.6f * __instance.dildo.TryGetComp<CompSexToy>().Props.satisfactionModifier;
|
||||
__instance.satisfaction *= 0.4f * __instance.dildo.TryGetComp<CompSexToy>().Props.satisfactionModifier;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue