mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
using Verse;
|
|
using rjw;
|
|
using RimWorld;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
public class Gene_NoAnus : RJW_Gene
|
|
{
|
|
|
|
internal Hediff removed_anus;
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
|
|
if (removed_anus == null)
|
|
{
|
|
RemoveButStoreAnus();
|
|
}
|
|
}
|
|
|
|
public override void PostAdd()
|
|
{
|
|
base.PostAdd();
|
|
|
|
if (removed_anus == null)
|
|
{
|
|
RemoveButStoreAnus();
|
|
}
|
|
}
|
|
|
|
public override void PostRemove()
|
|
{
|
|
base.PostRemove();
|
|
if(removed_anus != null)
|
|
pawn.health.AddHediff(removed_anus);
|
|
}
|
|
|
|
internal void RemoveButStoreAnus()
|
|
{
|
|
var partBPR = Genital_Helper.get_anusBPR(pawn);
|
|
Hediff anusToRemove = Genital_Helper.get_AllPartsHediffList(pawn).FindLast(x => GenitaliaChanger.IsAnus(x));
|
|
|
|
if(anusToRemove != null)
|
|
{
|
|
removed_anus = anusToRemove;
|
|
pawn.health.RemoveHediff(anusToRemove);
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|