1.0 initial commit

This commit is contained in:
leboeuf 2023-01-04 17:00:19 -05:00
commit 1761f03048
34 changed files with 1448 additions and 0 deletions

11
Source/DefOf/GeneDefOf.cs Normal file
View file

@ -0,0 +1,11 @@
using RimWorld;
using Verse;
namespace LewdBiotech
{
[RimWorld.DefOf]
public static class GeneDefOf
{
public static GeneDef LitteredBirths;
}
}

View file

@ -0,0 +1,14 @@
using RimWorld;
using Verse;
namespace LewdBiotech
{
[RimWorld.DefOf]
public static class HediffDefOf
{
// public static HediffDef Infatuo;
// public static HediffDef InfatuoCalibrating;
public static HediffDef OvaryAgitator;
public static HediffDef Bioscaffold;
}
}

View file

@ -0,0 +1,11 @@
using RimWorld;
using Verse;
namespace LewdBiotech
{
[RimWorld.DefOf]
public static class LetterDefOf
{
public static LetterDef AnotherBaby;
}
}