Cyrus Mod Loader
Loading...
Searching...
No Matches
PetBoostPlayerStatEffect.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GameEffectBase.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/StatisticEffect.h>
6#include <Cyrus/Classes/WizStatisticEffect.h>
7
9public:
10 gid getPetID() { // Property Generated Getter
11 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x130);
12 }
13
14 void setPetID(gid val) { // Property Generated Setter
15 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x130) = val;
16 }
17
18 std::string getPrimaryStat1() { // Property Generated Getter
19 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x138);
20 }
21
22 void setPrimaryStat1(std::string val) { // Property Generated Setter
23 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x138) = val;
24 }
25
26 std::string getPrimaryStat2() { // Property Generated Getter
27 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x158);
28 }
29
30 void setPrimaryStat2(std::string val) { // Property Generated Setter
31 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x158) = val;
32 }
33
34 std::string getSecondaryStat() { // Property Generated Getter
35 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x178);
36 }
37
38 void setSecondaryStat(std::string val) { // Property Generated Setter
39 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x178) = val;
40 }
41
42 float getSecondaryValue() { // Property Generated Getter
43 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x198);
44 }
45
46 void setSecondaryValue(float val) { // Property Generated Setter
47 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x198) = val;
48 }
49
50};
Definition PetBoostPlayerStatEffect.h:8
void setSecondaryStat(std::string val)
Definition PetBoostPlayerStatEffect.h:38
std::string getPrimaryStat1()
Definition PetBoostPlayerStatEffect.h:18
float getSecondaryValue()
Definition PetBoostPlayerStatEffect.h:42
gid getPetID()
Definition PetBoostPlayerStatEffect.h:10
std::string getPrimaryStat2()
Definition PetBoostPlayerStatEffect.h:26
void setPetID(gid val)
Definition PetBoostPlayerStatEffect.h:14
void setSecondaryValue(float val)
Definition PetBoostPlayerStatEffect.h:46
std::string getSecondaryStat()
Definition PetBoostPlayerStatEffect.h:34
void setPrimaryStat1(std::string val)
Definition PetBoostPlayerStatEffect.h:22
void setPrimaryStat2(std::string val)
Definition PetBoostPlayerStatEffect.h:30
Definition WizStatisticEffect.h:7