annotate Player.h @ 47:8a8dd0164b12

BLV render cd check fix
author Nomad
date Tue, 23 Oct 2012 13:51:21 +0200
parents 2bbf33898c6b
children c28452924144
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #pragma once
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include "Items.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "Spells.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9 /* 339 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10 enum CHARACTER_RACE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12 CHARACTER_RACE_HUMAN = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 CHARACTER_RACE_ELF = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14 CHARACTER_RACE_GOBLIN = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15 CHARACTER_RACE_DWARF = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 /* 332 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 enum CHARACTER_ATTRIBUTE_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 CHARACTER_ATTRIBUTE_STRENGTH = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23 CHARACTER_ATTRIBUTE_INTELLIGENCE = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24 CHARACTER_ATTRIBUTE_WILLPOWER = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 CHARACTER_ATTRIBUTE_ENDURANCE = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26 CHARACTER_ATTRIBUTE_ACCURACY = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27 CHARACTER_ATTRIBUTE_SPEED = 0x5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28 CHARACTER_ATTRIBUTE_LUCK = 0x6,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29 CHARACTER_ATTRIBUTE_HEALTH = 0x7,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 CHARACTER_ATTRIBUTE_MANA = 0x8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
31 CHARACTER_ATTRIBUTE_AC_BONUS = 0x9,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32 CHARACTER_ATTRIBUTE_RESIST_FIRE = 0xA,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33 CHARACTER_ATTRIBUTE_RESIST_AIR = 0xB,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 CHARACTER_ATTRIBUTE_RESIST_WATER = 0xC,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35 CHARACTER_ATTRIBUTE_RESIST_EARTH = 0xD,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36 CHARACTER_ATTRIBUTE_RESIST_MIND = 0xE,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37 CHARACTER_ATTRIBUTE_RESIST_BODY = 0xF,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38 CHARACTER_ATTRIBUTE_LEVEL = 0x18,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39 CHARACTER_ATTRIBUTE_ATTACK = 0x19,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40 CHARACTER_ATTRIBUTE_MELEE_DMG_BONUS = 0x1A,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 CHARACTER_ATTRIBUTE_MELEE_DMG_MIN = 0x1B,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42 CHARACTER_ATTRIBUTE_MELEE_DMG_MAX = 0x1C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43 CHARACTER_ATTRIBUTE_RANGED_ATTACK = 0x1D,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
44 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_BONUS = 0x1E,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_MIN = 0x1F,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 CHARACTER_ATTRIBUTE_RANGED_DAMAGE_MAX = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49 /* 328 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 enum PLAYER_SKILL_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
51 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52 PLAYER_SKILL_STAFF = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53 PLAYER_SKILL_SWORD = 0x1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 PLAYER_SKILL_DAGGER = 0x2,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 PLAYER_SKILL_AXE = 0x3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 PLAYER_SKILL_SPEAR = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57 PLAYER_SKILL_BOW = 0x5,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58 PLAYER_SKILL_MACE = 0x6,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59 PLAYER_SKILL_BLASTER = 0x7,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 PLAYER_SKILL_SHIELD = 0x8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 PLAYER_SKILL_LEATHER = 0x9,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 PLAYER_SKILL_CHAIN = 0xA,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 PLAYER_SKILL_PLATE = 0xB,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 PLAYER_SKILL_FIRE = 0xC,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65 PLAYER_SKILL_AIR = 0xD,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66 PLAYER_SKILL_WATER = 0xE,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67 PLAYER_SKILL_EARTH = 0xF,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 PLAYER_SKILL_SPIRIT = 0x10,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 PLAYER_SKILL_MIND = 0x11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70 PLAYER_SKILL_BODY = 0x12,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 PLAYER_SKILL_LIGHT = 0x13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 PLAYER_SKILL_DARK = 0x14,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 PLAYER_SKILL_ITEM_ID = 0x15,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
74 PLAYER_SKILL_MERCHANT = 0x16,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 PLAYER_SKILL_REPAIR = 0x17,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
76 PLAYER_SKILL_BODYBUILDING = 0x18,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
77 PLAYER_SKILL_MEDITATION = 0x19,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
78 PLAYER_SKILL_PERCEPTION = 0x1A,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
79 PLAYER_SKILL_DIPLOMACY = 0x1B,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
80 PLAYER_SKILL_TIEVERY = 0x1C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
81 PLAYER_SKILL_TRAP_DISARM = 0x1D,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
82 PLAYER_SKILL_DODGE = 0x1E,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
83 PLAYER_SKILL_UNARMED = 0x1F,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
84 PLAYER_SKILL_MONSTER_ID = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
85 PLAYER_SKILL_ARMSMASTER = 0x21,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86 PLAYER_SKILL_STEALING = 0x22,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
87 PLAYER_SKILL_ALCHEMY = 0x23,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
88 PLAYER_SKILL_LEARNING = 0x24,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
89 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
90
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
91 /* 329 */
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
92 enum PLAYER_CLASS_TYPE
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
93 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
94 PLAYER_CLASS_KNIGHT = 0x0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
95 PLAYER_CLASS_THEIF = 0x4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
96 PLAYER_CLASS_CLERIC = 0x18,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
97 PLAYER_CLASS_SORCERER = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
98 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
99
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
100
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
101
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
102
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
103 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104 struct LloydBeacon
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
105 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
106 unsigned __int64 uBeaconTime;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107 int field_8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108 int field_C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109 int field_10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
110 int field_14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 int field_18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 #pragma pack(push, 1)
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
118 struct PlayerSpellbookChapter
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120 unsigned __int8 bIsSpellbookAvailable;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121 char bIsSpellAvailable[10];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
123 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
125 #pragma pack(push, 1)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
126 struct PlayerSpells
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
127 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
128 union
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
129 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
130 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
131 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
132 PlayerSpellbookChapter pFireSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
133 PlayerSpellbookChapter pAirSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
134 PlayerSpellbookChapter pWaterSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
135 PlayerSpellbookChapter pEarthSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
136 PlayerSpellbookChapter pSpiritSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
137 PlayerSpellbookChapter pMindSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
138 PlayerSpellbookChapter pBodySpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
139 PlayerSpellbookChapter pLightSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
140 PlayerSpellbookChapter pDarkSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
141 char _pad_0;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
142 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
143 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
144 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
145 PlayerSpellbookChapter pChapters[9];
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
146 char _pad_1;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
147 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
148 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
149 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
150 #pragma pack(pop)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
151
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
152
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
153
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
154 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
155 union PlayerEquipment
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
156 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
157 union
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
158 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
159 struct
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161 unsigned int uOffHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162 unsigned int uMainHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 unsigned int uBow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 unsigned int uBody;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 unsigned int uHelm;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166 unsigned int uBelt;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 unsigned int uCloak;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 unsigned int field_1C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 unsigned int field_20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 unsigned int field_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 unsigned int field_28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172 unsigned int field_2C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
173 unsigned int field_30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
174 unsigned int field_34;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
175 unsigned int field_38;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
176 unsigned int field_3C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
177 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
178 unsigned int pIndices[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
179 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
180 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
182
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
183
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
184
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
185
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
186
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
187 enum PLAYER_SEX: unsigned __int8
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
188 {
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
189 SEX_MALE = 0,
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
190 SEX_FEMALE = 1
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
191 };
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
192
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
193 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
194 struct Player
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
195 {
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
196 enum Condition: unsigned __int32
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
197 {
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
198 Condition_Cursed = 0,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
199 Condition_Weak = 1,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
200 Condition_Sleep = 2,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
201 Condition_Fear = 3,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
202 Condition_Drunk = 4,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
203 Condition_Insane = 5,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
204 Condition_Poison1 = 6,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
205 Condition_Disease1 = 7,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
206 Condition_Posion2 = 8,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
207 Condition_Disease2 = 9,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
208 Condition_Poison3 = 10,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
209 Condition_Disease3 = 11,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
210 Condition_Paralyzed = 12,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
211 Condition_Unconcious = 13,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
212 Condition_Dead = 14,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
213 Condition_Pertified = 15,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
214 Condition_Eradicated = 16,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
215 Condition_Zombie = 17,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
216 Condition_Good = 18
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
217 };
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
218
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
219 Player();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
220
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
221 void SetVariable(enum VariableType var, signed int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
222 void AddVariable(enum VariableType var, signed int val);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
223 void SubtractVariable(enum VariableType var, void *a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
224 char CompareVariable(enum VariableType var, signed int a1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
225 void UseItem_DrinkPotion_etc(signed int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
226 bool AddItem(struct ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
227 int GetBaseStrength();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228 int GetBaseIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
229 int GetBaseWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
230 int GetBaseEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
231 int GetBaseAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 int GetBaseSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
233 int GetBaseLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
234 int GetBaseLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
235 int GetActualLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 int GetActualMight();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237 int GetActualIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238 int GetActualWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 int GetActualEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 int GetActualAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 int GetActualSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
242 int GetActualLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 int GetActualAttack(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
244 int GetMeleeDamageMinimal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
245 int GetMeleeDamageMaximal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 int CalculateMeleeDamageTo(int a2, int a3, unsigned int uTargetActorID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
247 int GetRangedAttack();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 int GetRangedDamageMin();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
249 int GetRangedDamageMax();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
250 bool CalculateRangedDamageTo(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 char *GetMeleeDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
252 char *GetRangedDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
253 bool CanTrainToNextLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 unsigned int GetExperienceDisplayColor();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
255 int CalculateIncommingDamage(int resistance, signed int type);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
256 int GetEquippedItemEquipType(unsigned int uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
257 int GetEquippedItemSkillType(enum ITEM_EQUIP_TYPE uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
258 bool IsUnarmed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
259 bool HasItemEquipped(enum ITEM_EQUIP_TYPE uEquipIndex);
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
260 bool HasEnchantedItemEquipped(int uEnchantment);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 bool WearsItem(int a1, signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
262 bool StealFromShop(struct ItemGen *a2, int a3, int a4, int a5, int *a6);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
263 int StealFromActor(unsigned int uActorID, int _steal_perm, int reputation);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
264 void Heal(int amount);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
265 int ReceiveDamage(signed int type, int resistance);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
266 int _48DCF6(int a2, struct Actor *pActor);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
267 unsigned int GetSpellSchool(unsigned int uSpellID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
268 int GetAttackRecoveryTime(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269 int GetMaxHealth();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 int GetMaxMana();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 int GetBaseAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272 int GetActualAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
273 unsigned int GetBaseAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274 unsigned int GetActualAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
275 int GetBaseResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
276 int GetActualResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 void SetRecoveryTime(signed int sRecoveryTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
278 void RandomizeName();
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
279 unsigned int GetMajorConditionIdx();
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280 int _48EA1B_get_static_effect(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 int _48EA46_calc_special_bonus_by_items(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
282 int GetItemsBonus(enum CHARACTER_ATTRIBUTE_TYPE attr, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283 int GetMagicalBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
284 char GetActualSkillLevel(enum PLAYER_SKILL_TYPE uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285 int GetSkillBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286 enum CHARACTER_RACE GetRace();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
287 int GetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
288 void SetInitialStats();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
289 int SetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
290 void Reset(unsigned __int8 uClass);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
291 enum PLAYER_SKILL_TYPE GetSkillIdxByOrder(signed int order);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
292 unsigned __int16 DecreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
293 int IncreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
294 void Player::Zero();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
295 __int16 GetStatColor(unsigned int uStat);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
296 bool DiscardConditionIfLastsLongerThan(unsigned int uCondition, unsigned __int64 uTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
297 int _490EEE(ItemGen *pItem, int a3, int a4, int a5);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
298 int GetBodybuilding();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
299 int GetMediatation();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
300 int CanIdentify(ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
301 int CanRepair(ItemGen *);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
302 int GetMerchant();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
303 int GetPerception();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
304 int GetDisarmTrap();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
305 char GetLearningPercent();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
306 bool CanFitItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
307 unsigned int FindFreeInventorySlot();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
308 int CreateItemInInventory(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
309 int HasSkill(unsigned int uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
310 int WearItem(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
311 int AddItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
312 int AddItem2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
313 int CreateItemInInventory2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
314 bool _49298B(ItemGen *a2, int a3, int a4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
315 unsigned int RemoveItemAtInventoryIndex(unsigned int uSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
316 bool CanAct();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
317 bool CanSteal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
318 bool CanEquip_RaceAndAlignmentCheck(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
319 int SetCondition(unsigned int uConditionIdx, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
320 int _49327B(unsigned int uClass, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
321 __int16 PlaySound(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
322 __int16 PlayEmotion(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
323 char _4160CA(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
324 unsigned int GetItemIDAtInventoryIndex(int *a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
325 int _4B6FF9();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
326 int _4B824B(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
327 int _4B8265(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
328 int _4B8233(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
329 int _4B8213(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
330 int _4B81C3(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
331 int _4B8179(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
332 int _4B8142(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
333 int _4B8102(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
334 int _4B807C(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
335 int _4B8040_condition_time(unsigned int uCondition);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
336 bool _43EEF3();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
337 void _4BE2DD(unsigned int a2, int a3, int _2devent_idx);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
338 bool Recover(signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
339 bool CanCastSpell(unsigned int uRequiredMana);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
340
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
341 inline bool Dead() {return pConditions[Condition::Condition_Dead] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
342 inline bool Eradicated() {return pConditions[Condition::Condition_Eradicated] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
343
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
344
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
345
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
346 __int64 pConditions[20];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
347 unsigned __int64 uExperience;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
348 char pName[16];
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
349 PLAYER_SEX uSex;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
350 unsigned __int8 uClass;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
351 unsigned __int8 uFace;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
352 char field_BB;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
353 unsigned __int16 uMight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
354 unsigned __int16 uMightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
355 unsigned __int16 uIntelligence;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
356 unsigned __int16 uIntelligenceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
357 unsigned __int16 uWillpower;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
358 unsigned __int16 uWillpowerBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
359 unsigned __int16 uEndurance;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
360 unsigned __int16 uEnduranceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
361 unsigned __int16 uSpeed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
362 unsigned __int16 uSpeedBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
363 unsigned __int16 uAccuracy;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
364 unsigned __int16 uAccuracyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
365 unsigned __int16 uLuck;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
366 unsigned __int16 uLuckBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
367 __int16 sACModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
368 unsigned __int16 uLevel;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
369 __int16 sLevelModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
370 __int16 sAgeModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
371 int field_E0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
372 int field_E4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
373 int field_E8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
374 int field_EC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
375 int field_F0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
376 int field_F4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
377 int field_F8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
378 int field_FC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
379 int field_100;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
380 int field_104;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
381 unsigned __int16 pActiveSkills[37];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
382 char field_152[64];
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
383 PlayerSpells spellbook;
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
384 char field_1F5[30]; // used to be [31]
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
385 ItemGen pInventoryItems[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
386 ItemGen pEquippedItems[12];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
387 int pInventoryIndices[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
388 __int16 sResFireBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
389 __int16 sResAirBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
390 __int16 sResWaterBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
391 __int16 sResEarthBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
392 __int16 field_177C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
393 __int16 sResMagicBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
394 __int16 sResSpiritBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
395 __int16 sResMindBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
396 __int16 sResBodyBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
397 __int16 sResLightBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
398 __int16 sResDarkBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
399 __int16 sResFireBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
400 __int16 sResAirBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
401 __int16 sResWaterBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
402 __int16 sResEarthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
403 __int16 field_1792;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
404 __int16 sResMagicBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
405 __int16 sResSpiritBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
406 __int16 sResMindBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
407 __int16 sResBodyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
408 __int16 sResLightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
409 __int16 sResDarkBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
410 SpellBuff pPlayerBuffs[24];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
411 unsigned int uVoiceID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
412 int field_1924;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
413 int field_1928;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
414 int field_192C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
415 int field_1930;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
416 unsigned __int16 uTimeToRecovery;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
417 char field_1936;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
418 char field_1937;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
419 unsigned int uSkillPoints;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
420 int sHealth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
421 int sMana;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
422 unsigned int uBirthYear;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
423 PlayerEquipment pEquipment;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
424 int field_1988[49];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
425 char field_1A4C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
426 char field_1A4D;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
427 char field_1A4E;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
428 unsigned __int8 uQuickSpell;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
429 char field_1A50[64];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
430 char _some_attack_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
431 char field_1A91;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
432 char _melee_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
433 char field_1A93;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
434 char _ranged_atk_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
435 char field_1A95;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
436 char _ranged_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
437 char field_1A97;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
438 char uFullHealthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
439 char _health_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
440 char uFullManaBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
441 char _mana_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
442 unsigned __int16 uExpressionID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
443 unsigned __int16 uExpressionTimePassed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
444 unsigned __int16 uExpressionTimeLength;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
445 __int16 field_1AA2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
446 int field_1AA4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
447 int field_1AA8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
448 LloydBeacon pInstalledBeacons[5];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
449 char uNumDivineInterventionCastsThisDay;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
450 char uNumArmageddonCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
451 char uNumFireSpikeCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
452 char field_1B3B;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
453 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
454 #pragma pack(pop)