This repository has been archived by the owner on Jan 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
database-schema-reference.yml
11749 lines (11749 loc) · 267 KB
/
database-schema-reference.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
aa_ability:
id:
dataType: int
nullable: NO
description: Unique AA Identifier
name:
dataType: text
nullable: NO
description: Name
category:
dataType: int
nullable: NO
description: >-
[AA
Category](https://eqemu.gitbook.io/server/categories/aas/aa-categories)
classes:
dataType: int
nullable: NO
description: >-
[Classes](https://eqemu.gitbook.io/server/categories/player/class-list)
Bitmasks
races:
dataType: int
nullable: NO
description: '[Races](https://eqemu.gitbook.io/server/categories/npc/race-list)'
drakkin_heritage:
dataType: int
nullable: NO
description: 'Drakkin Heritage: 127 = All'
deities:
dataType: int
nullable: NO
description: '[Deities](https://eqemu.gitbook.io/server/categories/player/deity-list)'
status:
dataType: int
nullable: NO
description: >-
[Minimum
Status](https://eqemu.gitbook.io/server/categories/player/status-levels)
type:
dataType: int
nullable: NO
description: '[AA Type](https://eqemu.gitbook.io/server/categories/aas/aa-types)'
charges:
dataType: int
nullable: NO
description: Number of Charges
grant_only:
dataType: tinyint
nullable: NO
description: 'Grant Only Flag: 0 = No, 1 = Yes'
first_rank_id:
dataType: int
nullable: NO
description: First Rank Identifier
enabled:
dataType: tinyint
nullable: NO
description: 'Enabled: 0 = No, 1 = Yes'
reset_on_death:
dataType: tinyint
nullable: NO
description: ''
aa_actions:
aaid:
dataType: mediumint
nullable: NO
description: AA Identifier
rank:
dataType: tinyint
nullable: NO
description: 'Rank: Starts at 0'
reuse_time:
dataType: mediumint
nullable: NO
description: Reuse timer in seconds
spell_id:
dataType: mediumint
nullable: NO
description: '[Spell Identifier](spells_new.md)'
target:
dataType: tinyint
nullable: NO
description: >-
[AA Target
Type](https://eqemu.gitbook.io/server/categories/aas/aa-target-types)
nonspell_action:
dataType: tinyint
nullable: NO
description: >-
[AA Nonspell
Action](https://eqemu.gitbook.io/server/categories/aas/aa-nonspell-actions)
nonspell_mana:
dataType: mediumint
nullable: NO
description: Mana that the nonspell action consumes.
nonspell_duration:
dataType: mediumint
nullable: NO
description: Duration which may be used by the nonspell action.
redux_aa:
dataType: mediumint
nullable: NO
description: The AA which reduces the reuse timer of the skill.
redux_rate:
dataType: tinyint
nullable: NO
description: 'The multiplier of redux_aa, as a percentage of total rate.'
redux_aa2:
dataType: mediumint
nullable: NO
description: The second AA which reduces the reuse timer of the skill.
redux_rate2:
dataType: tinyint
nullable: NO
description: 'The multiplier of redux_aa2, as a percentage of total rate.'
aa_effects:
id:
dataType: int
nullable: NO
description: Unique Entry Identifier
aaid:
dataType: mediumint
nullable: NO
description: '[AA Identifier](aa_ability.md)'
slot:
dataType: tinyint
nullable: NO
description: Slot
effectid:
dataType: mediumint
nullable: NO
description: >-
[Spell Effect
Identifier](https://eqemu.gitbook.io/server/categories/spells/spell-effect-ids)
base1:
dataType: mediumint
nullable: NO
description: First Base Value
base2:
dataType: mediumint
nullable: NO
description: Second Base Value
aa_ranks:
id:
dataType: int
nullable: NO
description: '[AA Identifier](aa_ability.md)'
upper_hotkey_sid:
dataType: int
nullable: NO
description: Upper Hotkey SID
lower_hotkey_sid:
dataType: int
nullable: NO
description: Lower Hotkey SID
title_sid:
dataType: int
nullable: NO
description: Title SID
desc_sid:
dataType: int
nullable: NO
description: Description SID
cost:
dataType: int
nullable: NO
description: Cost in AA Points
level_req:
dataType: int
nullable: NO
description: Level Required
spell:
dataType: int
nullable: NO
description: '[Spell Identifier](spells_new.md)'
spell_type:
dataType: int
nullable: NO
description: >-
[Spell
Type](https://eqemu.gitbook.io/server/categories/spells/spell-types)
recast_time:
dataType: int
nullable: NO
description: Recast Timer
expansion:
dataType: int
nullable: NO
description: >-
[Expansion
Identifier](https://eqemu.gitbook.io/server/categories/operation/expansion-list)
prev_id:
dataType: int
nullable: NO
description: Previous Rank Identifier
next_id:
dataType: int
nullable: NO
description: Next Rank Identifier
aa_rank_effects:
rank_id:
dataType: int
nullable: NO
description: '[Rank Identifier](aa_ranks.md)'
slot:
dataType: int
nullable: NO
description: AA Slot
effect_id:
dataType: int
nullable: NO
description: >-
[Spell Effect
Identifier](https://eqemu.gitbook.io/server/categories/spells/spell-effect-ids)
base1:
dataType: int
nullable: NO
description: First Base Value
base2:
dataType: int
nullable: NO
description: Second Base Value
aa_rank_prereqs:
rank_id:
dataType: int
nullable: NO
description: '[Rank Identifier](aa_ranks.md)'
aa_id:
dataType: int
nullable: NO
description: '[AA Identifier](aa_ability.md)'
points:
dataType: int
nullable: NO
description: Cost in AA Points
aa_required_level_cost:
skill_id:
dataType: int
nullable: NO
description: '[AA Identifier](aa_ability.md)'
level:
dataType: int
nullable: NO
description: Required Level
cost:
dataType: int
nullable: NO
description: Cost in AA Points
description:
dataType: varchar
nullable: YES
description: Name of AA
aa_timers:
charid:
dataType: int
nullable: NO
description: '[Character Identifier](character_data.md)'
ability:
dataType: smallint
nullable: NO
description: '[AA Identifier](aa_ability.md)'
begin:
dataType: int
nullable: NO
description: When the timer began.
end:
dataType: int
nullable: NO
description: When the timer ends.
account:
id:
dataType: int
nullable: NO
description: Unique Account Identifier
name:
dataType: varchar
nullable: NO
description: Name
charname:
dataType: varchar
nullable: NO
description: Character name last logged in on this account.
sharedplat:
dataType: int
nullable: NO
description: Platinum in Shared Bank.
password:
dataType: varchar
nullable: NO
description: Private loginserver password.
status:
dataType: int
nullable: NO
description: '[Status](https://eqemu.gitbook.io/server/categories/player/status-levels)'
lsaccount_id:
dataType: int
nullable: YES
description: Loginserver Account Identifier
gmspeed:
dataType: tinyint
nullable: NO
description: 'GM Speed: 0 = Disabled, 1 = Enabled'
revoked:
dataType: tinyint
nullable: NO
description: 'OOC Revoked: 0 = False, 1 = True'
karma:
dataType: int
nullable: NO
description: Karma
minilogin_ip:
dataType: varchar
nullable: NO
description: Minilogin IP Address
hideme:
dataType: tinyint
nullable: NO
description: 'Hide Me: 0 = Disabled, 1 = Enabled'
rulesflag:
dataType: tinyint
nullable: NO
description: Rules Flag
suspendeduntil:
dataType: datetime
nullable: NO
description: Time Suspension of the Account ends
time_creation:
dataType: int
nullable: NO
description: Time Creation UNIX Timestamp
expansion:
dataType: tinyint
nullable: NO
description: Expansion
ban_reason:
dataType: text
nullable: YES
description: Ban Reason
suspend_reason:
dataType: text
nullable: YES
description: Suspension Reason
ls_id:
dataType: varchar
nullable: YES
description: ''
account_flags:
p_accid:
dataType: int
nullable: NO
description: '[Account Identifier](account.md)'
p_flag:
dataType: varchar
nullable: NO
description: Name
p_value:
dataType: varchar
nullable: NO
description: Value
account_ip:
accid:
dataType: int
nullable: NO
description: '[Account Identifier](account.md)'
ip:
dataType: varchar
nullable: NO
description: IP Address
count:
dataType: int
nullable: NO
description: Number of times logged in from this IP
lastused:
dataType: timestamp
nullable: NO
description: Timestamp of when account was last logged in
account_rewards:
account_id:
dataType: int
nullable: NO
description: '[Account Identifier](account.md)'
reward_id:
dataType: int
nullable: NO
description: '[Veteran Reward Identifier](veteran_reward_templates.md)'
amount:
dataType: int
nullable: NO
description: Amount
adventure_details:
id:
dataType: int
nullable: NO
description: Unique Entry Identifier
adventure_id:
dataType: smallint
nullable: NO
description: Unique Adventure Identifier
instance_id:
dataType: int
nullable: NO
description: '[Instance Identifier](instance_list.md)'
count:
dataType: smallint
nullable: NO
description: Count
assassinate_count:
dataType: smallint
nullable: NO
description: Assassinate Count
status:
dataType: tinyint
nullable: NO
description: Status
time_created:
dataType: int
nullable: NO
description: Time Created UNIX Timestamp
time_zoned:
dataType: int
nullable: NO
description: Time Zoned UNIX Timestamp
time_completed:
dataType: int
nullable: NO
description: Time Completed UNIX Timestamp
adventure_members:
id:
dataType: int
nullable: NO
description: '[Adventure Identifier](adventure_details.md)'
charid:
dataType: int
nullable: NO
description: '[Character Identifier](character_data.md)'
adventure_stats:
player_id:
dataType: int
nullable: NO
description: '[Character Identifier](character_data.md)'
guk_wins:
dataType: mediumint
nullable: NO
description: Deepest Guk Wins
mir_wins:
dataType: mediumint
nullable: NO
description: Miragul's Menagerie Wins
mmc_wins:
dataType: mediumint
nullable: NO
description: Mistmoore Catacombs Wins
ruj_wins:
dataType: mediumint
nullable: NO
description: Rujarkian Hills Wins
tak_wins:
dataType: mediumint
nullable: NO
description: Takish-Hiz Wins
guk_losses:
dataType: mediumint
nullable: NO
description: Deepest Guk Losses
mir_losses:
dataType: mediumint
nullable: NO
description: Miragul's Menagerie Losses
mmc_losses:
dataType: mediumint
nullable: NO
description: Mistmoore Catacombs Losses
ruj_losses:
dataType: mediumint
nullable: NO
description: Rujarkian Hills Losses
tak_losses:
dataType: mediumint
nullable: NO
description: Takish-Hiz Losses
adventure_template:
id:
dataType: int
nullable: NO
description: '[Adventure Identifier](adventure_details.md)'
zone:
dataType: varchar
nullable: NO
description: >-
[Zone Short
Name](https://eqemu.gitbook.io/server/categories/zones/zone-list)
zone_version:
dataType: tinyint
nullable: NO
description: Zone Version
is_hard:
dataType: tinyint
nullable: NO
description: 'Hard: 0 = False, 1 = True'
is_raid:
dataType: tinyint
nullable: NO
description: 'Raid: 0 = False, 1 = True'
min_level:
dataType: tinyint
nullable: NO
description: Minimum Level
max_level:
dataType: tinyint
nullable: NO
description: Maximum Level
type:
dataType: tinyint
nullable: NO
description: Type
type_data:
dataType: int
nullable: NO
description: Type Data
type_count:
dataType: smallint
nullable: NO
description: Type Count
assa_x:
dataType: float
nullable: NO
description: Assassination X Coordinate
assa_y:
dataType: float
nullable: NO
description: Assassination Y Coordinate
assa_z:
dataType: float
nullable: NO
description: Assassination Z Coordinate
assa_h:
dataType: float
nullable: NO
description: Assassination Heading Coordinate
text:
dataType: varchar
nullable: YES
description: Text
duration:
dataType: int
nullable: NO
description: Duration
zone_in_time:
dataType: int
nullable: NO
description: Zone In Duration
win_points:
dataType: smallint
nullable: NO
description: LDoN Points for Winning
lose_points:
dataType: smallint
nullable: NO
description: LDoN Points for Losing
theme:
dataType: tinyint
nullable: NO
description: '[LDoN Theme](https://eqemu.gitbook.io/server/categories/zones/ldon-themes)'
zone_in_zone_id:
dataType: smallint
nullable: NO
description: >-
[Zone In Zone
Identifier](https://eqemu.gitbook.io/server/categories/zones/zone-list)
zone_in_x:
dataType: float
nullable: NO
description: Zone In X Coordinate
zone_in_y:
dataType: float
nullable: NO
description: Zone In Y Coordinate
zone_in_object_id:
dataType: smallint
nullable: NO
description: Zone In Object Identifier
dest_x:
dataType: float
nullable: NO
description: Destination X Coordinate
dest_y:
dataType: float
nullable: NO
description: Destination Y Coordinate
dest_z:
dataType: float
nullable: NO
description: Destination Z Coordinate
dest_h:
dataType: float
nullable: NO
description: Destination Heading Coordinate
graveyard_zone_id:
dataType: int
nullable: NO
description: >-
[Zone
Identifier](https://eqemu.gitbook.io/server/categories/zones/zone-list)
graveyard_x:
dataType: float
nullable: NO
description: Graveyard X Coordinate
graveyard_y:
dataType: float
nullable: NO
description: Graveyard Y Coordinate
graveyard_z:
dataType: float
nullable: NO
description: Graveyard Z Coordinate
graveyard_radius:
dataType: float
nullable: NO
description: Graveyard Radius
adventure_template_entry:
id:
dataType: int
nullable: NO
description: '[Adventure Identifier](adventure_details.md)'
template_id:
dataType: int
nullable: NO
description: '[Template Identifier](adventure_template.md)'
adventure_template_entry_flavor:
id:
dataType: int
nullable: NO
description: '[Adventure Identifier](adventure_details.md)'
text:
dataType: varchar
nullable: NO
description: Text
altadv_vars:
skill_id:
dataType: int
nullable: NO
description: '[AA Identifier](aa_ability.md)'
name:
dataType: varchar
nullable: YES
description: Name
cost:
dataType: int
nullable: YES
description: Cost
max_level:
dataType: int
nullable: YES
description: Maximum Level
hotkey_sid:
dataType: int
nullable: NO
description: Hotkey SID
hotkey_sid2:
dataType: int
nullable: NO
description: Hotkey SID 2
title_sid:
dataType: int
nullable: NO
description: Title SID
desc_sid:
dataType: int
nullable: NO
description: Description SID
type:
dataType: tinyint
nullable: NO
description: Type
spellid:
dataType: int
nullable: NO
description: '[Spell Identifier](spells_new.md)'
prereq_skill:
dataType: int
nullable: NO
description: Prerequisite Skill Level
prereq_minpoints:
dataType: int
nullable: NO
description: Prerequisite Minimum Points
spell_type:
dataType: int
nullable: NO
description: >-
[Spell
Type](https://eqemu.gitbook.io/server/categories/spells/spell-types)
spell_refresh:
dataType: int
nullable: NO
description: Spell Refresh
classes:
dataType: int
nullable: NO
description: '[Classes](https://eqemu.gitbook.io/server/categories/player/class-list)'
berserker:
dataType: int
nullable: NO
description: 'Berseker: 0 = False, 1 = True'
class_type:
dataType: int
nullable: NO
description: Level
cost_inc:
dataType: tinyint
nullable: NO
description: Cost Increase
aa_expansion:
dataType: smallint
nullable: NO
description: >-
[AA Expansion
Identifier](https://eqemu.gitbook.io/server/categories/operation/expansion-list)
special_category:
dataType: int
nullable: NO
description: Special Category
sof_type:
dataType: tinyint
nullable: NO
description: >-
[Secrets of Faydwer
Type](https://eqemu.gitbook.io/server/categories/aas/aa-categories)
sof_cost_inc:
dataType: tinyint
nullable: NO
description: Secrets of Faydwer Cost Increase
sof_max_level:
dataType: tinyint
nullable: NO
description: Secrets of Faydwer Maximum Level
sof_next_skill:
dataType: int
nullable: NO
description: Secrets of Faydwer Next Skill
clientver:
dataType: tinyint
nullable: NO
description: >-
[Client
Version](https://eqemu.gitbook.io/server/categories/operation/expansion-list)
account_time_required:
dataType: int
nullable: NO
description: Account Time Required in Seconds
sof_current_level:
dataType: tinyint
nullable: NO
description: Secrets of Faydwer Current Level
sof_next_id:
dataType: int
nullable: NO
description: Secrets of Faydwer Next Identifier
level_inc:
dataType: tinyint
nullable: NO
description: Secrets of Faydwer Level Increase
alternate_currency:
id:
dataType: int
nullable: NO
description: >-
[Alternate Currency
Identifier](https://eqemu.gitbook.io/server/categories/items/alternate-currencies)
item_id:
dataType: int
nullable: NO
description: '[Item Identifier](items.md)'
auras:
type:
dataType: int
nullable: NO
description: Unique Aura Identifier
npc_type:
dataType: int
nullable: NO
description: '[NPC Type Identifier](npc_types.md)'
name:
dataType: varchar
nullable: NO
description: Name
spell_id:
dataType: int
nullable: NO
description: '[Spell Identifier](spells_new.md)'
distance:
dataType: int
nullable: NO
description: Distance
aura_type:
dataType: int
nullable: NO
description: '[Aura Type](https://eqemu.gitbook.io/server/categories/spells/aura-types)'
spawn_type:
dataType: int
nullable: NO
description: >-
[Aura Spawn
Type](https://eqemu.gitbook.io/server/categories/spells/aura-spawn-types)
movement:
dataType: int
nullable: NO
description: >-
[Aura Movement
Type](https://eqemu.gitbook.io/server/categories/spells/aura-movement-types)
duration:
dataType: int
nullable: NO
description: Duration
icon:
dataType: int
nullable: NO
description: Icon
cast_time:
dataType: int
nullable: NO
description: Cast Time
banned_ips:
ip_address:
dataType: varchar
nullable: NO
description: '[IP Address](account_ip.md)'
notes:
dataType: varchar
nullable: YES
description: Ban reason
base_data:
level:
dataType: int
nullable: NO
description: Level
class:
dataType: int
nullable: NO
description: >-
[Class
Identifier](https://eqemu.gitbook.io/server/categories/player/class-list)
hp:
dataType: double
nullable: NO
description: Health
mana:
dataType: double
nullable: NO
description: Mana
end:
dataType: double
nullable: NO
description: Endurance
unk1:
dataType: double
nullable: NO
description: Unknown
unk2:
dataType: double
nullable: NO
description: Unknown
hp_fac:
dataType: double
nullable: NO
description: Health Factor
mana_fac:
dataType: double
nullable: NO
description: Mana Factor
end_fac:
dataType: double
nullable: NO
description: Endurance Factor
blocked_spells:
id:
dataType: int
nullable: NO
description: Unique Blocked Spells Identifier
spellid:
dataType: mediumint
nullable: NO
description: '[Spell Identifier](spells_new.md)'
type:
dataType: tinyint
nullable: NO
description: >-
[Blocked Spell
Type](https://eqemu.gitbook.io/server/categories/spells/blocked-spell-types)
zoneid:
dataType: int
nullable: NO
description: >-
[Zone
Identifier](https://eqemu.gitbook.io/server/categories/zones/zone-list)
x:
dataType: float
nullable: NO
description: X Coordinate
y:
dataType: float
nullable: NO
description: Y Coordinate
z:
dataType: float
nullable: NO
description: Z Coordinate
x_diff:
dataType: float
nullable: NO
description: X Radius
y_diff:
dataType: float
nullable: NO
description: Y Radius
z_diff:
dataType: float
nullable: NO
description: Z Radius
message:
dataType: varchar
nullable: NO
description: Message when blocked
description:
dataType: varchar
nullable: NO
description: Blocked spells description
books:
name:
dataType: varchar
nullable: NO
description: Unique Book Identifier
txtfile:
dataType: text
nullable: NO
description: >-
The text in the book. ` Represents line spaces, `` is two line spaces, ```
is three line spaces, etc. (13 lines per book page)
language:
dataType: int
nullable: NO
description: '[Language](https://eqemu.gitbook.io/server/categories/player/languages)'
bot_buffs:
buffs_index:
dataType: int
nullable: NO
description: Unique Entry Identifier
bot_id:
dataType: int
nullable: NO
description: '[Bot Identifier](bot_data.md)'
spell_id:
dataType: int
nullable: NO
description: '[Spell Identifier](spells_new.md)'
caster_level:
dataType: tinyint
nullable: NO
description: Caster level
duration_formula:
dataType: int
nullable: NO
description: Duration Formula
tics_remaining:
dataType: int
nullable: NO
description: Tics Remaining
poison_counters:
dataType: int
nullable: NO
description: Poison Counter
disease_counters:
dataType: int
nullable: NO
description: Disease Counter
curse_counters:
dataType: int
nullable: NO
description: Curse Counter
corruption_counters:
dataType: int
nullable: NO
description: Corruption Counter
numhits:
dataType: int
nullable: NO
description: Number of Hits
melee_rune:
dataType: int
nullable: NO
description: Melee Rune
magic_rune:
dataType: int
nullable: NO
description: Magic Rune
dot_rune:
dataType: int
nullable: NO
description: Damage Over Time Rune