Add GF geyser script (#749)

* Add GF geyser script

* remove uneeeded include

* const
This commit is contained in:
Aaron Kimbrell
2022-08-25 15:51:22 -05:00
committed by GitHub
parent e707207ffa
commit 47f0830483
4 changed files with 40 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include "CppScripts.h"
class GfMaelstromGeyser final : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnTimerDone(Entity* self, std::string timerName) override;
private:
const std::string m_StartSkillTimerName = "startSkill";
const float m_StartSkillTimerTime = 2.0;
const std::string m_KillSelfTimerName = "killSelf";
const float m_KillSelfTimerTime = 7.5;
const uint32_t m_SkillID = 607;
const uint32_t m_BehaviorID = 10500;
};