mirror of
https://github.com/islehorse/HISP.git
synced 2025-07-18 04:51:32 +12:00
Add Magic Pellets and Droplets
This commit is contained in:
parent
160688bf2d
commit
375731ada9
9 changed files with 129 additions and 19 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue