2022-11-13 17:37:40 +00:00
|
|
|
|
using RimWorld;
|
|
|
|
|
using Verse;
|
|
|
|
|
|
|
|
|
|
namespace RJW_Genes
|
|
|
|
|
{
|
|
|
|
|
[DefOf]
|
|
|
|
|
public static class GeneDefOf
|
|
|
|
|
{
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_genitalia;
|
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_gender;
|
2022-11-13 17:37:40 +00:00
|
|
|
|
|
2022-11-14 14:55:52 +00:00
|
|
|
|
// Base Genitalia Types
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_human_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_equine_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_demonic_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_dragon_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_slime_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_ovipositor_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_feline_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_canine_genitalia;
|
2022-11-14 14:55:52 +00:00
|
|
|
|
|
|
|
|
|
// Extra Genitalia
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_extra_penis;
|
|
|
|
|
public static readonly GeneDef rjw_genes_no_penis;
|
|
|
|
|
public static readonly GeneDef rjw_genes_extra_vagina;
|
|
|
|
|
public static readonly GeneDef rjw_genes_no_vagina;
|
|
|
|
|
public static readonly GeneDef rjw_genes_extra_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_no_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_extra_anus;
|
|
|
|
|
public static readonly GeneDef rjw_genes_no_anus;
|
|
|
|
|
public static readonly GeneDef rjw_genes_futa;
|
2022-11-15 16:50:25 +00:00
|
|
|
|
|
2022-11-15 20:05:39 +00:00
|
|
|
|
// Genitalia Sizes
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_big_male_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_normal_male_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_small_male_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_loose_female_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_normal_female_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_tight_female_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_big_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_normal_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_small_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_loose_anus;
|
|
|
|
|
public static readonly GeneDef rjw_genes_normal_anus;
|
|
|
|
|
public static readonly GeneDef rjw_genes_tight_anus;
|
2022-11-15 20:05:39 +00:00
|
|
|
|
|
2022-11-20 16:33:50 +00:00
|
|
|
|
// Gender
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_female_only;
|
|
|
|
|
public static readonly GeneDef rjw_genes_male_only;
|
2022-11-20 19:53:05 +00:00
|
|
|
|
|
|
|
|
|
// Breeding
|
|
|
|
|
public static readonly GeneDef rjw_genes_mechbreeder;
|
|
|
|
|
public static readonly GeneDef rjw_genes_insectincubator;
|
|
|
|
|
public static readonly GeneDef rjw_genes_insectbreeder;
|
2022-11-21 16:20:50 +00:00
|
|
|
|
|
|
|
|
|
//Cum
|
|
|
|
|
public static readonly GeneDef rjw_genes_no_cum;
|
|
|
|
|
public static readonly GeneDef rjw_genes_much_cum;
|
|
|
|
|
public static readonly GeneDef rjw_genes_very_much_cum;
|
|
|
|
|
[MayRequire("LustLicentia.RJWLabs")] public static readonly GeneDef rjw_genes_likes_cumflation;
|
|
|
|
|
//[MayRequire("LustLicentia.RJWLabs")] public static readonly GeneDef rjw_genes_cumflation_immunity; //Does currently not work like this
|
|
|
|
|
|
|
|
|
|
//Reproduction
|
|
|
|
|
public static readonly GeneDef rjw_genes_hypersexual;
|
2022-11-13 17:37:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|