home · contact · privacy
Add basic food clock (but no consumables yet to re-set it).
[plomrogue] / src / server / hardcoded_strings.c
index e9578c7572549854a451bd4b3b3a1e34a33ed366..fcb201110aa3d450b4a9ad43464342c76ef60cea 100644 (file)
@@ -1,10 +1,15 @@
-/* hardcoded_strings.c */
+/* hardcoded_strings.c *
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
+ */
 
 #include "hardcoded_strings.h"
 
 
 
-char * s[38];
+char * s[45];
 
 
 
@@ -27,6 +32,8 @@ extern void init_strings()
     s[S_CMD_TT_SYMB] = "TT_SYMBOL";
     s[S_CMD_TT_NAME] = "TT_NAME";
     s[S_CMD_TT_CORPS] = "TT_CORPSE_ID";
+    s[S_CMD_TT_PROL] = "TT_PROLIFERATE";
+    s[S_CMD_TT_STOMACH] = "TT_STOMACH";
     s[S_CMD_T_ID] = "T_ID";
     s[S_CMD_T_TYPE] = "T_TYPE";
     s[S_CMD_T_POSY] = "T_POSY";
@@ -35,7 +42,12 @@ extern void init_strings()
     s[S_CMD_T_ARGUMENT] = "T_ARGUMENT";
     s[S_CMD_T_PROGRESS] = "T_PROGRESS";
     s[S_CMD_T_HP] = "T_LIFEPOINTS";
+    s[S_CMD_T_SATIATION] = "T_SATIATION";
     s[S_CMD_T_CARRIES] = "T_CARRIES";
+    s[S_CMD_T_MEMMAP] = "T_MEMMAP";
+    s[S_CMD_T_MEMDEPTHMAP] = "T_MEMDEPTHMAP";
+    s[S_CMD_T_MEMTHING] = "T_MEMTHING";
+    s[S_CMD_AI] = "ai";
     s[S_CMD_WAIT] = "wait";
     s[S_CMD_MOVE] = "move";
     s[S_CMD_PICKUP] = "pick_up";