~ruther/NosSmooth

ref: 9dc5919c11aa1cbf149906ca54e67aba4d239a42 NosSmooth/Core/NosSmooth.Game/Data/Act4/Act4Raid.cs -rw-r--r-- 711 bytes
9dc5919c — Rutherther fix(game): make reputation icon short 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
//  Act4Raid.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.Game.Data.Act4;

/// <summary>
/// Represents type of raid in act4.
/// </summary>
public enum Act4Raid
{
    /// <summary>
    /// Fire element raid with the boss Morcos.
    /// </summary>
    Morcos,

    /// <summary>
    /// Shadow element raid with the boss Hatus.
    /// </summary>
    Hatus,

    /// <summary>
    /// Water element raid with the boss Calvina.
    /// </summary>
    Calvina,

    /// <summary>
    /// Light element raid with the boss Berios.
    /// </summary>
    Berios
}
Do not follow this link