Add Magic Pellets and Droplets

This commit is contained in:
SilicaAndPina 2021-04-21 21:23:02 +12:00
parent 160688bf2d
commit 375731ada9
9 changed files with 129 additions and 19 deletions

View file

@ -810,6 +810,11 @@ namespace HISP.Game
public static string HorseNeighsThanks;
public static string HorseCouldNotFinish;
public static string HorseFeedPersonalityIncreased;
public static string HorseFeedInteligenceIncreased;
public static string HorseFeedMagicBeanFormat;
public static string HorseFeedMagicDropletFormat;
// Tack horse menu
public static string HorseTackedAsFollowsFormat;
public static string HorseUnEquipSaddleFormat;
@ -1132,6 +1137,7 @@ namespace HISP.Game
// Throwables
public static string FormatModSplatterBallAwardedOther(string username)
{
@ -1604,7 +1610,14 @@ namespace HISP.Game
{
return TrainedInStatFormat.Replace("%HORSENAME%", horseName).Replace("%STAT%", stat);
}
public static string FormatHorseFeedMagicDropletUsed(string oldColor, string newColor)
{
return HorseFeedMagicDropletFormat.Replace("%PREVCOLOR%", oldColor).Replace("%NEWCOLOR%", newColor);
}
public static string FormatHorseFeedMagicBeanUsed(double oldH, double newH)
{
return HorseFeedMagicBeanFormat.Replace("%PREVHANDS%", oldH.ToString(CultureInfo.InvariantCulture)).Replace("%NEWHANDS%", newH.ToString(CultureInfo.InvariantCulture));
}
public static string FormatSantaOpenPresent(string itemName)
{
return SantaItemOpenedFormat.Replace("%ITEM%", itemName);