2023-11-13 20:12:12 +00:00
|
|
|
using Wonderking.Game.Data.Character;
|
|
|
|
using Wonderking.Packets.Outgoing;
|
|
|
|
|
2023-10-12 07:15:34 +00:00
|
|
|
namespace Server.DB.Documents;
|
2023-08-14 20:30:35 +00:00
|
|
|
|
|
|
|
public class Character
|
|
|
|
{
|
2023-08-14 21:05:53 +00:00
|
|
|
public byte ServerId { get; set; }
|
2023-08-14 20:30:35 +00:00
|
|
|
public Guid AccountId { get; set; }
|
2023-10-12 07:15:34 +00:00
|
|
|
public Account Account { get; set; }
|
2023-08-14 20:30:35 +00:00
|
|
|
public Guid Id { get; set; }
|
|
|
|
public ushort MapId { get; set; }
|
|
|
|
public string Name { get; set; }
|
2023-08-14 21:05:53 +00:00
|
|
|
public short LastXCoordinate { get; set; }
|
|
|
|
public short LastYCoordinate { get; set; }
|
|
|
|
public PvPLevel PvPLevel { get; set; }
|
|
|
|
public Gender Gender { get; set; }
|
|
|
|
public long Experience { get; set; }
|
|
|
|
public byte Level { get; set; }
|
2023-11-08 14:33:04 +00:00
|
|
|
public ICollection<InventoryItem> InventoryItems { get; set; }
|
2023-11-13 20:12:12 +00:00
|
|
|
|
|
|
|
public BaseStats BaseStats { get; set; }
|
|
|
|
|
|
|
|
public JobData JobData { get; set; }
|
|
|
|
public int Health { get; set; }
|
|
|
|
public int Mana { get; set; }
|
2023-08-14 20:30:35 +00:00
|
|
|
}
|