add stuff to message.cs

This commit is contained in:
SilicaAndPina 2021-01-07 03:10:12 +13:00
parent 3d625459b2
commit 45127335cb
3 changed files with 76 additions and 4 deletions

View file

@ -178,7 +178,38 @@ namespace HISP.Game
public static string ViewAdvancedStats;
public static string HorseNameFormat;
public static string HorseReleasedByFormat;
public static string HorseHandsHightFormat;
public static string HorseExperienceEarnedFormat;
public static string HorseTrainableInFormat;
public static string HorseIsTrainable;
public static string HorseMountButtonFormat;
public static string HorseFeedButtonFormat;
public static string HorseTackButtonFormat;
public static string HorsePetButtonFormat;
public static string HorseProfileButtonFormat;
public static string HorseNoAutoSell;
public static string HorseAutoSellPriceFormat;
public static string HorseAutoSellFormat;
public static string HorseCantAutoSellTacked;
public static string HorseCurrentlyCategoryFormat;
public static string HorseStats;
public static string HorseTacked;
public static string HorseTackFormat;
public static string HorseCompanion;
public static string HorseCompanionFormat;
public static string HorseNoCompanion;
public static string HorseAdvancedStatsFormat;
public static string HorseBreedDetailsFormat;
public static string HorseHeightRangeFormat;
public static string HorsePossibleColorsFormat;
public static string HorseReleaseButton;
public static string HorseOthers;
// Consume

View file

@ -611,6 +611,43 @@ namespace HISP.Server
Messages.ViewBaiscStats = gameData.messages.meta.horse.view_basic_stats;
Messages.ViewAdvancedStats = gameData.messages.meta.horse.view_advanced_stats;
Messages.HorseNameFormat = gameData.messages.meta.horse.horse_inventory.your_horse_format;
Messages.HorseReleasedByFormat = gameData.messages.meta.horse.horse_inventory.released_by_format;
Messages.HorseHandsHightFormat = gameData.messages.meta.horse.horse_inventory.hands_high;
Messages.HorseExperienceEarnedFormat = gameData.messages.meta.horse.horse_inventory.experience;
Messages.HorseTrainableInFormat = gameData.messages.meta.horse.horse_inventory.trainable_in;
Messages.HorseIsTrainable = gameData.messages.meta.horse.horse_inventory.currently_trainable;
Messages.HorseMountButtonFormat = gameData.messages.meta.horse.horse_inventory.mount_button;
Messages.HorseFeedButtonFormat = gameData.messages.meta.horse.horse_inventory.feed_button;
Messages.HorseTackButtonFormat = gameData.messages.meta.horse.horse_inventory.tack_button;
Messages.HorsePetButtonFormat = gameData.messages.meta.horse.horse_inventory.pet_button;
Messages.HorseProfileButtonFormat = gameData.messages.meta.horse.horse_inventory.profile_button;
Messages.HorseNoAutoSell = gameData.messages.meta.horse.horse_inventory.no_auto_sell;
Messages.HorseAutoSellFormat = gameData.messages.meta.horse.horse_inventory.auto_sell_format;
Messages.HorseAutoSellPriceFormat = gameData.messages.meta.horse.horse_inventory.auto_sell;
Messages.HorseCantAutoSellTacked = gameData.messages.meta.horse.horse_inventory.cannot_auto_sell_tacked;
Messages.HorseCurrentlyCategoryFormat = gameData.messages.meta.horse.horse_inventory.marked_as;
Messages.HorseStats = gameData.messages.meta.horse.horse_inventory.horse_stats;
Messages.HorseTacked = gameData.messages.meta.horse.horse_inventory.wearing_tacked;
Messages.HorseTackFormat = gameData.messages.meta.horse.horse_inventory.tacked_format;
Messages.HorseCompanion = gameData.messages.meta.horse.horse_inventory.companion;
Messages.HorseCompanionFormat = gameData.messages.meta.horse.horse_inventory.companion_selected;
Messages.HorseNoCompanion = gameData.messages.meta.horse.horse_inventory.no_companion;
Messages.HorseAdvancedStatsFormat = gameData.messages.meta.horse.horse_inventory.advanced_stats;
Messages.HorseBreedDetailsFormat = gameData.messages.meta.horse.horse_inventory.breed_details;
Messages.HorseHeightRangeFormat = gameData.messages.meta.horse.horse_inventory.height_range;
Messages.HorsePossibleColorsFormat = gameData.messages.meta.horse.horse_inventory.possible_colors;
Messages.HorseReleaseButton = gameData.messages.meta.horse.horse_inventory.release_horse;
Messages.HorseOthers = gameData.messages.meta.horse.horse_inventory.other_horses;
// Libary
Messages.LibaryMainMenu = gameData.messages.meta.libary.main_menu;
Messages.LibaryFindNpc = gameData.messages.meta.libary.find_npc;