RJW-Sexperience/RJWSexperience/IdeologyAddon/Ideology/Patches/Sexperience_Patch.cs

35 lines
1.1 KiB
C#
Raw Normal View History

2022-02-25 14:15:48 +00:00
using RimWorld;
2021-09-24 15:14:02 +00:00
using rjw;
using Verse;
2022-06-20 04:51:35 +00:00
namespace RJWSexperience.Ideology.Patches
2021-09-24 15:14:02 +00:00
{
2022-02-25 14:15:48 +00:00
public static class Sexperience_Patch_ThrowVirginHIstoryEvent
{
public static void Postfix(Pawn pawn, Pawn partner, SexProps props, int degree)
{
string tag = "";
if (props.isRape)
{
if (pawn == props.pawn && props.isRapist) tag += HETag.Rape;
else tag += HETag.BeenRaped;
}
if (!pawn.relations.DirectRelationExists(PawnRelationDefOf.Spouse, partner))
{
tag += HETag.NotSpouse;
}
2021-09-24 15:14:02 +00:00
2022-02-25 14:15:48 +00:00
if (pawn.gender == Gender.Male)
{
if (degree > 1) Find.HistoryEventsManager.RecordEvent(VariousDefOf.Virgin_TakenM.CreateTaggedEvent(pawn, tag + HETag.Gender(pawn), partner));
Find.HistoryEventsManager.RecordEvent(VariousDefOf.Virgin_TookM.CreateTaggedEvent(partner, tag + HETag.Gender(pawn), pawn));
2022-02-25 14:15:48 +00:00
}
else
{
if (degree > 1) Find.HistoryEventsManager.RecordEvent(VariousDefOf.Virgin_TakenF.CreateTaggedEvent(pawn, tag + HETag.Gender(pawn), partner));
Find.HistoryEventsManager.RecordEvent(VariousDefOf.Virgin_TookF.CreateTaggedEvent(partner, tag + HETag.Gender(pawn), pawn));
2022-02-25 14:15:48 +00:00
}
}
}
2021-09-24 15:14:02 +00:00
}