OpenFusion/src/Eggs.hpp

23 lines
501 B
C++
Raw Normal View History

2021-03-17 21:28:24 +00:00
#pragma once
#include "core/Core.hpp"
#include "Entities.hpp"
2021-03-17 21:28:24 +00:00
struct EggType {
int dropCrateId;
int effectId;
int duration;
int regen;
};
namespace Eggs {
extern std::map<std::pair<CNSocket*, int32_t>, time_t> EggBuffs;
extern std::unordered_map<int, EggType> EggTypes;
void init();
/// returns -1 on fail
int eggBuffPlayer(CNSocket* sock, int skillId, int eggId, int duration);
void npcDataToEggData(sNPCAppearanceData* npc, sShinyAppearanceData* egg);
}