~ruther/NosSmooth

ref: c1f31ab17d05b3035b5f362e8e0ede56be9d1b40 NosSmooth/Packets/NosSmooth.Packets/Enums/Mates/PartnerSkillRank.cs -rw-r--r-- 944 bytes
c1f31ab1 — Rutherther tests: add basic inventory, group, charater tests 2 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
//  PartnerSkillRank.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.Packets.Enums.Mates;

/// <summary>
/// Ranks of partner sp skills.
/// </summary>
public enum PartnerSkillRank
{
    /// <summary>
    /// The skills rank must be revealed first.
    /// </summary>
    NotIdentifiedYet = 0,

    /// <summary>
    /// Worst skill rank.
    /// </summary>
    F = 1,

    /// <summary>
    /// E skill rank.
    /// </summary>
    E = 2,

    /// <summary>
    /// D skill rank.
    /// </summary>
    D = 3,

    /// <summary>
    /// C skill rank.
    /// </summary>
    C = 4,

    /// <summary>
    /// B skill rank.
    /// </summary>
    B = 5,

    /// <summary>
    /// A skill rank.
    /// </summary>
    A = 6,

    /// <summary>
    /// Best skill rank.
    /// </summary>
    S = 7
}
Do not follow this link