2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "CppScripts.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include <map>
|
2023-05-02 22:39:21 +00:00
|
|
|
#include "ePlayerFlag.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-05-02 22:39:21 +00:00
|
|
|
static std::map<std::u16string, ePlayerFlag> ElementFlags = {
|
|
|
|
{u"earth", ePlayerFlag::NJ_EARTH_SPINJITZU},
|
|
|
|
{u"lightning", ePlayerFlag::NJ_LIGHTNING_SPINJITZU},
|
|
|
|
{u"ice", ePlayerFlag::NJ_ICE_SPINJITZU},
|
|
|
|
{u"fire", ePlayerFlag::NJ_FIRE_SPINJITZU}
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static std::map<std::u16string, uint32_t> ElementMissions = {
|
|
|
|
{u"earth", 1796},
|
|
|
|
{u"lightning", 1952},
|
|
|
|
{u"ice", 1959},
|
|
|
|
{u"fire", 1962},
|
|
|
|
};
|
|
|
|
|
2023-10-09 20:31:25 +00:00
|
|
|
class NjNPCMissionSpinjitzuServer : virtual public CppScripts::Script {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
|
|
|
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
|
|
|
|
private:
|
|
|
|
const std::u16string ElementVariable = u"element";
|
|
|
|
};
|