mirror of
https://github.com/amevarashi/RJW-Sexperience.git
synced 2024-08-14 23:54:08 +00:00
Change VariousDefOf to RsDefOf
Fix some IDE messages
This commit is contained in:
parent
8a48d2e463
commit
67c2328ad6
23 changed files with 196 additions and 162 deletions
78
Source/RJWSexperience/RsDefOf.cs
Normal file
78
Source/RJWSexperience/RsDefOf.cs
Normal file
|
@ -0,0 +1,78 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue