Move gather cum gizmo text to this project to account for sexperience removing it

This commit is contained in:
lutepickle 2022-06-02 12:36:54 -07:00
parent b406656659
commit 7c505728de
6 changed files with 5 additions and 3 deletions

Binary file not shown.

View file

@ -112,6 +112,7 @@
<FertilityDesc>Chance of fertilization in the next hour: {0}%&#10;The chance of pregnancy of a fertilized egg.&#10;The white overlay indicates fertilization chance of sperm in womb.</FertilityDesc> <FertilityDesc>Chance of fertilization in the next hour: {0}%&#10;The chance of pregnancy of a fertilized egg.&#10;The white overlay indicates fertilization chance of sperm in womb.</FertilityDesc>
<Button_ResetToDefault>Reset to default</Button_ResetToDefault> <Button_ResetToDefault>Reset to default</Button_ResetToDefault>
<Gizmo_GatherCum>Gather cum</Gizmo_GatherCum>
<FloatMenu_CleanSelf>Vaginal washing</FloatMenu_CleanSelf> <FloatMenu_CleanSelf>Vaginal washing</FloatMenu_CleanSelf>
<CustomHybrid_List_Title>Custom Hybrid Editor</CustomHybrid_List_Title> <CustomHybrid_List_Title>Custom Hybrid Editor</CustomHybrid_List_Title>

View file

@ -120,6 +120,7 @@ namespace RJW_Menstruation
public static readonly string EstimatedEggLifespan = "EstimatedEggLifespan".Translate(); public static readonly string EstimatedEggLifespan = "EstimatedEggLifespan".Translate();
public static string FertilityDesc(string value) => "FertilityDesc".Translate(value); 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 FloatMenu_CleanSelf = "FloatMenu_CleanSelf".Translate();
public static readonly string CustomHybrid_List_Title = "CustomHybrid_List_Title".Translate(); public static readonly string CustomHybrid_List_Title = "CustomHybrid_List_Title".Translate();

View file

@ -25,8 +25,8 @@ namespace RJW_Menstruation.Sexperience
private static Gizmo CreateGizmo_GatherCum(HediffComp_Menstruation comp) private static Gizmo CreateGizmo_GatherCum(HediffComp_Menstruation comp)
{ {
Texture2D icon = TextureCache.GatherCum_Bucket; Texture2D icon = TextureCache.GatherCum_Bucket;
string label = Keyed.RS_GatherCum; string label = Translations.Gizmo_GatherCum;
string description = Keyed.RS_GatherCum; string description = Translations.Gizmo_GatherCum;
Gizmo gizmo = new Command_Toggle Gizmo gizmo = new Command_Toggle
{ {
defaultLabel = label, defaultLabel = label,

View file

@ -40,7 +40,7 @@ namespace RJW_Menstruation.Sexperience
public static FloatMenuOption MakeMenu(Pawn pawn, LocalTargetInfo target) 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)); pawn.jobs.TryTakeOrderedJob(new Verse.AI.Job(VariousDefOf.VaginaWashingwithBucket, null, target, target.Cell));
}, MenuOptionPriority.Low), pawn, target); }, MenuOptionPriority.Low), pawn, target);