Files
AdamuSw/src/GameLogic/PlugIns/PeriodicTasks/HeykelSavasiStartConfiguration.cs
Acentech Dev d41d46f24f chore(hs): rename event display name 'Heykel Savasi' -> 'TvT Event' (strings only)
Display strings/messages/designations changed everywhere (Name, entrance
messages, NPC designation, HUD title). Code identifiers/namespaces/commands
unchanged. DB rows updated separately.
2026-07-21 13:01:36 +03:00

29 lines
983 B
C#

// <copyright file="HeykelSavasiStartConfiguration.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.GameLogic.PlugIns.PeriodicTasks;
/// <summary>
/// The heykel savasi start configuration.
/// </summary>
public class HeykelSavasiStartConfiguration : MiniGameStartConfiguration
{
/// <summary>
/// Gets the default configuration for heykel savasi.
/// </summary>
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<TimeOnly>
{
new(20, 0),
new(22, 0),
},
};
}