mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 15:00:06 +00:00
23 lines
522 B
C++
23 lines
522 B
C++
#pragma once
|
|
|
|
#include "core/Core.hpp"
|
|
#include "Entities.hpp"
|
|
|
|
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(int x, int y, int z, sNPCAppearanceData* npc, sShinyAppearanceData* egg);
|
|
}
|