annotate Player.h @ 61:05e4b4bd4d64

Savegame preview thumbnails
author Nomad
date Fri, 26 Oct 2012 03:27:59 +0200
parents c28452924144
children 5ec98919c8fd
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,
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
96 PLAYER_CLASS_MONK = 0x8,
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
97 PLAYER_CLASS_PALADIN = 0xC,
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
98 PLAYER_CLASS_SHOOTER = 0x10,
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
99 PLAYER_CLASS_DRUID = 0x14,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
100 PLAYER_CLASS_CLERIC = 0x18,
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
101 PLAYER_CLASS_RANGER = 0x1C,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
102 PLAYER_CLASS_SORCERER = 0x20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
103 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
105
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
106
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109 struct LloydBeacon
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
110 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
111 unsigned __int64 uBeaconTime;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 int field_8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 int field_C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114 int field_10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115 int field_14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116 int field_18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
118 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122 #pragma pack(push, 1)
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
123 struct PlayerSpellbookChapter
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
125 unsigned __int8 bIsSpellbookAvailable;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
126 char bIsSpellAvailable[10];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
127 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
128 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
129
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
130 #pragma pack(push, 1)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
131 struct PlayerSpells
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
132 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
133 union
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
134 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
135 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
136 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
137 PlayerSpellbookChapter pFireSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
138 PlayerSpellbookChapter pAirSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
139 PlayerSpellbookChapter pWaterSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
140 PlayerSpellbookChapter pEarthSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
141 PlayerSpellbookChapter pSpiritSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
142 PlayerSpellbookChapter pMindSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
143 PlayerSpellbookChapter pBodySpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
144 PlayerSpellbookChapter pLightSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
145 PlayerSpellbookChapter pDarkSpellbook;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
146 char _pad_0;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
147 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
148 struct
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
149 {
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
150 PlayerSpellbookChapter pChapters[9];
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
151 char _pad_1;
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
152 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
153 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
154 };
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
155 #pragma pack(pop)
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
156
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
157
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
158
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
159 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160 union PlayerEquipment
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162 union
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 struct
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166 unsigned int uOffHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 unsigned int uMainHand;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 unsigned int uBow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 unsigned int uBody;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 unsigned int uHelm;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 unsigned int uBelt;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172 unsigned int uCloak;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
173 unsigned int field_1C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
174 unsigned int field_20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
175 unsigned int field_24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
176 unsigned int field_28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
177 unsigned int field_2C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
178 unsigned int field_30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
179 unsigned int field_34;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
180 unsigned int field_38;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181 unsigned int field_3C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
182 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
183 unsigned int pIndices[16];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
184 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
185 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
186 #pragma pack(pop)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
187
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
188
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
189
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
190
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 enum PLAYER_SEX: unsigned __int8
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
193 {
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
194 SEX_MALE = 0,
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
195 SEX_FEMALE = 1
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
196 };
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
197
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
198 #pragma pack(push, 1)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
199 struct Player
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
200 {
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
201 enum Condition: unsigned __int32
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
202 {
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
203 Condition_Cursed = 0,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
204 Condition_Weak = 1,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
205 Condition_Sleep = 2,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
206 Condition_Fear = 3,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
207 Condition_Drunk = 4,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
208 Condition_Insane = 5,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
209 Condition_Poison1 = 6,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
210 Condition_Disease1 = 7,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
211 Condition_Posion2 = 8,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
212 Condition_Disease2 = 9,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
213 Condition_Poison3 = 10,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
214 Condition_Disease3 = 11,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
215 Condition_Paralyzed = 12,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
216 Condition_Unconcious = 13,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
217 Condition_Dead = 14,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
218 Condition_Pertified = 15,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
219 Condition_Eradicated = 16,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
220 Condition_Zombie = 17,
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
221 Condition_Good = 18
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
222 };
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
223
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
224 Player();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
225
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
226 void SetVariable(enum VariableType var, signed int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
227 void AddVariable(enum VariableType var, signed int val);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228 void SubtractVariable(enum VariableType var, void *a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
229 char CompareVariable(enum VariableType var, signed int a1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
230 void UseItem_DrinkPotion_etc(signed int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
231 bool AddItem(struct ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 int GetBaseStrength();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
233 int GetBaseIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
234 int GetBaseWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
235 int GetBaseEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 int GetBaseAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237 int GetBaseSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238 int GetBaseLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 int GetBaseLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 int GetActualLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 int GetActualMight();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
242 int GetActualIntelligence();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 int GetActualWillpower();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
244 int GetActualEndurance();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
245 int GetActualAccuracy();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 int GetActualSpeed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
247 int GetActualLuck();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 int GetActualAttack(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
249 int GetMeleeDamageMinimal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
250 int GetMeleeDamageMaximal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 int CalculateMeleeDamageTo(int a2, int a3, unsigned int uTargetActorID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
252 int GetRangedAttack();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
253 int GetRangedDamageMin();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 int GetRangedDamageMax();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
255 bool CalculateRangedDamageTo(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
256 char *GetMeleeDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
257 char *GetRangedDamageString();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
258 bool CanTrainToNextLevel();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
259 unsigned int GetExperienceDisplayColor();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
260 int CalculateIncommingDamage(int resistance, signed int type);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 int GetEquippedItemEquipType(unsigned int uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
262 int GetEquippedItemSkillType(enum ITEM_EQUIP_TYPE uEquipSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
263 bool IsUnarmed();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
264 bool HasItemEquipped(enum ITEM_EQUIP_TYPE uEquipIndex);
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
265 bool HasEnchantedItemEquipped(int uEnchantment);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
266 bool WearsItem(int a1, signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
267 bool StealFromShop(struct ItemGen *a2, int a3, int a4, int a5, int *a6);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
268 int StealFromActor(unsigned int uActorID, int _steal_perm, int reputation);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269 void Heal(int amount);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 int ReceiveDamage(signed int type, int resistance);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 int _48DCF6(int a2, struct Actor *pActor);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272 unsigned int GetSpellSchool(unsigned int uSpellID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
273 int GetAttackRecoveryTime(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274 int GetMaxHealth();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
275 int GetMaxMana();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
276 int GetBaseAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 int GetActualAC();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
278 unsigned int GetBaseAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
279 unsigned int GetActualAge();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280 int GetBaseResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 int GetActualResistance(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
282 void SetRecoveryTime(signed int sRecoveryTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283 void RandomizeName();
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
284 unsigned int GetMajorConditionIdx();
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285 int _48EA1B_get_static_effect(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286 int _48EA46_calc_special_bonus_by_items(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
287 int GetItemsBonus(enum CHARACTER_ATTRIBUTE_TYPE attr, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
288 int GetMagicalBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
289 char GetActualSkillLevel(enum PLAYER_SKILL_TYPE uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
290 int GetSkillBonus(enum CHARACTER_ATTRIBUTE_TYPE a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
291 enum CHARACTER_RACE GetRace();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
292 int GetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
293 void SetInitialStats();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
294 int SetSexByVoice();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
295 void Reset(unsigned __int8 uClass);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
296 enum PLAYER_SKILL_TYPE GetSkillIdxByOrder(signed int order);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
297 unsigned __int16 DecreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
298 int IncreaseAttribute(int eAttribute);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
299 void Player::Zero();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
300 __int16 GetStatColor(unsigned int uStat);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
301 bool DiscardConditionIfLastsLongerThan(unsigned int uCondition, unsigned __int64 uTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
302 int _490EEE(ItemGen *pItem, int a3, int a4, int a5);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
303 int GetBodybuilding();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
304 int GetMediatation();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
305 int CanIdentify(ItemGen *pItem);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
306 int CanRepair(ItemGen *);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
307 int GetMerchant();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
308 int GetPerception();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
309 int GetDisarmTrap();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
310 char GetLearningPercent();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
311 bool CanFitItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
312 unsigned int FindFreeInventorySlot();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
313 int CreateItemInInventory(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
314 int HasSkill(unsigned int uSkillType);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
315 int WearItem(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
316 int AddItem(unsigned int uSlot, unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
317 int AddItem2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
318 int CreateItemInInventory2(unsigned int uSlot, ItemGen *Src);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
319 bool _49298B(ItemGen *a2, int a3, int a4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
320 unsigned int RemoveItemAtInventoryIndex(unsigned int uSlot);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
321 bool CanAct();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
322 bool CanSteal();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
323 bool CanEquip_RaceAndAlignmentCheck(unsigned int uItemID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
324 int SetCondition(unsigned int uConditionIdx, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
325 int _49327B(unsigned int uClass, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
326 __int16 PlaySound(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
327 __int16 PlayEmotion(int a2, int a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
328 char _4160CA(int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
329 unsigned int GetItemIDAtInventoryIndex(int *a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
330 int _4B6FF9();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
331 int _4B824B(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
332 int _4B8265(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
333 int _4B8233(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
334 int _4B8213(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
335 int _4B81C3(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
336 int _4B8179(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
337 int _4B8142(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
338 int _4B8102(int a2, float a3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
339 int _4B807C(float a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
340 int _4B8040_condition_time(unsigned int uCondition);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
341 bool _43EEF3();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
342 void _4BE2DD(unsigned int a2, int a3, int _2devent_idx);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
343 bool Recover(signed int a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
344 bool CanCastSpell(unsigned int uRequiredMana);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
345
47
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
346 inline bool Dead() {return pConditions[Condition::Condition_Dead] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
347 inline bool Eradicated() {return pConditions[Condition::Condition_Eradicated] != 0;}
8a8dd0164b12 BLV render
Nomad
parents: 25
diff changeset
348
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
349
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
350
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
351 __int64 pConditions[20];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
352 unsigned __int64 uExperience;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
353 char pName[16];
25
2bbf33898c6b c/p error in prev commit
Nomad
parents: 24
diff changeset
354 PLAYER_SEX uSex;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
355 unsigned __int8 uClass;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
356 unsigned __int8 uFace;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
357 char field_BB;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
358 unsigned __int16 uMight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
359 unsigned __int16 uMightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
360 unsigned __int16 uIntelligence;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
361 unsigned __int16 uIntelligenceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
362 unsigned __int16 uWillpower;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
363 unsigned __int16 uWillpowerBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
364 unsigned __int16 uEndurance;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
365 unsigned __int16 uEnduranceBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
366 unsigned __int16 uSpeed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
367 unsigned __int16 uSpeedBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
368 unsigned __int16 uAccuracy;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
369 unsigned __int16 uAccuracyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
370 unsigned __int16 uLuck;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
371 unsigned __int16 uLuckBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
372 __int16 sACModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
373 unsigned __int16 uLevel;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
374 __int16 sLevelModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
375 __int16 sAgeModifier;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
376 int field_E0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
377 int field_E4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
378 int field_E8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
379 int field_EC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
380 int field_F0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
381 int field_F4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
382 int field_F8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
383 int field_FC;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
384 int field_100;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
385 int field_104;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
386 unsigned __int16 pActiveSkills[37];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
387 char field_152[64];
23
509744251c8e Player-related members
Nomad
parents: 0
diff changeset
388 PlayerSpells spellbook;
24
74940016abc8 * on Players
Nomad
parents: 23
diff changeset
389 char field_1F5[30]; // used to be [31]
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
390 ItemGen pInventoryItems[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
391 ItemGen pEquippedItems[12];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
392 int pInventoryIndices[126];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
393 __int16 sResFireBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
394 __int16 sResAirBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
395 __int16 sResWaterBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
396 __int16 sResEarthBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
397 __int16 field_177C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
398 __int16 sResMagicBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
399 __int16 sResSpiritBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
400 __int16 sResMindBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
401 __int16 sResBodyBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
402 __int16 sResLightBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
403 __int16 sResDarkBase;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
404 __int16 sResFireBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
405 __int16 sResAirBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
406 __int16 sResWaterBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
407 __int16 sResEarthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
408 __int16 field_1792;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
409 __int16 sResMagicBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
410 __int16 sResSpiritBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
411 __int16 sResMindBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
412 __int16 sResBodyBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
413 __int16 sResLightBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
414 __int16 sResDarkBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
415 SpellBuff pPlayerBuffs[24];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
416 unsigned int uVoiceID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
417 int field_1924;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
418 int field_1928;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
419 int field_192C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
420 int field_1930;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
421 unsigned __int16 uTimeToRecovery;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
422 char field_1936;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
423 char field_1937;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
424 unsigned int uSkillPoints;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
425 int sHealth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
426 int sMana;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
427 unsigned int uBirthYear;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
428 PlayerEquipment pEquipment;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
429 int field_1988[49];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
430 char field_1A4C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
431 char field_1A4D;
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 47
diff changeset
432 char pNumSpellBookPage;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
433 unsigned __int8 uQuickSpell;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
434 char field_1A50[64];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
435 char _some_attack_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
436 char field_1A91;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
437 char _melee_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
438 char field_1A93;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
439 char _ranged_atk_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
440 char field_1A95;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
441 char _ranged_dmg_bonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
442 char field_1A97;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
443 char uFullHealthBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
444 char _health_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
445 char uFullManaBonus;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
446 char _mana_related;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
447 unsigned __int16 uExpressionID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
448 unsigned __int16 uExpressionTimePassed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
449 unsigned __int16 uExpressionTimeLength;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
450 __int16 field_1AA2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
451 int field_1AA4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
452 int field_1AA8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
453 LloydBeacon pInstalledBeacons[5];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
454 char uNumDivineInterventionCastsThisDay;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
455 char uNumArmageddonCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
456 char uNumFireSpikeCasts;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
457 char field_1B3B;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
458 };
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
459 #pragma pack(pop)