2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "Behavior.h"
|
|
|
|
|
|
|
|
class DamageAbsorptionBehavior final : public Behavior
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint32_t m_absorbAmount;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Inherited
|
|
|
|
*/
|
|
|
|
|
|
|
|
explicit DamageAbsorptionBehavior(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
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void Timer(BehaviorContext* context, BehaviorBranchContext branch, LWOOBJID second) override;
|
|
|
|
|
|
|
|
void Load() override;
|
|
|
|
};
|