namespace Omegasis.HappyBirthday.Framework
{
/// The mod configuration.
public class ModConfig
{
/// The key which shows the menu.
public string KeyBinding { get; set; } = "O";
///
/// The minimum amount of friendship needed to get a birthday gift.
///
public int minNeutralFriendshipGiftLevel = 3;
///
/// The max amount of friendship needed to get a neutral gift from an npc.
///
public int maxNeutralFriendshipGiftLevel = 4;
///
///The minimum amount of friendship to get a like gift from an npc.
///
public int minLikeFriendshipLevel = 5;
///
/// The max amount of friendship needed to get a liked gift from an npc.
///
public int maxLikeFriendshipLevel = 6;
///
/// The minimum amount of friendship needed to get a loved gift from an npc.
///
public int minLoveFriendshipLevel = 7;
///
/// The minimum amount of friendship needed to get a happy birthday greeting from an npc.
///
public int minimumFriendshipLevelForBirthdayWish=2;
///
/// Handles different translations of files.
///
public TranslationInfo translationInfo;
///
/// Whether or not to load from the old BirthdayGifts.xnb located in StardewValley/Data or from the new BirthdayGifts.json located in the mod directory.
///
public bool useLegacyBirthdayFiles;
///
/// Constructor.
///
public ModConfig()
{
this.translationInfo = new TranslationInfo();
this.useLegacyBirthdayFiles = true;
}
}
}