Enhance spring configuration options by adding counts for birds, butterflies, bees, and ladybugs; update UI labels and descriptions for clarity.

This commit is contained in:
CodeDevMLH
2026-02-21 04:31:22 +01:00
parent 4e8a37540f
commit b45ec73a67
2 changed files with 59 additions and 13 deletions

View File

@@ -194,9 +194,13 @@ public class ResurrectionOptions
public class SpringOptions
{
public int PollenCount { get; set; } = 15;
public int LadybugCount { get; set; } = 5;
public int SunbeamCount { get; set; } = 5;
public int BirdCount { get; set; } = 3;
public int ButterflyCount { get; set; } = 2;
public int BeeCount { get; set; } = 1;
public int LadybugCount { get; set; } = 1;
public bool EnableSpring { get; set; } = true;
public bool EnableSpringSunbeams { get; set; } = true;
public bool EnableRandomSpring { get; set; } = true;
public bool EnableRandomSpringMobile { get; set; } = false;
public bool EnableDifferentDuration { get; set; } = true;
@@ -219,6 +223,7 @@ public class CarnivalOptions
public bool EnableRandomCarnival { get; set; } = true;
public bool EnableRandomCarnivalMobile { get; set; } = false;
public bool EnableDifferentDuration { get; set; } = true;
public bool EnableCarnivalSway { get; set; } = true;
}
public class CherryBlossomOptions