2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Behavior.h"
|
|
|
|
|
|
|
|
class ApplyBuffBehavior final : public Behavior
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int32_t m_BuffId;
|
|
|
|
float m_Duration;
|
|
|
|
bool addImmunity;
|
|
|
|
bool cancelOnDamaged;
|
|
|
|
bool cancelOnDeath;
|
|
|
|
bool cancelOnLogout;
|
|
|
|
bool cancelonRemoveBuff;
|
|
|
|
bool cancelOnUi;
|
|
|
|
bool cancelOnUnequip;
|
|
|
|
bool cancelOnZone;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Inherited
|
|
|
|
*/
|
|
|
|
explicit ApplyBuffBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void UnCast(BehaviorContext* context, BehaviorBranchContext branch) override;
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
void Load() override;
|
2023-12-01 16:12:48 +00:00
|
|
|
private:
|
|
|
|
bool m_ApplyOnTeammates;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|