Tweak liking thresholds. Required interest rate is higher to discourage flirt grinding.
[rogue-pphs.git] / init.c
diff --git a/init.c b/init.c
index c75f5e7..b21fe71 100644 (file)
--- a/init.c
+++ b/init.c
@@ -3,7 +3,7 @@
  *\r
  * @(#)init.c  3.33 (Berkeley) 6/15/81\r
  *\r
- * Rogue: Exploring the Dungeons of Doom\r
+ * Rogue: Exploring the Cavern of Cuties\r
  * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman\r
  * All rights reserved.\r
  *\r
@@ -48,7 +48,7 @@ char runch;                              /* Direction player is running */
 char whoami[80];                 /* Name of player */\r
 char fruit[80];                          /* Favorite fruit */\r
 char huh[80];                            /* The last message printed */\r
-int dnum;                                /* Dungeon number */\r
+int dnum;                                /* Cavern number */\r
 char *s_names[MAXSCROLLS];               /* Names of the scrolls */\r
 char *p_colors[MAXPOTIONS];              /* Colors of the potions */\r
 char *r_stones[MAXRINGS];                /* Stone settings of the rings */\r
@@ -112,6 +112,7 @@ init_player()
 {\r
     pstats.s_lvl = 1;\r
     pstats.s_exp = 0L;\r
+    pstats.s_ont = rnd(1 << NUM_FEATURES);\r
     max_hp = pstats.s_hpt = 12;\r
     if (rnd(100) == 7)\r
     {\r
@@ -559,7 +560,6 @@ struct h_list helpstr[] = {
     'B',       "       run down & left",\r
     'N',       "       run down & right",\r
     't',       "<dir>  throw something",\r
-    'f',       "<dir>  flirt with someone",\r
     'p',       "<dir>  zap a wand in a direction",\r
     'z',       "       zap a wand or staff",\r
     '>',       "       go down a staircase",\r
@@ -577,12 +577,14 @@ struct h_list helpstr[] = {
     'R',       "       remove ring",\r
     'd',       "       drop object",\r
     'c',       "       call object",\r
+    'f',       "<dir>  flirt with someone",\r
+    'g',       "<dir>  give an item as a gift",\r
+    'E',       "       embrace",\r
     'o',       "       examine/set options",\r
     CTRL('L'), "       redraw screen",\r
     CTRL('R'), "       repeat last message",\r
     ESCAPE,    "       cancel command",\r
     'v',       "       print program version number",\r
-    '!',       "       shell escape",\r
     'S',       "       save game",\r
     'Q',       "       quit",\r
     0, 0\r