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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// Character.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.
using NosSmooth.Game.Data.Chat;
using NosSmooth.Game.Data.Entities;
using NosSmooth.Game.Data.Info;
using NosSmooth.Game.Data.Social;
namespace NosSmooth.Game.Data.Characters;
/// <summary>
/// Represents the client character.
/// </summary>
public class Character : Player
{
/// <summary>
/// Gets or sets the inventory of the character.
/// </summary>
public Inventory.Inventory? Inventory { get; set; }
/// <summary>
/// Get or sets the friends of the character.
/// </summary>
public IReadOnlyList<Friend>? Friends { get; set; }
/// <summary>
/// Gets or sets the skills of the player.
/// </summary>
public Skills? Skills { get; set; }
/// <summary>
/// Gets or sets the group the player is in.
/// </summary>
public Group? Group { get; set; }
/// <summary>
/// Gets or sets the c skill points.
/// </summary>
public int? SkillCp { get; set; }
/// <summary>
/// Gets or sets the job level.
/// </summary>
public Level? JobLevel { get; set; }
/// <summary>
/// Gets or sets the player level.
/// </summary>
public Level? PlayerLevel { get; set; }
/// <summary>
/// Gets or sets the player level.
/// </summary>
public Level? HeroLevelStruct { get; set; }
/// <inheritdoc/>
public override short? HeroLevel
{
get => HeroLevelStruct?.Lvl;
set
{
if (HeroLevelStruct is not null && value is not null)
{
HeroLevelStruct = HeroLevelStruct with
{
Lvl = value.Value
};
}
}
}
/// <summary>
/// Gets or sets the sp points of the player.
/// </summary>
/// <remarks>
/// Resets every day, max 10 000.
/// </remarks>
public int SpPoints { get; set; }
/// <summary>
/// Gets or sets the additional sp points of the player.
/// </summary>
/// <remarks>
/// Used if <see cref="SpPoints"/> are 0. Max 1 000 000.
/// </remarks>
public int AdditionalSpPoints { get; set; }
}