This commit is contained in:
@@ -30,6 +30,7 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
Resurrection = new ResurrectionOptions();
|
Resurrection = new ResurrectionOptions();
|
||||||
Spring = new SpringOptions();
|
Spring = new SpringOptions();
|
||||||
Summer = new SummerOptions();
|
Summer = new SummerOptions();
|
||||||
|
CherryBlossom = new CherryBlossomOptions();
|
||||||
Carnival = new CarnivalOptions();
|
Carnival = new CarnivalOptions();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,6 +75,7 @@ public class PluginConfiguration : BasePluginConfiguration
|
|||||||
public ResurrectionOptions Resurrection { get; set; }
|
public ResurrectionOptions Resurrection { get; set; }
|
||||||
public SpringOptions Spring { get; set; }
|
public SpringOptions Spring { get; set; }
|
||||||
public SummerOptions Summer { get; set; }
|
public SummerOptions Summer { get; set; }
|
||||||
|
public CherryBlossomOptions CherryBlossom { get; set; }
|
||||||
public CarnivalOptions Carnival { get; set; }
|
public CarnivalOptions Carnival { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -191,7 +193,6 @@ public class ResurrectionOptions
|
|||||||
|
|
||||||
public class SpringOptions
|
public class SpringOptions
|
||||||
{
|
{
|
||||||
public int PetalCount { get; set; } = 25;
|
|
||||||
public int PollenCount { get; set; } = 15;
|
public int PollenCount { get; set; } = 15;
|
||||||
public int LadybugCount { get; set; } = 5;
|
public int LadybugCount { get; set; } = 5;
|
||||||
public int SunbeamCount { get; set; } = 5;
|
public int SunbeamCount { get; set; } = 5;
|
||||||
@@ -219,3 +220,12 @@ public class CarnivalOptions
|
|||||||
public bool EnableRandomCarnivalMobile { get; set; } = false;
|
public bool EnableRandomCarnivalMobile { get; set; } = false;
|
||||||
public bool EnableDifferentDuration { get; set; } = true;
|
public bool EnableDifferentDuration { get; set; } = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class CherryBlossomOptions
|
||||||
|
{
|
||||||
|
public int PetalCount { get; set; } = 25;
|
||||||
|
public bool EnableCherryBlossom { get; set; } = true;
|
||||||
|
public bool EnableRandomCherryBlossom { get; set; } = true;
|
||||||
|
public bool EnableRandomCherryBlossomMobile { get; set; } = false;
|
||||||
|
public bool EnableDifferentDuration { get; set; } = true;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user