Add FV Geyser script (#748)

* Add FV Geyser script

* remove uneeded include

* const
This commit is contained in:
Aaron Kimbrell
2022-08-25 15:50:13 -05:00
committed by GitHub
parent ceb374591f
commit e707207ffa
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "CppScripts.h"
class FvMaelstromGeyser 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 = 5.5;
const uint32_t m_SkillID = 831;
const uint32_t m_BehaviorID = 15500;
};