feat: add armor item

This commit is contained in:
k0t9i
2023-01-24 17:23:53 +04:00
parent 43f38c7a57
commit 2b94f823f2
15 changed files with 460 additions and 68 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class ArmorType : uint8_t
{
none = 0,
light,
heavy,
robe
};
}

View File

@@ -0,0 +1,17 @@
#pragma once
#include <cstdint>
namespace L2Bot::Domain::Enums
{
enum class CrystalType : int8_t
{
none = -1,
ng,
d,
c,
b,
a,
s
};
}