2022-07-13 12:13:21 +00:00
|
|
|
|
using Verse;
|
|
|
|
|
using HarmonyLib;
|
|
|
|
|
using rjw;
|
|
|
|
|
using System;
|
|
|
|
|
//using Multiplayer.API;
|
|
|
|
|
|
|
|
|
|
namespace rjwcum
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///apply cum to pawn after vanilla sex
|
|
|
|
|
///</summary>
|
|
|
|
|
[HarmonyPatch(typeof(SexUtility), "Aftersex")]
|
|
|
|
|
[StaticConstructorOnStartup]
|
|
|
|
|
static class Aftersex_Cum_Apply
|
|
|
|
|
{
|
|
|
|
|
[HarmonyPostfix]
|
|
|
|
|
private static void Aftersex_Cum_Patch(SexProps props)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (props.isCoreLovin)
|
|
|
|
|
if (!props.usedCondom)
|
|
|
|
|
{
|
|
|
|
|
CumHelper.calculateAndApplyCum(props);
|
|
|
|
|
//SexUtility.CumFilthGenerator(props.pawn);
|
|
|
|
|
//SexUtility.CumFilthGenerator(props.partner);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Log.Error(e.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///<summary>
|
|
|
|
|
///apply cum to pawn after rjw orgasm
|
|
|
|
|
///</summary>
|
|
|
|
|
[HarmonyPatch(typeof(JobDriver_Sex), "Orgasm")]
|
|
|
|
|
[StaticConstructorOnStartup]
|
|
|
|
|
static class Orgasm_Cum_Apply
|
|
|
|
|
{
|
2022-07-28 06:59:23 +00:00
|
|
|
|
[HarmonyPrefix]
|
|
|
|
|
private static bool Orgasm_Cum_Patch(JobDriver_Sex __instance)
|
2022-07-13 12:13:21 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (__instance.sex_ticks > __instance.orgasmstick) //~3s at speed 1
|
|
|
|
|
{
|
2022-07-28 06:59:23 +00:00
|
|
|
|
return true;
|
2022-07-13 12:13:21 +00:00
|
|
|
|
}
|
|
|
|
|
var props = __instance.Sexprops;
|
|
|
|
|
if (!props.usedCondom)
|
|
|
|
|
{
|
|
|
|
|
CumHelper.calculateAndApplyCum(props);
|
|
|
|
|
//SexUtility.CumFilthGenerator(props.pawn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Log.Error(e.ToString());
|
|
|
|
|
}
|
2022-07-28 06:59:23 +00:00
|
|
|
|
return true;
|
2022-07-13 12:13:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|