2022-11-13 17:37:40 +00:00
|
|
|
|
using RimWorld;
|
|
|
|
|
using Verse;
|
|
|
|
|
|
|
|
|
|
namespace RJW_Genes
|
|
|
|
|
{
|
|
|
|
|
[DefOf]
|
|
|
|
|
public static class GeneDefOf
|
|
|
|
|
{
|
2022-11-26 20:32:32 +00:00
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_genitalia_type;
|
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_genitalia_size;
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_gender;
|
2022-11-26 20:32:32 +00:00
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_breeding;
|
2022-12-19 10:25:27 +00:00
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_damage;
|
|
|
|
|
public static readonly GeneCategoryDef rjw_genes_special;
|
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_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_small_male_genitalia;
|
|
|
|
|
public static readonly GeneDef rjw_genes_loose_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_small_breasts;
|
|
|
|
|
public static readonly GeneDef rjw_genes_loose_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;
|
2023-01-15 07:07:51 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_zoophile;
|
2022-11-21 16:20:50 +00:00
|
|
|
|
|
2022-11-26 20:32:32 +00:00
|
|
|
|
// Cum
|
2022-11-21 16:20:50 +00:00
|
|
|
|
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;
|
2022-11-27 07:36:44 +00:00
|
|
|
|
[MayRequire("LustLicentia.RJWLabs")] public static readonly GeneDef rjw_genes_cumflation_immunity;
|
|
|
|
|
[MayRequire("LustLicentia.RJWLabs")] public static readonly GeneDef rjw_genes_generous_donor;
|
|
|
|
|
|
2022-11-26 20:32:32 +00:00
|
|
|
|
// Reproduction
|
2022-11-21 16:20:50 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_hypersexual;
|
2022-11-26 20:32:32 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_rapist;
|
2023-01-15 07:07:51 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_homosexual;
|
|
|
|
|
public static readonly GeneDef rjw_genes_bisexual;
|
2022-11-26 20:32:32 +00:00
|
|
|
|
|
|
|
|
|
// Damage & Side Effects
|
|
|
|
|
[MayRequire("LustLicentia.RJWLabs")] public static readonly GeneDef rjw_genes_elasticity;
|
2023-01-06 15:23:13 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_unbreakable;
|
2022-12-19 10:25:27 +00:00
|
|
|
|
|
|
|
|
|
// Special
|
|
|
|
|
public static readonly GeneDef rjw_genes_orgasm_rush;
|
2023-01-06 16:08:22 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_youth_fountain;
|
|
|
|
|
public static readonly GeneDef rjw_genes_sex_age_drain;
|
2022-12-25 11:38:05 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_aphrodisiac_pheromones;
|
2022-12-27 12:48:38 +00:00
|
|
|
|
|
|
|
|
|
// LifeForce
|
|
|
|
|
public static readonly GeneDef rjw_genes_lifeforce;
|
2023-01-15 21:33:39 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_lifeforce_drain;
|
2022-12-28 09:30:26 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_pussyhealer;
|
2022-12-28 12:37:27 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_vaginal_absorber;
|
|
|
|
|
public static readonly GeneDef rjw_genes_anal_absorber;
|
2022-12-31 10:42:00 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_drainer;
|
2022-12-29 15:08:22 +00:00
|
|
|
|
|
|
|
|
|
// Cosmetic
|
|
|
|
|
public static readonly GeneDef rjw_genes_succubus_tail;
|
2023-01-15 21:33:39 +00:00
|
|
|
|
public static readonly GeneDef rjw_genes_succubus_wings;
|
2022-12-19 10:25:27 +00:00
|
|
|
|
|
2023-01-15 21:33:39 +00:00
|
|
|
|
// Others & Non-Genes
|
2022-11-13 17:37:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|