mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Give the ovulation stage the color of the sex drive
This commit is contained in:
parent
dd8ae8a09b
commit
6dc73a848e
4 changed files with 8 additions and 12 deletions
Binary file not shown.
|
@ -66,7 +66,7 @@ namespace RJW_Menstruation
|
|||
const float minmakefilthvalue = 1.0f;
|
||||
const int maxImplantDelayHours = 30 * GenDate.HoursPerDay;
|
||||
const int minImplantAgeHours = 3 * GenDate.HoursPerDay;
|
||||
const float fluidLeakThreshold = 2.5f;
|
||||
const float fluidLeakThreshold = 3.5f;
|
||||
const float pulloutSuccessRate = 0.8f;
|
||||
const float fetishPulloutSuccessModifier = 0.25f;
|
||||
|
||||
|
@ -104,6 +104,7 @@ namespace RJW_Menstruation
|
|||
public static readonly Dictionary<Stage, Texture2D> StageTexture = new Dictionary<Stage, Texture2D>()
|
||||
{
|
||||
{ Stage.Follicular, TextureCache.FollicularTexture },
|
||||
{ Stage.Ovulatory, TextureCache.OvulatoryTexture },
|
||||
{ Stage.Luteal, TextureCache.LutealTexture },
|
||||
{ Stage.Bleeding, TextureCache.BleedingTexture },
|
||||
{ Stage.Pregnant, TextureCache.PregnantTexture },
|
||||
|
|
|
@ -15,13 +15,13 @@ namespace RJW_Menstruation
|
|||
return milktexturecache;
|
||||
}
|
||||
}
|
||||
// Sex drive
|
||||
public static Texture2D SexDriveTexture
|
||||
// Ovulation, sex drive
|
||||
public static Texture2D OvulatoryTexture
|
||||
{
|
||||
get
|
||||
{
|
||||
if (sexdrivetexturecache == null) sexdrivetexturecache = SolidColorMaterials.NewSolidColorTexture(0.686f, 0.062f, 0.698f, 1.0f);
|
||||
return sexdrivetexturecache;
|
||||
if (ovulatorytexturecache == null) ovulatorytexturecache = SolidColorMaterials.NewSolidColorTexture(0.686f, 0.062f, 0.698f, 1.0f);
|
||||
return ovulatorytexturecache;
|
||||
}
|
||||
}
|
||||
// Bleeding, vulnerability
|
||||
|
@ -93,7 +93,7 @@ namespace RJW_Menstruation
|
|||
public static readonly Texture2D GatherCum_Pussy = ContentFinder<Texture2D>.Get("UI/Icon/ToPussy");
|
||||
|
||||
private static Texture2D milktexturecache = SolidColorMaterials.NewSolidColorTexture(0.992f, 1.0f, 0.960f, 1.0f);
|
||||
private static Texture2D sexdrivetexturecache = SolidColorMaterials.NewSolidColorTexture(0.686f, 0.062f, 0.698f, 1.0f);
|
||||
private static Texture2D ovulatorytexturecache = SolidColorMaterials.NewSolidColorTexture(0.686f, 0.062f, 0.698f, 1.0f);
|
||||
private static Texture2D bleedingtexturecache = SolidColorMaterials.NewSolidColorTexture(0.415f, 0.0f, 0.003f, 1.0f);
|
||||
private static Texture2D pregnanttexturecache = SolidColorMaterials.NewSolidColorTexture(0.082f, 0.453f, 0.6f, 1.0f);
|
||||
private static Texture2D recovertexturecache = SolidColorMaterials.NewSolidColorTexture(0.6f, 0.83f, 0.35f, 1.0f);
|
||||
|
@ -101,10 +101,5 @@ namespace RJW_Menstruation
|
|||
private static Texture2D animaltexturecache = SolidColorMaterials.NewSolidColorTexture(0.411f, 0.521f, 0.878f, 1.0f);
|
||||
private static Texture2D lutealtexturecache = SolidColorMaterials.NewSolidColorTexture(0.843f, 0.474f, 0.6f, 1.0f);
|
||||
private static Texture2D whoredtexturecache = SolidColorMaterials.NewSolidColorTexture(0.7f, 0.7f, 0.0f, 1.0f);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -433,7 +433,7 @@ namespace RJW_Menstruation
|
|||
float statvalue;
|
||||
const float height = 24f;
|
||||
statvalue = pawn.GetStatValue(xxx.sex_drive_stat);
|
||||
FillableBarLabeled(lineRect, " " + xxx.sex_drive_stat.LabelCap.CapitalizeFirst() + " " + statvalue.ToStringPercent(), statvalue / 2, TextureCache.SexDriveTexture, Texture2D.blackTexture, xxx.sex_drive_stat.description);
|
||||
FillableBarLabeled(lineRect, " " + xxx.sex_drive_stat.LabelCap.CapitalizeFirst() + " " + statvalue.ToStringPercent(), statvalue / 2, TextureCache.OvulatoryTexture, Texture2D.blackTexture, xxx.sex_drive_stat.description);
|
||||
lineRect.y += height;
|
||||
|
||||
statvalue = pawn.GetStatValue(xxx.vulnerability_stat);
|
||||
|
|
Loading…
Reference in a new issue