mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Move gather cum gizmo text to this project to account for sexperience removing it
This commit is contained in:
parent
c082c70e68
commit
e09c4aeb97
7 changed files with 7 additions and 3 deletions
Binary file not shown.
|
@ -124,6 +124,7 @@
|
|||
<FertilityDesc>Implantation chance of fertilized eggs. Chance of fertilization this hour: {0}%</FertilityDesc>
|
||||
<Button_ResetToDefault>Reset to default</Button_ResetToDefault>
|
||||
|
||||
<Gizmo_GatherCum>Gather cum</Gizmo_GatherCum>
|
||||
<FloatMenu_CleanSelf>Vaginal washing</FloatMenu_CleanSelf>
|
||||
|
||||
<CustomHybrid_List_Title>Custom Hybrid Editor</CustomHybrid_List_Title>
|
||||
|
|
Binary file not shown.
|
@ -130,6 +130,7 @@ namespace RJW_Menstruation
|
|||
public static readonly string EstimatedEggLifespan = "EstimatedEggLifespan".Translate();
|
||||
public static string FertilityDesc(string value) => "FertilityDesc".Translate(value);
|
||||
|
||||
public static readonly string Gizmo_GatherCum = "Gizmo_GatherCum".Translate();
|
||||
public static readonly string FloatMenu_CleanSelf = "FloatMenu_CleanSelf".Translate();
|
||||
|
||||
public static readonly string CustomHybrid_List_Title = "CustomHybrid_List_Title".Translate();
|
||||
|
|
|
@ -25,8 +25,8 @@ namespace RJW_Menstruation.Sexperience
|
|||
private static Gizmo CreateGizmo_GatherCum(HediffComp_Menstruation comp)
|
||||
{
|
||||
Texture2D icon = TextureCache.GatherCum_Bucket;
|
||||
string label = Keyed.RS_GatherCum;
|
||||
string description = Keyed.RS_GatherCum;
|
||||
string label = Translations.Gizmo_GatherCum;
|
||||
string description = Translations.Gizmo_GatherCum;
|
||||
Gizmo gizmo = new Command_Toggle
|
||||
{
|
||||
defaultLabel = label,
|
||||
|
|
|
@ -40,7 +40,7 @@ namespace RJW_Menstruation.Sexperience
|
|||
|
||||
public static FloatMenuOption MakeMenu(Pawn pawn, LocalTargetInfo target)
|
||||
{
|
||||
FloatMenuOption option = FloatMenuUtility.DecoratePrioritizedTask(new FloatMenuOption(Keyed.RS_GatherCum, delegate ()
|
||||
FloatMenuOption option = FloatMenuUtility.DecoratePrioritizedTask(new FloatMenuOption(Translations.Gizmo_GatherCum, delegate ()
|
||||
{
|
||||
pawn.jobs.TryTakeOrderedJob(new Verse.AI.Job(VariousDefOf.VaginaWashingwithBucket, null, target, target.Cell));
|
||||
}, MenuOptionPriority.Low), pawn, target);
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
Version 1.0.6.5
|
||||
- Handle climacteric induced ovulators a bit better.
|
||||
- Compatibility update for Sexperience 1.0.4.2
|
||||
- Add a brief description when mousing over the current phase in the womb dialog.
|
||||
- Add an ovary image to the womb status dialog (but not the little icon) when ovulation is imminent or occuring.
|
||||
- Redone algorithm for paternity selecton upon an egg being fertilized, to make for a fairer contest when there is lots of sperm from multiple people.
|
||||
|
||||
Version 1.0.6.4
|
||||
- Fix a bug with pawns not being generated.
|
||||
|
|
Loading…
Reference in a new issue