Add horse games

This commit is contained in:
SilicaAndPina 2021-02-17 01:02:40 +13:00
parent 35afd32d6c
commit 83445971e0
4 changed files with 32 additions and 0 deletions

View file

@ -16,6 +16,10 @@ namespace HISP.Game
// Click
public static string PlayerHereFormat;
// Horse Games
public static string HorseGamesSelectHorse;
public static string HorseGamesHorseEntryFormat;
// City Hall
public static string CityHallMenu;
public static string CityHallMailSendMeta;
@ -792,6 +796,10 @@ namespace HISP.Game
// Click
public static string NothingInterestingHere;
public static string FormatHorseGamesEntry(int placing, string horseName, string Swf)
{
return HorseGamesHorseEntryFormat.Replace("%PLACING%", placing.ToString()).Replace("%HORSENAME%", horseName).Replace("%SWF%", Swf);
}
public static string FormatCityHallCantFindPlayerMessage(string playerName)
{
return CityHallCantFindPlayerMessageFormat.Replace("%PLAYERNAME%", playerName);