Display strings/messages/designations changed everywhere (Name, entrance messages, NPC designation, HUD title). Code identifiers/namespaces/commands unchanged. DB rows updated separately.
29 lines
983 B
C#
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),
|
|
},
|
|
};
|
|
}
|