Healpussy gene and succubus wing retexture

Brought over the healpussy gene from my mod and changed the succubus wings to a lighter version
This commit is contained in:
Shabakur 2022-12-28 10:30:26 +01:00
parent e8f9f94130
commit 0d15873bd2
19 changed files with 557 additions and 1 deletions

View file

@ -102,5 +102,14 @@ namespace RJW_Genes
}
return pawn.genes.HasGene(GeneDefOf.rjw_genes_generous_donor);
}
public static bool isPussyHealer(Pawn pawn)
{
if (pawn.genes == null)
{
return false;
}
return pawn.genes.HasGene(GeneDefOf.rjw_genes_pussyhealer);
}
}
}