//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic.PlugIns.PeriodicTasks;
///
/// The heykel savasi start configuration.
///
public class HeykelSavasiStartConfiguration : MiniGameStartConfiguration
{
///
/// Gets the default configuration for heykel savasi.
///
public static HeykelSavasiStartConfiguration Default =>
new()
{
PreStartMessageDelay = TimeSpan.Zero,
EntranceOpenedMessage = "TvT Event entrance is open and closes in {0} minute(s).",
EntranceClosedMessage = "TvT Event entrance closed.",
TaskDuration = TimeSpan.FromMinutes(20),
Timetable = new List
{
new(20, 0),
new(22, 0),
},
};
}