Difference for common/living.c from version 1.71 to 1.72


version 1.71 version 1.72
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_living_c =   * static char *rcsid_living_c =
  *   "$Id: living.c,v 1.71 2005/08/10 13:38:31 ryo_saeba Exp $";   *   "$Id: living.c,v 1.72 2005/08/12 13:46:34 ryo_saeba Exp $";
  */   */
   
 /*  /*
Line 181
 
Line 181
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1     1, 1, 1, 1, 1, 1, 1, 1, 1, 1
 };  };
   
 char *attacks[NROFATTACKS] = {  const char *attacks[NROFATTACKS] = {
   "physical", "magical", "fire", "electricity", "cold", "confusion",    "physical", "magical", "fire", "electricity", "cold", "confusion",
   "acid", "drain", "weaponmagic", "ghosthit", "poison", "slow",    "acid", "drain", "weaponmagic", "ghosthit", "poison", "slow",
   "paralyze", "turn undead", "fear", "cancellation", "depletion", "death",    "paralyze", "turn undead", "fear", "cancellation", "depletion", "death",
Line 189
 
Line 189
   "life stealing"    "life stealing"
 };  };
   
 static char *drain_msg[NUM_STATS] = {  static const char *drain_msg[NUM_STATS] = {
   "Oh no! You are weakened!",    "Oh no! You are weakened!",
   "You're feeling clumsy!",    "You're feeling clumsy!",
   "You feel less healthy",    "You feel less healthy",
Line 198
 
Line 198
   "Watch out, your mind is going!",     "Watch out, your mind is going!",
   "Your spirit feels drained!"    "Your spirit feels drained!"
 };  };
 char *restore_msg[NUM_STATS] = {  const char *restore_msg[NUM_STATS] = {
   "You feel your strength return.",    "You feel your strength return.",
   "You feel your agility return.",    "You feel your agility return.",
   "You feel your health return.",    "You feel your health return.",
Line 207
 
Line 207
   "You feel your memory return.",     "You feel your memory return.",
   "You feel your spirits return."    "You feel your spirits return."
 };  };
 char *gain_msg[NUM_STATS] = {  const char *gain_msg[NUM_STATS] = {
  "You feel stronger.",   "You feel stronger.",
  "You feel more agile.",   "You feel more agile.",
  "You feel healthy.",   "You feel healthy.",
Line 216
 
Line 216
  "You feel smarter.",    "You feel smarter.",
  "You feel more potent."   "You feel more potent."
 };  };
 char *lose_msg[NUM_STATS] = {  const char *lose_msg[NUM_STATS] = {
  "You feel weaker!",   "You feel weaker!",
  "You feel clumsy!",   "You feel clumsy!",
  "You feel less healthy!",   "You feel less healthy!",
Line 226
 
Line 226
  "You feel less potent!"   "You feel less potent!"
 };  };
   
 char *statname[NUM_STATS] = {  const char *statname[NUM_STATS] = {
   "strength", "dexterity", "constitution", "wisdom", "charisma", "intelligence","power"     "strength", "dexterity", "constitution", "wisdom", "charisma", "intelligence","power"
 };  };
   
 char *short_stat_name[NUM_STATS] = {  const char *short_stat_name[NUM_STATS] = {
   "Str", "Dex", "Con", "Wis", "Cha", "Int","Pow"     "Str", "Dex", "Con", "Wis", "Cha", "Int","Pow"
 };  };
   


Legend:
line(s) removed in v.1.71 
line(s) changed
 line(s) added in v.1.72

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:08