implement MULTIHORSES

This commit is contained in:
SilicaAndPina 2021-03-18 14:28:07 +13:00
parent e58835467a
commit 2b9ed092bc
6 changed files with 96 additions and 4 deletions

View file

@ -34,6 +34,11 @@ namespace HISP.Game
public static string EventEndRealTimeRiddle;
public static string EventWonRealTimeRiddleFormat;
// MultiHorses
public static string OtherPlayersHere;
public static string MultiHorseSelectOneToJoinWith;
public static string MultiHorseFormat;
// 2Player
public static string TwoPlayerOtherPlayer;
public static string TwoPlayerPlayerFormat;
@ -118,6 +123,8 @@ namespace HISP.Game
public static string TradeYouSpentMoneyMessageFormat;
public static string TradeYouReceivedMoneyMessageFormat;
public static string TradeRiddenHorse;
public static string TradeYouCantCarryMoreItems;
public static string TradeOtherCantCarryMoreItems;
@ -1057,6 +1064,14 @@ namespace HISP.Game
// Click
public static string NothingInterestingHere;
// MULTIHORSES
public static string FormatMultiHorses(int placing, string horseName, string horseBreed, string swf)
{
return MultiHorseFormat.Replace("%NUMBER%", placing.ToString()).Replace("%HORSENAME%", horseName).Replace("%BREED%", horseBreed).Replace("%SWF%", swf);
}
// 2PLAYER
public static string Format2PlayerRecordLose(string gameTitle)
{
return TwoPlayerRecordedLossFormat.Replace("%GAMETITLE%", gameTitle);