mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
79 lines
3.2 KiB
C#
79 lines
3.2 KiB
C#
using Verse;
|
|
using rjw;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
public class SizeAdjuster
|
|
{
|
|
|
|
/// <summary>
|
|
/// Re-Rolls the sizes for all vaginas of the pawn to be between lower and upper limit.
|
|
/// </summary>
|
|
/// <param name="pawn">The pawn whos vaginas are rerolled</param>
|
|
/// <param name="lowerLimit">The minimum severity for the vagina</param>
|
|
/// <param name="upperLimit">The maximum severity for the vagina</param>
|
|
public static void AdjustAllVaginaSizes(Pawn pawn, float lowerLimit = 0.0f, float upperLimit = 1.0f){
|
|
List<Hediff> AllVaginas = Genital_Helper.get_AllPartsHediffList(pawn).FindAll(x => Genital_Helper.is_vagina(x));
|
|
ResizeAll(AllVaginas, lowerLimit, upperLimit);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Re-Rolls the sizes for all anus of the pawn to be between lower and upper limit.
|
|
/// </summary>
|
|
/// <param name="pawn">The pawn whos anus are rerolled</param>
|
|
/// <param name="lowerLimit">The minimum severity for the vagina</param>
|
|
/// <param name="upperLimit">The maximum severity for the vagina</param>
|
|
public static void AdjustAllAnusSizes(Pawn pawn, float lowerLimit = 0.0f, float upperLimit = 1.0f)
|
|
{
|
|
List<Hediff> AllAnus = Genital_Helper.get_AllPartsHediffList(pawn).FindAll(x => GenitaliaChanger.IsAnus(x));
|
|
ResizeAll(AllAnus, lowerLimit, upperLimit);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Re-Rolls the sizes for all penis of the pawn to be between lower and upper limit.
|
|
/// </summary>
|
|
/// <param name="pawn">The pawn whos penisses are rerolled</param>
|
|
/// <param name="lowerLimit">The minimum severity for the vagina</param>
|
|
/// <param name="upperLimit">The maximum severity for the vagina</param>
|
|
public static void AdjustAllPenisSizes(Pawn pawn, float lowerLimit = 0.0f, float upperLimit = 1.0f)
|
|
{
|
|
List<Hediff> AllPenisses = Genital_Helper.get_AllPartsHediffList(pawn).FindAll(x => Genital_Helper.is_penis(x));
|
|
ResizeAll(AllPenisses, lowerLimit, upperLimit);
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Re-Rolls the sizes for all breasts of the pawn to be between lower and upper limit.
|
|
/// </summary>
|
|
/// <param name="pawn">The pawn whos breasts are rerolled</param>
|
|
/// <param name="lowerLimit">The minimum severity for the vagina</param>
|
|
/// <param name="upperLimit">The maximum severity for the vagina</param>
|
|
public static void AdjustAllBreastSizes(Pawn pawn, float lowerLimit = 0.0f, float upperLimit = 1.0f)
|
|
{
|
|
|
|
List<Hediff> AllBreasts = Genital_Helper.get_AllPartsHediffList(pawn).FindAll(x => x.def.defName.Contains("breasts"));
|
|
ResizeAll(AllBreasts,lowerLimit,upperLimit);
|
|
}
|
|
|
|
|
|
private static void ResizeAll(IEnumerable<Hediff> toResize,float lowerLimit, float upperLimit)
|
|
{
|
|
foreach (var hediff in toResize)
|
|
{
|
|
Random rnd = new Random();
|
|
float size = (float)(rnd.NextDouble() * (upperLimit - lowerLimit) + lowerLimit);
|
|
hediff.Severity = size;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|