mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
bd7f532a28
* Imaginite Pack now works * Remove unused params * Address issues * Add TeslaPack script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
15 lines
314 B
C++
15 lines
314 B
C++
#ifndef __TESLAPACK__H__
|
|
#define __TESLAPACK__H__
|
|
|
|
#include "CoilBackpackBase.h"
|
|
|
|
class TeslaPack : public CoilBackpackBase {
|
|
public:
|
|
TeslaPack() : CoilBackpackBase(skillId, behaviorId) {};
|
|
private:
|
|
static const uint32_t skillId = 1001;
|
|
static const uint32_t behaviorId = 20917;
|
|
};
|
|
|
|
#endif //!__TESLAPACK__H__
|