mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
37 lines
341 B
C++
37 lines
341 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace nejlika
|
|
{
|
|
|
|
enum class ModifierType : uint8_t
|
|
{
|
|
Health,
|
|
Armor,
|
|
Imagination,
|
|
|
|
Offensive,
|
|
Defensive,
|
|
|
|
Slashing,
|
|
Piercing,
|
|
Bludgeoning,
|
|
|
|
Fire,
|
|
Cold,
|
|
Lightning,
|
|
Corruption,
|
|
|
|
Psychic,
|
|
|
|
Damage,
|
|
|
|
Invalid
|
|
};
|
|
|
|
const std::string& GetModifierTypeColor(ModifierType type);
|
|
|
|
}
|