EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
EVE_Character.h
Go to the documentation of this file.
1 
2 /*
3  * EVE_Character.h
4  * Misc Character data
5  *
6  */
7 
8 #ifndef EVE_CHARACTER_H
9 #define EVE_CHARACTER_H
10 
11 namespace Char {
12 
13  namespace Race {
14  enum {
15  Caldari = 1,
16  Minmatar = 2,
17  Amarr = 4,
18  Ammatar = 6, // not an actual race, but combo of Minmatar and Amarr
19  Gallente = 8,
20  Jove = 16,
21  Pirate = 32,
22  Sleepers = 64,
23  ORE = 128
24  };
25  }
26 
27  namespace Type {
28  enum {
29  Amarr = 1373,
30  NiKunni = 1374,
31  Civire = 1375,
32  Deteis = 1376,
33  Gallente = 1377,
34  Intaki = 1378,
35  Sebiestor = 1379,
36  Brutor = 1380,
37  Static = 1381,
38  Modifier = 1382,
39  Achura = 1383,
40  JinMei = 1384,
41  Khanid = 1385,
42  Vherokior = 1386
43 
44  };
45  }
46 
47  namespace PDState {
48  enum {
49  //paperdoll state. unused, but may be used later
55  };
56  }
57 
58  namespace Rookie {
59  namespace Ship {
60  enum {
61  Amarr = 596,
62  Caldari = 601,
63  Gallente = 606,
64  Minmatar = 588
65  };
66  }
67 
68  namespace Weapon {
69  enum {
70  Amarr = 3634,
71  Caldari = 3638,
72  Gallente = 3640,
73  Minmatar = 3636
74  };
75  }
76  }
77 }
78 
79 
80 #endif // EVE_CHARACTER_H
Type
Definition: EVE_LSC.h:71