Cyrus Mod Loader
Loading...
Searching...
No Matches
FishingSpellTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/SpellTemplate.h>
6#include <Cyrus/Enums/FishingSpellTemplate__FishingSpellType.h>
7
9public:
10 FishingSpellTemplate__FishingSpellType getFishingSpellType() { // Property Generated Getter
11 return *reinterpret_cast<FishingSpellTemplate__FishingSpellType*>(reinterpret_cast<uintptr_t>(this) + 0x320);
12 }
13
14 void setFishingSpellType(FishingSpellTemplate__FishingSpellType val) { // Property Generated Setter
15 *reinterpret_cast<FishingSpellTemplate__FishingSpellType*>(reinterpret_cast<uintptr_t>(this) + 0x320) = val;
16 }
17
18 int getEnergyCost() { // Property Generated Getter
19 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x324);
20 }
21
22 void setEnergyCost(int val) { // Property Generated Setter
23 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x324) = val;
24 }
25
26 std::string getAnimationKFM() { // Property Generated Getter
27 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x328);
28 }
29
30 void setAnimationKFM(std::string val) { // Property Generated Setter
31 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x328) = val;
32 }
33
34 std::string getAnimationName() { // Property Generated Getter
35 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x348);
36 }
37
38 void setAnimationName(std::string val) { // Property Generated Setter
39 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x348) = val;
40 }
41
42 std::string getSoundEffectName() { // Property Generated Getter
43 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x368);
44 }
45
46 void setSoundEffectName(std::string val) { // Property Generated Setter
47 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x368) = val;
48 }
49
50 float getSoundEffectGain() { // Property Generated Getter
51 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x388);
52 }
53
54 void setSoundEffectGain(float val) { // Property Generated Setter
55 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x388) = val;
56 }
57
58 int getFishingSpellImageIndex() { // Property Generated Getter
59 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x38C);
60 }
61
62 void setFishingSpellImageIndex(int val) { // Property Generated Setter
63 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x38C) = val;
64 }
65
66 std::string getFishingSpellImageName() { // Property Generated Getter
67 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x390);
68 }
69
70 void setFishingSpellImageName(std::string val) { // Property Generated Setter
71 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x390) = val;
72 }
73
74 std::string getFishingSchoolFocus() { // Property Generated Getter
75 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x3B0);
76 }
77
78 void setFishingSchoolFocus(std::string val) { // Property Generated Setter
79 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x3B0) = val;
80 }
81
82};
Definition FishingSpellTemplate.h:8
int getFishingSpellImageIndex()
Definition FishingSpellTemplate.h:58
FishingSpellTemplate__FishingSpellType getFishingSpellType()
Definition FishingSpellTemplate.h:10
void setAnimationKFM(std::string val)
Definition FishingSpellTemplate.h:30
std::string getFishingSpellImageName()
Definition FishingSpellTemplate.h:66
std::string getFishingSchoolFocus()
Definition FishingSpellTemplate.h:74
int getEnergyCost()
Definition FishingSpellTemplate.h:18
void setFishingSchoolFocus(std::string val)
Definition FishingSpellTemplate.h:78
std::string getSoundEffectName()
Definition FishingSpellTemplate.h:42
void setSoundEffectName(std::string val)
Definition FishingSpellTemplate.h:46
float getSoundEffectGain()
Definition FishingSpellTemplate.h:50
void setAnimationName(std::string val)
Definition FishingSpellTemplate.h:38
void setFishingSpellImageIndex(int val)
Definition FishingSpellTemplate.h:62
void setEnergyCost(int val)
Definition FishingSpellTemplate.h:22
std::string getAnimationName()
Definition FishingSpellTemplate.h:34
void setFishingSpellImageName(std::string val)
Definition FishingSpellTemplate.h:70
std::string getAnimationKFM()
Definition FishingSpellTemplate.h:26
void setSoundEffectGain(float val)
Definition FishingSpellTemplate.h:54
void setFishingSpellType(FishingSpellTemplate__FishingSpellType val)
Definition FishingSpellTemplate.h:14
Definition SpellTemplate.h:10