~ruther/NosSmooth

ref: 550dc6367d265d82d0ee66ad1f4bd33af6522f36 NosSmooth/Packets/NosSmooth.Packets/Enums/Players/PlayerClass.cs -rw-r--r-- 1.4 KiB
550dc636 — František Boháček chore: update versions 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
54
55
56
57
//
//  PlayerClass.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.Players;

/// <summary>
/// The class of the player.
/// </summary>
public enum PlayerClass
{
    /// <summary>
    /// Adventurer class.
    /// </summary>
    /// <remarks>
    /// After creating a character, this is the first class.
    /// The player can change the class at level 15, job level 20.
    /// </remarks>
    Adventurer = 0,

    /// <summary>
    /// Swordsman class.
    /// </summary>
    /// <remarks>
    /// Primary weapon is a sword, secondary weapon is a crossbow.
    /// </remarks>
    Swordsman = 1,

    /// <summary>
    /// Archer class.
    /// </summary>
    /// <remarks>
    /// Primary weapon is a bow,
    /// secondary weapon is a dagger.
    /// </remarks>
    Archer = 2,

    /// <summary>
    /// Mage class.
    /// </summary>
    /// <remarks>
    /// Primary weapon is a wand,
    /// secondary weapon is magical gun.
    /// </remarks>
    Mage = 3,

    /// <summary>
    /// Martial artist class.
    /// </summary>
    /// <remarks>
    /// Can be created after reaching level 80 on any of the characters.
    /// Then character with that class can be created on the same account.
    /// </remarks>
    MartialArtist = 4
}
Do not follow this link