mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
79 lines
1.7 KiB
C#
79 lines
1.7 KiB
C#
|
using RimWorld;
|
|||
|
using Verse;
|
|||
|
|
|||
|
namespace RJWSexperience
|
|||
|
{
|
|||
|
public static class RsDefOf
|
|||
|
{
|
|||
|
[DefOf]
|
|||
|
public static class Record
|
|||
|
{
|
|||
|
public static readonly RecordDef NumofEatenCum;
|
|||
|
public static readonly RecordDef AmountofEatenCum;
|
|||
|
public static readonly RecordDef Lust;
|
|||
|
public static readonly RecordDef VaginalSexCount;
|
|||
|
public static readonly RecordDef AnalSexCount;
|
|||
|
public static readonly RecordDef OralSexCount;
|
|||
|
public static readonly RecordDef BlowjobCount;
|
|||
|
public static readonly RecordDef CunnilingusCount;
|
|||
|
public static readonly RecordDef GenitalCaressCount;
|
|||
|
public static readonly RecordDef HandjobCount;
|
|||
|
public static readonly RecordDef FingeringCount;
|
|||
|
public static readonly RecordDef FootjobCount;
|
|||
|
public static readonly RecordDef MiscSexualBehaviorCount;
|
|||
|
public static readonly RecordDef SexPartnerCount;
|
|||
|
public static readonly RecordDef OrgasmCount;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Skill
|
|||
|
{
|
|||
|
public static readonly SkillDef Sex;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Thing
|
|||
|
{
|
|||
|
public static readonly ThingDef GatheredCum;
|
|||
|
public static readonly ThingDef FilthCum;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Chemical
|
|||
|
{
|
|||
|
public static readonly ChemicalDef Cum;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Need
|
|||
|
{
|
|||
|
public static readonly NeedDef Chemical_Cum;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Trait
|
|||
|
{
|
|||
|
public static readonly TraitDef Virgin;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class KeyBinding
|
|||
|
{
|
|||
|
public static readonly KeyBindingDef OpenSexStatistics;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Stat
|
|||
|
{
|
|||
|
public static readonly StatDef SexAbility;
|
|||
|
}
|
|||
|
|
|||
|
[DefOf]
|
|||
|
public static class Hediff
|
|||
|
{
|
|||
|
public static readonly HediffDef CumAddiction;
|
|||
|
public static readonly HediffDef CumTolerance;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|