forked from macroquest/eqlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExpansions.h
49 lines (45 loc) · 2.42 KB
/
Expansions.h
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
/*
* MacroQuest: The extension platform for EverQuest
* Copyright (C) 2002-2022 MacroQuest Authors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#pragma once
namespace eqlib {
#define EXPANSION_LEVEL_CLASSIC 0 // No Expansion
#define EXPANSION_LEVEL_ROK 1 // The Ruins of Kunark
#define EXPANSION_LEVEL_SOV 2 // The Scars of Velious
#define EXPANSION_LEVEL_SOL 3 // The Shadows of Luclin
#define EXPANSION_LEVEL_POP 4 // The Planes of Power
#define EXPANSION_LEVEL_LOY 5 // The Legacy of Ykesha
#define EXPANSION_LEVEL_LDON 6 // Lost Dungeons of Norrath
#define EXPANSION_LEVEL_GOD 7 // Gates of Discord
#define EXPANSION_LEVEL_OOW 8 // Omens of War
#define EXPANSION_LEVEL_DON 9 // Dragons of Norrath
#define EXPANSION_LEVEL_DODH 10 // Depths of Darkhollow
#define EXPANSION_LEVEL_POR 11 // Prophecy of Ro
#define EXPANSION_LEVEL_TSS 12 // The Serpent's Spine
#define EXPANSION_LEVEL_TBS 13 // The Buried Sea
#define EXPANSION_LEVEL_SOF 14 // Secrets of Faydwer
#define EXPANSION_LEVEL_SOD 15 // Seeds of Destruction
#define EXPANSION_LEVEL_UF 16 // Underfoot
#define EXPANSION_LEVEL_HOT 17 // House of Thule
#define EXPANSION_LEVEL_VOA 18 // Veil of Alaris
#define EXPANSION_LEVEL_ROF 19 // Rain of Fear
#define EXPANSION_LEVEL_COTF 20 // Call of the Forsaken
#define EXPANSION_LEVEL_TDS 21 // The Darkened Sea
#define EXPANSION_LEVEL_TBM 22 // The Broken Mirror
#define EXPANSION_LEVEL_EOK 23 // Empires of Kunark
#define EXPANSION_LEVEL_ROS 24 // Ring of Scale
#define EXPANSION_LEVEL_TBL 25 // The Burning Lands
#define EXPANSION_LEVEL_TOV 26 // Torment of Velious
#define EXPANSION_LEVEL_COV 27 // Claws of Veeshan
#define EXPANSION_LEVEL_TOL 28 // Terror of Luclin
} // namespace eqlib