home · contact · privacy
Add basic food clock (but no consumables yet to re-set it).
[plomrogue] / src / server / hardcoded_strings.h
1 /* hardcoded_strings.h
2  *
3  * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4  * or any later version. For details on its copyright, license, and warranties,
5  * see the file NOTICE in the root directory of the PlomRogue source package.
6  *
7  * For re-used hardcoded strings.
8  */
9
10 #ifndef STRINGS_H
11 #define STRINGS_H
12
13
14
15 enum string_num
16 {
17     S_PATH_CONFIG,
18     S_PATH_WORLDSTATE,
19     S_PATH_OUT,
20     S_PATH_IN,
21     S_PATH_RECORD,
22     S_PATH_SAVE,
23     S_FCN_SPRINTF,
24     S_CMD_TA_ID,
25     S_CMD_TA_EFFORT,
26     S_CMD_TA_NAME,
27     S_CMD_TT_ID,
28     S_CMD_TT_CONSUM,
29     S_CMD_TT_STARTN,
30     S_CMD_TT_HP,
31     S_CMD_TT_SYMB,
32     S_CMD_TT_NAME,
33     S_CMD_TT_CORPS,
34     S_CMD_TT_PROL,
35     S_CMD_TT_STOMACH,
36     S_CMD_T_ID,
37     S_CMD_T_TYPE,
38     S_CMD_T_POSY,
39     S_CMD_T_POSX,
40     S_CMD_T_COMMAND,
41     S_CMD_T_ARGUMENT,
42     S_CMD_T_PROGRESS,
43     S_CMD_T_HP,
44     S_CMD_T_SATIATION,
45     S_CMD_T_CARRIES,
46     S_CMD_T_MEMMAP,
47     S_CMD_T_MEMDEPTHMAP,
48     S_CMD_T_MEMTHING,
49     S_CMD_AI,
50     S_CMD_WAIT,
51     S_CMD_MOVE,
52     S_CMD_PICKUP,
53     S_CMD_DROP,
54     S_CMD_USE,
55     S_CMD_MAKE_WORLD,
56     S_CMD_WORLD_ACTIVE,
57     S_CMD_SEED_MAP,
58     S_CMD_SEED_RAND,
59     S_CMD_TURN,
60     S_CMD_MAPLENGTH,
61     S_CMD_PLAYTYPE
62 };
63
64 extern void init_strings();
65
66 extern char * s[45];
67
68
69
70 #endif