namespace Omegasis.MoreRain.Framework { /// The mod configuration. internal class ModConfig { /// The chance out of 100 that it will rain tomorrow if it's spring. public int SpringRainChance { get; set; } = 15; /// The chance out of 100 that it will storm tomorrow if it's spring. public int SpringThunderChance { get; set; } = 5; /// The chance out of 100 that it will rain tomorrow if it's summer. public int SummerRainChance { get; set; } = 5; /// The chance out of 100 that it will storm tomorrow if it's summer. public int SummerThunderChance { get; set; } = 10; /// The chance out of 100 that it will rain tomorrow if it's fall. public int FallRainChance { get; set; } = 15; /// The chance out of 100 that it will storm tomorrow if it's fall. public int FallThunderChance { get; set; } = 5; /// The chance out of 100 that it will snow tomorrow if it's winter. public int WinterSnowChance { get; set; } = 15; /// Whether to suppress verbose logging. public bool SuppressLog { get; set; } = true; } }