Add Groomers

This commit is contained in:
SilicaAndPina 2021-02-13 13:05:34 +13:00
parent dfb177b3d1
commit 62a2e64ea5
6 changed files with 153 additions and 5 deletions

View file

@ -439,6 +439,9 @@ namespace HISP.Game
public static string GroomerBestToHisAbilitiesFormat;
public static string GroomerCannotAffordMessage;
public static string GroomerBestToHisAbilitiesALL;
public static string GroomerDontNeed;
public static string GroomerHorseCurrentlyAtFormat;
public static string GroomerApplyServiceFormat;
public static string GroomerApplyServiceForAllFormat;
@ -872,9 +875,9 @@ namespace HISP.Game
{
return GroomerHorseCurrentlyAtFormat.Replace("%HORSENAME%", horseName).Replace("%TOTAL%", currentGroom.ToString()).Replace("%MAX%", maxGroom.ToString());
}
public static string FormatHorseGroomedToBestAbilities(string breedName)
public static string FormatHorseGroomedToBestAbilities(string horseName)
{
return GroomerBestToHisAbilitiesFormat.Replace("%HORSEBREED%", breedName);
return GroomerBestToHisAbilitiesFormat.Replace("%HORSENAME%", horseName);
}
public static string FormatBookReadMeta(string author, string title, string bookText)